mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 20:22:03 +02:00
10 lines
253 B
Python
10 lines
253 B
Python
from odoo import _, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
def _get_company_registry_labels(self):
|
|
labels = super()._get_company_registry_labels()
|
|
labels['FI'] = _('Business ID')
|
|
return labels
|