mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-14 10:12:05 +00:00
28 lines
1017 B
Python
28 lines
1017 B
Python
# Copyright 2015 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
|
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class ResPartnerNuts(models.Model):
|
|
_name = "res.partner.nuts"
|
|
_order = "parent_path"
|
|
_parent_order = "name"
|
|
_parent_store = True
|
|
_description = "NUTS Item"
|
|
|
|
# NUTS fields
|
|
level = fields.Integer(required=True)
|
|
code = fields.Char(required=True)
|
|
name = fields.Char(required=True, translate=True)
|
|
country_id = fields.Many2one(comodel_name="res.country", required=True)
|
|
state_id = fields.Many2one(comodel_name="res.country.state")
|
|
not_updatable = fields.Boolean()
|
|
# Parent hierarchy
|
|
parent_id = fields.Many2one(comodel_name="res.partner.nuts", ondelete="restrict")
|
|
parent_path = fields.Char(index=True)
|
|
child_ids = fields.One2many(
|
|
comodel_name="res.partner.nuts", inverse_name="parent_id", string="Children"
|
|
)
|