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.
19 lines
694 B
19 lines
694 B
# -*- coding: utf-8 -*-
|
|
# © 2016 Opener B.V. (<https://opener.am>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from openerp 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)
|