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