forked from Mapan/odoo17e
9 lines
199 B
Python
9 lines
199 B
Python
# coding: utf-8
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountTax(models.Model):
|
|
_inherit = 'account.tax'
|
|
|
|
l10n_co_edi_type = fields.Many2one('l10n_co_edi.tax.type', string='Tipo de Valor')
|