[FIX] rename ir.actions.url to match action's type

bzr revid: xmo@openerp.com-20120608101714-lf3o4mmvllmi4ge0
This commit is contained in:
Xavier Morel 2012-06-08 12:17:14 +02:00
parent 84806f8929
commit 4ed79f3457
1 changed files with 1 additions and 7 deletions

View File

@ -1467,10 +1467,6 @@ class Binary(openerpweb.Controller):
class Action(openerpweb.Controller):
_cp_path = "/web/action"
action_mapping = {
"ir.actions.act_url": "ir.actions.url",
}
@openerpweb.jsonrequest
def load(self, req, action_id, do_not_eval=False):
@ -1483,9 +1479,7 @@ class Action(openerpweb.Controller):
if action_type[0]['type'] == 'ir.actions.report.xml':
ctx.update({'bin_size': True})
ctx.update(context)
action_model = action_type[0]['type']
action_model = Action.action_mapping.get(action_model, action_model)
action = req.session.model(action_model).read([action_id], False, ctx)
action = req.session.model(action_type[0]['type']).read([action_id], False, ctx)
if action:
value = clean_action(req, action[0], do_not_eval)
return {'result': value}