Files
contract/agreement_serviceprofile/models/agreement_serviceprofile.py
Murtuza Saleh 71556449a0 [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/
2021-05-04 14:06:30 -06:00

20 lines
642 B
Python

# 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.")