mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-14 10:12:05 +00:00
13 lines
394 B
Python
13 lines
394 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 ResCountry(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")
|