From: Jeremy Kersten Date: Wed, 22 Oct 2014 14:20:05 +0000 (+0200) Subject: [FIX] ir_action: update context to get the real binary, else we have a traceback... X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=add28795fb7c02815212b605216d0932075fa6d4;p=odoo%2Fodoo.git [FIX] ir_action: update context to get the real binary, else we have a traceback when we edit/view an ir_action_client where param is a binary field. Because we do safe_eval from the length and not from the binary --- diff --git a/openerp/addons/base/ir/ir_actions.py b/openerp/addons/base/ir/ir_actions.py index 21ad57f..623fb54 100644 --- a/openerp/addons/base/ir/ir_actions.py +++ b/openerp/addons/base/ir/ir_actions.py @@ -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