mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
16 lines
444 B
Python
16 lines
444 B
Python
|
# Copyright 2016 Antonio Espinosa
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class ResCompany(models.Model):
|
||
|
_inherit = "res.company"
|
||
|
|
||
|
partner_ref_unique = fields.Selection(
|
||
|
selection=[
|
||
|
('none', 'None'),
|
||
|
('companies', 'Only companies'),
|
||
|
('all', 'All partners'),
|
||
|
], string="Unique partner reference for", default="none")
|