[FIX] account: bank statement reconciliation come back

Once the bank statement reconcilation done, the back button should not come back to Home when it does not found the bank statement list in the breadcrumb history, but simply perform a history_back action, which will come back to the previous action, the statement form for instance.

opw-625397
This commit is contained in:
Denis Ledoux 2015-01-13 15:10:35 +01:00
parent 2d215db686
commit b4094d0998
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ openerp.account = function (instance) {
}
}
if (!found)
instance.web.Home(self);
self.do_action('history_back');
});
},