mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-14 18:22:04 +00:00
12 lines
299 B
Python
12 lines
299 B
Python
# Copyright 2016 Nicolas Bessi, Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import models, fields
|
|
|
|
|
|
class ResCountryState(models.Model):
|
|
|
|
_inherit = 'res.country.state'
|
|
|
|
better_zip_ids = fields.One2many('res.better.zip', 'state_id', 'Cities')
|