[IMP]:add condition for context in report_webkit for fields view get

bzr revid: sgo@tinyerp.com-20120605113839-cum83coqtg6ji8jh
This commit is contained in:
Sanjay Gohel (Open ERP) 2012-06-05 17:08:39 +05:30
parent ca8767762d
commit e07d4252eb
1 changed files with 1 additions and 0 deletions

View File

@ -53,6 +53,7 @@ class report_webkit_actions(osv.osv_memory):
@param context: A standard dictionary
@return: New arch of view.
"""
if not context: context = {}
res = super(report_webkit_actions, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar,submenu=False)
record_id = context and context.get('active_id', False) or False
active_model = context.get('active_model')