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.
29 lines
1.0 KiB
29 lines
1.0 KiB
# Copyright 2015 Antiun Ingenieria S.L. - Javier Iniesta
|
|
# Copyright 2016 Tecnativa S.L. - Vicent Cubells
|
|
# Copyright 2018 Eficent Business and IT Consulting Services, S.L.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, api, exceptions, fields, models
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = "res.partner"
|
|
|
|
industry_id = fields.Many2one(string="Main Industry")
|
|
|
|
secondary_industry_ids = fields.Many2many(
|
|
comodel_name="res.partner.industry",
|
|
string="Secondary Industries",
|
|
domain="[('id', '!=', industry_id)]",
|
|
)
|
|
|
|
@api.constrains("industry_id", "secondary_industry_ids")
|
|
def _check_industries(self):
|
|
for partner in self:
|
|
if partner.industry_id in partner.secondary_industry_ids:
|
|
raise exceptions.ValidationError(
|
|
_(
|
|
"The main industry must be different "
|
|
"from the secondary industries."
|
|
)
|
|
)
|