[ADD][12.0] agreement_serviceprofile

[UPD] README.rst

[UPD] Update agreement_serviceprofile.pot

Added translation using Weblate (French)

Translated using Weblate (French)

Currently translated at 100.0% (14 of 14 strings)

Translation: contract-12.0/contract-12.0-agreement_serviceprofile
Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/fr/
This commit is contained in:
Murtuza Saleh
2019-04-02 16:03:53 +05:30
committed by Patrick Wilson
parent 375ada1f46
commit 71556449a0
14 changed files with 929 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# Copyright (C) 2018 - TODAY, Pavlov Media
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AgreementServiceProfile(models.Model):
_name = 'agreement.serviceprofile'
_description = 'Agreement Service Profiles'
name = fields.Char(string="Name", required=True)
agreement_id = fields.Many2one('agreement', string="Agreement",
ondelete="cascade")
active = fields.Boolean(
string="Active",
default=True,
help="If unchecked, it will allow you to hide this service profile"
" without removing it.")