[FIX]:Uncaught TypeError: Cannot read property 'context' of undefined

bzr revid: apa@tinyerp.com-20121010113556-p79hzujiunibwsix
This commit is contained in:
Amit Patel 2012-10-10 17:05:56 +05:30
parent 57011e3ef5
commit 7b585d3e1f
1 changed files with 1 additions and 1 deletions

View File

@ -1056,7 +1056,7 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa
return new instance.web.Model("ir.model.data").get_func("search_read")([['name', '=', 'action_client_pos_menu']], ['res_id']).pipe(
_.bind(function(res) {
return this.rpc('/web/action/load', {'action_id': res[0]['res_id']}).pipe(_.bind(function(result) {
var action = result.result;
var action = result;
action.context = _.extend(action.context || {}, {'cancel_action': {type: 'ir.actions.client', tag: 'reload'}});
//self.destroy();
this.do_action(action);