mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
22 lines
426 B
Python
22 lines
426 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()
|