oca-technical/odoo-bringout-oca-server-ux-base_technical_features/base_technical_features/models/base.py
2025-08-29 15:43:03 +02:00

18 lines
639 B
Python

# © 2016 Opener B.V. (<https://opener.am>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models
class Base(models.AbstractModel):
_inherit = "base"
def user_has_groups(self, groups):
"""Return True for users in the technical features group when
membership of the original group is checked, even if debug mode
is not enabled.
"""
if "base.group_no_one" in groups.split(",") and self.env.user.has_group(
"base_technical_features.group_technical_features"
):
return True
return super().user_has_groups(groups)