Odoo18-Base/addons/l10n_be/models/account_tax.py
2025-01-06 10:57:38 +07:00

10 lines
212 B
Python

from odoo import fields, models
class AccountTax(models.Model):
_inherit = 'account.tax'
tax_scope = fields.Selection(
selection_add=[('merch', 'Merchandise'), ('invest', 'Investment')],
)