mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
17 lines
429 B
Python
17 lines
429 B
Python
# Copyright 2017 Franco Tampieri, Freelancer http://franco.tampieri.info
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResCountryState(models.Model):
|
|
|
|
_inherit = 'res.country'
|
|
|
|
geonames_state_name_column = fields.Integer(
|
|
'Geonames State Name Column',
|
|
)
|
|
geonames_state_code_column = fields.Integer(
|
|
'Geonames State Code Column',
|
|
)
|