[MIG] web_disable_group_export: Migration to 11.0

This commit is contained in:
David
2018-07-16 12:07:52 +02:00
parent 9023bca634
commit e248584d34
14 changed files with 610 additions and 51 deletions

View File

@@ -0,0 +1,18 @@
# Copyright 2018 Tecnativa - David Vidal
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models
from odoo.http import request
class Http(models.AbstractModel):
_inherit = 'ir.http'
def session_info(self):
res = super(Http, self).session_info()
user = request.env.user
res.update({
'group_export_data': user and user.has_group(
'web_disable_export_group.group_export_data'),
})
return res