forked from Mapan/odoo17e
13 lines
312 B
Python
13 lines
312 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResBank(models.Model):
|
|
_inherit = "res.bank"
|
|
|
|
l10n_mx_edi_vat = fields.Char(
|
|
string="VAT",
|
|
help="Indicate the VAT of this institution, the value could be used in the payment complement in Mexico "
|
|
"documents")
|