mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-27 12:42:08 +02:00
9 lines
212 B
Python
9 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')],
|
|
)
|