19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:21 +01:00
parent 7dc55599c6
commit 7f43bbbfcc
650 changed files with 45260 additions and 33436 deletions

View file

@ -0,0 +1,10 @@
from odoo import models, _
class ResPartner(models.Model):
_inherit = 'res.partner'
def _get_company_registry_labels(self):
labels = super()._get_company_registry_labels()
labels['NZ'] = _("NZBN")
return labels