mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
7 lines
158 B
Python
7 lines
158 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResCountryState(models.Model):
|
|
_inherit = "res.country.state"
|
|
ine_code = fields.Char(string="INE State Code")
|