mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
22 lines
622 B
Python
22 lines
622 B
Python
|
# Copyright 2017-2018 Onestein (<http://www.onestein.eu>)
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
coc_registration_number = fields.Char(
|
||
|
string='CoC Registration Number',
|
||
|
compute=lambda s: s._compute_identification(
|
||
|
'coc_registration_number', 'coc',
|
||
|
),
|
||
|
inverse=lambda s: s._inverse_identification(
|
||
|
'coc_registration_number', 'coc',
|
||
|
),
|
||
|
search=lambda s, *a: s._search_identification(
|
||
|
'coc', *a
|
||
|
),
|
||
|
)
|