12 lines
275 B
Python
12 lines
275 B
Python
|
from odoo import api, models
|
||
|
|
||
|
|
||
|
class AccountTax(models.Model):
|
||
|
_inherit = 'account.tax'
|
||
|
|
||
|
@api.model
|
||
|
def _load_pos_data_fields(self, config_id):
|
||
|
fields = super()._load_pos_data_fields(config_id)
|
||
|
fields += ['l10n_in_tax_type']
|
||
|
return fields
|