mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 20:42:06 +02:00
7 lines
259 B
Python
7 lines
259 B
Python
from odoo import models, fields
|
|
|
|
|
|
class AccountTax(models.Model):
|
|
_inherit = 'account.tax'
|
|
|
|
l10n_no_standard_code = fields.Char(string='Standard Tax Code', help='The Norwegian tax system has a code for standard taxes, to use when reporting to them.')
|