[FIX] reinstate bail out in clean_action in case the action is not an act_window

bzr revid: xmo@openerp.com-20110829082929-c6uhkcq0wmiis2wp
This commit is contained in:
Xavier Morel 2011-08-29 10:29:29 +02:00
parent 0712964066
commit 863fdc0808
1 changed files with 5 additions and 2 deletions

View File

@ -432,10 +432,13 @@ def load_actions_from_ir_values(req, key, key2, models, meta):
for id, name, action in actions]
def clean_action(req, action):
action.setdefault('flags', {})
if action['type'] != 'ir.actions.act_window':
return action
context = req.session.eval_context(req.context)
eval_ctx = req.session.evaluation_context(context)
action.setdefault('flags', {})
# values come from the server, we can just eval them
if isinstance(action.get('context'), basestring):
action['context'] = eval( action['context'], eval_ctx ) or {}