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.
47 lines
1.9 KiB
47 lines
1.9 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import models
|
|
from odoo.osv import expression
|
|
from odoo.tools.safe_eval import safe_eval
|
|
|
|
|
|
class IrRule(models.Model):
|
|
"""Extend ir.rule to apply role-based UI restrictions."""
|
|
_inherit = "ir.rule"
|
|
|
|
def _compute_domain(self, model_name, mode="read"):
|
|
"""
|
|
Override _compute_domain to include role-based domain restrictions.
|
|
"""
|
|
user = self.env.user
|
|
user_roles = user.access_role_id.role_management_id
|
|
role_domains = []
|
|
for role in user_roles:
|
|
for access in role.domain_ids:
|
|
if access.domain_model_name == model_name and access.name:
|
|
role_domains.append(safe_eval(access.name))
|
|
base_domain = super()._compute_domain(model_name, mode=mode)
|
|
if role_domains:
|
|
role_domain_combined = expression.OR(role_domains)
|
|
return expression.AND([base_domain,
|
|
role_domain_combined]) if base_domain else role_domain_combined
|
|
return base_domain
|
|
|