[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

This commit is contained in:
Jeremy Kersten 2014-10-22 16:20:05 +02:00
parent 118b5073e0
commit add28795fb
1 changed files with 2 additions and 0 deletions

View 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