mirror of
https://gitlab.com/flectra-community/server-ux.git
synced 2024-11-15 10:42:08 +00:00
19 lines
670 B
Python
19 lines
670 B
Python
|
# © 2016 Opener B.V. (<https://opener.am>)
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
from flectra 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(Base, self).user_has_groups(groups)
|