Merge lp:~openerp-dev/openobject-addons/trunk-bug-1062906-psa into lp:openobject-addons

Proposed by Paramjit Singh Sahota(OpenERP)
Status: Rejected
Rejected by: Fabien (Open ERP)
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-1062906-psa
Merge into: lp:openobject-addons
Diff against target: 21 lines (+2/-3)
1 file modified
process/static/src/js/process.js (+2/-3)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-1062906-psa
Reviewer Review Type Date Requested Status
Jiten (OpenERP) (community) Approve
OpenERP Core Team Pending
Review via email: mp+129634@code.launchpad.net

Description of the change

Hello,

I had fixed the issue of process view where the GREEN button of process view is not working, due to which all the linkz to records on process view are broken.

Thankz & Regardz,
  -PSA.

To post a comment you must log in.
Revision history for this message
Jiten (OpenERP) (jiten-openerp) :
review: Approve
Revision history for this message
Fabien (Open ERP) (fp-tinyerp) wrote :

was alreaddy fixed

Unmerged revisions

7780. By Paramjit Singh Sahota(OpenERP)

[FIX][TRUNK] All links to records on proccess view are broken.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'process/static/src/js/process.js'
2--- process/static/src/js/process.js 2012-10-10 10:12:00 +0000
3+++ process/static/src/js/process.js 2012-10-15 09:45:25 +0000
4@@ -216,15 +216,14 @@
5 var dataset = new instance.web.DataSet(this, 'ir.values', this.session.user_context);
6 var action_manager = new instance.web.ActionManager(self);
7 dataset.call('get',
8- ['action', 'tree_but_open',[['ir.ui.menu', id]], dataset.context],
9- function(res) {
10+ ['action', 'tree_but_open',[['ir.ui.menu', id]], dataset.context]).then(function(res) {
11 var action = res[0][res[0].length - 1];
12 self.rpc("/web/action/load", {
13 action_id: action.id,
14 context: dataset.context
15 }, function(result) {
16 action_manager.replace(self.$el);
17- action_manager.do_action(result.result);
18+ action_manager.do_action(result);
19 })
20 });
21 },

Subscribers

People subscribed via source and target branches

to all changes: