forked from Mapan/odoo17e
9 lines
258 B
Python
9 lines
258 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, fields
|
|
|
|
|
|
class AccountFiscalPosition(models.Model):
|
|
_inherit = 'account.fiscal.position'
|
|
|
|
l10n_br_is_avatax = fields.Boolean('Use Avatax Brazil API')
|