forked from Mapan/odoo17e
10 lines
159 B
Python
10 lines
159 B
Python
# coding: utf-8
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class City(models.Model):
|
|
_inherit = 'res.city'
|
|
|
|
l10n_co_edi_code = fields.Integer("EDI City Code")
|