You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.0 KiB
60 lines
2.0 KiB
# Copyright 2015 Antiun Ingenieria S.L. - Javier Iniesta
|
|
# Copyright 2016 Tecnativa S.L. - Vicent Cubells
|
|
# Copyright 2016 Tecnativa S.L. - Pedro M. Baeza
|
|
# Copyright 2018 Eficent Business and IT Consulting Services, S.L.
|
|
# Copyright 2019 Tecnativa - Cristina Martin R.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, api, exceptions, fields, models
|
|
|
|
|
|
class ResPartnerIndustry(models.Model):
|
|
_inherit = "res.partner.industry"
|
|
_order = "parent_path"
|
|
_parent_order = "name"
|
|
_parent_store = True
|
|
|
|
name = fields.Char(required=True)
|
|
parent_id = fields.Many2one(
|
|
comodel_name="res.partner.industry", ondelete="restrict"
|
|
)
|
|
child_ids = fields.One2many(
|
|
comodel_name="res.partner.industry", inverse_name="parent_id", string="Children"
|
|
)
|
|
parent_path = fields.Char(index=True)
|
|
|
|
def name_get(self):
|
|
def get_names(cat):
|
|
""" Return the list [cat.name, cat.parent_id.name, ...] """
|
|
res = []
|
|
while cat:
|
|
res.insert(0, cat.name)
|
|
cat = cat.parent_id
|
|
return res
|
|
|
|
return [(cat.id, " / ".join(get_names(cat))) for cat in self]
|
|
|
|
@api.constrains("parent_id")
|
|
def _check_parent_id(self):
|
|
if not self._check_recursion():
|
|
raise exceptions.ValidationError(
|
|
_("Error! You cannot create recursive industries.")
|
|
)
|
|
|
|
@api.constrains("name", "parent_id")
|
|
def _check_uniq_name(self):
|
|
if (
|
|
self.search_count(
|
|
[("name", "=", self.name), ("parent_id", "=", self.parent_id.id)]
|
|
)
|
|
> 1
|
|
):
|
|
raise exceptions.ValidationError(
|
|
_("Error! Industry with same name and parent already exists.")
|
|
)
|
|
|
|
def copy(self, default=None):
|
|
default = default or {}
|
|
if "name" not in default or default["name"] == self.name:
|
|
default["name"] = self.name + " 2"
|
|
return super(ResPartnerIndustry, self).copy(default=default)
|