diff --git a/base_technical_features/__manifest__.py b/base_technical_features/__manifest__.py index a8c37276c..ba33e257d 100644 --- a/base_technical_features/__manifest__.py +++ b/base_technical_features/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Technical features group", "summary": "Access to technical features without activating debug mode", - "version": "10.0.1.0.0", + "version": "10.0.1.0.1", "category": "Usability", "website": "https://github.com/oca/server-tools", "author": "Opener B.V., Odoo Community Association (OCA)", diff --git a/base_technical_features/models/res_users.py b/base_technical_features/models/res_users.py index 824caefac..78a455806 100644 --- a/base_technical_features/models/res_users.py +++ b/base_technical_features/models/res_users.py @@ -23,18 +23,16 @@ class ResUsers(models.Model): def get_show_technical_features(self): """ Only display the technical features checkbox in the user preferences if the user has access to them """ - users = self.env.ref('base.group_no_one').users for user in self: - user.show_technical_features = user in users + user.show_technical_features = user.has_group('base.group_no_one') @api.multi @api.depends('groups_id') def get_technical_features(self): """ Map user membership to boolean field value """ - users = self.env.ref( - 'base_technical_features.group_technical_features').users for user in self: - user.technical_features = user in users + user.technical_features = user.has_group( + 'base_technical_features.group_technical_features') @api.multi def set_technical_features(self):