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