10 lines
212 B
Python
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')],
|
||
|
)
|