partner-contact/partner_contact_role/models/res_partner.py
2024-10-01 07:51:46 +02:00

25 lines
568 B
Python

# Copyright 2017 Camptocamp
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from flectra import fields, models
class ResPartner(models.Model):
_inherit = "res.partner"
role_ids = fields.Many2many(
string="Roles",
comodel_name="res.partner.role",
)
class ResPartnerRole(models.Model):
_name = "res.partner.role"
_description = "Partner Role"
name = fields.Char()
active = fields.Boolean(
default=True,
help="By unchecking the active field, you may hide a role you will not use.",
)