mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-19 09:52:04 +02:00
57 lines
2.2 KiB
Python
57 lines
2.2 KiB
Python
# Copyright 2024 Tecnativa - Víctor Martínez
|
|
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
from odoo import api, models, tools
|
|
from odoo.osv import expression
|
|
from odoo.tools import config
|
|
|
|
|
|
class IrRule(models.Model):
|
|
_inherit = "ir.rule"
|
|
|
|
@api.model
|
|
@tools.conditional(
|
|
"xml" not in config["dev_mode"],
|
|
tools.ormcache(
|
|
"self.env.uid",
|
|
"self.env.su",
|
|
"model_name",
|
|
"mode",
|
|
"tuple(self._compute_domain_context_values())",
|
|
),
|
|
)
|
|
def _compute_domain(self, model_name, mode="read"):
|
|
"""Inject extra domain for restricting partners when the user
|
|
has the group 'Purchase / User (own orders)."""
|
|
res = super()._compute_domain(model_name, mode=mode)
|
|
user = self.env.user
|
|
group1 = "purchase_security.group_purchase_own_orders"
|
|
group2 = "purchase_security.group_purchase_group_orders"
|
|
group3 = "purchase.group_purchase_manager"
|
|
if model_name == "res.partner" and not self.env.su:
|
|
if user.has_group(group1) and not user.has_group(group3):
|
|
extra_domain = [
|
|
"|",
|
|
("message_partner_ids", "in", user.partner_id.ids),
|
|
"|",
|
|
("id", "=", user.partner_id.id),
|
|
]
|
|
if user.has_group(group2):
|
|
extra_domain += [
|
|
"|",
|
|
("purchase_team_id", "=", user.purchase_team_ids[:1].id),
|
|
("purchase_team_id", "=", False),
|
|
]
|
|
else:
|
|
extra_domain += [
|
|
"|",
|
|
("purchase_user_id", "=", user.id),
|
|
"&",
|
|
("purchase_user_id", "=", False),
|
|
"|",
|
|
("purchase_team_id", "=", False),
|
|
("purchase_team_id", "=", user.purchase_team_ids[:1].id),
|
|
]
|
|
extra_domain = expression.normalize_domain(extra_domain)
|
|
res = expression.AND([extra_domain] + [res])
|
|
return res
|