mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-26 15:02:03 +02:00
10 lines
245 B
Python
10 lines
245 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['AU'] = _("ACN")
|
|
return labels
|