[FIX] ir_action: update context to get the real binary, else we have a traceback...
authorJeremy Kersten <jke@odoo.com>
Wed, 22 Oct 2014 14:20:05 +0000 (16:20 +0200)
committerJeremy Kersten <jke@odoo.com>
Wed, 22 Oct 2014 14:20:05 +0000 (16:20 +0200)
openerp/addons/base/ir/ir_actions.py

index 21ad57f..623fb54 100644 (file)
@@ -1130,6 +1130,8 @@ class ir_actions_act_client(osv.osv):
 
     def _get_params(self, cr, uid, ids, field_name, arg, context):
         result = {}
+        # Need to remove bin_size from context, to obtains the binary and not the length.
+        context = dict(context, bin_size_params_store=False)
         for record in self.browse(cr, uid, ids, context=context):
             result[record.id] = record.params_store and eval(record.params_store, {'uid': uid}) or False
         return result