[IMP]:add condition for context in report_webkit for fields view get
authorSanjay Gohel (Open ERP) <sgo@tinyerp.com>
Tue, 5 Jun 2012 11:38:39 +0000 (17:08 +0530)
committerSanjay Gohel (Open ERP) <sgo@tinyerp.com>
Tue, 5 Jun 2012 11:38:39 +0000 (17:08 +0530)
bzr revid: sgo@tinyerp.com-20120605113839-cum83coqtg6ji8jh

addons/report_webkit/wizard/report_webkit_actions.py

index bb2c531..f6b9209 100644 (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')