Odoo18-Base/addons/l10n_be/models/account_tax.py

10 lines
212 B
Python
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
from odoo import fields, models
class AccountTax(models.Model):
_inherit = 'account.tax'
tax_scope = fields.Selection(
selection_add=[('merch', 'Merchandise'), ('invest', 'Investment')],
)