forked from Mapan/odoo17e
12 lines
270 B
Python
12 lines
270 B
Python
# coding: utf-8
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class City(models.Model):
|
|
_inherit = 'res.city'
|
|
|
|
l10n_mx_edi_code = fields.Char(
|
|
string="Code MX",
|
|
help="Code to use in the CFDI with external trade complement. It is based on the SAT catalog.")
|