3
0
Fork 0

[FIX] web_dashboard_tile clean group_by from tile view

Be able to open a title without getting context group_by garbage from the
title view.
9.0
Katherine Zaoral 2018-03-26 09:19:10 -03:00
parent cab85a70ed
commit f676c83190
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class TileTile(models.Model):
'view_id': [False], 'view_id': [False],
'res_model': self.model_id.model, 'res_model': self.model_id.model,
'type': 'ir.actions.act_window', 'type': 'ir.actions.act_window',
'context': self.env.context, 'context': dict(self.env.context, group_by=False),
'nodestroy': True, 'nodestroy': True,
'target': 'current', 'target': 'current',
'domain': self.domain, 'domain': self.domain,