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