3
0
Fork 0

Merge pull request #846 from Maartincm/8.0-act_window_message-python_act

[8.0][FIX] ActWindow from Python Method after Popup
8.0
Moises Lopez - https://www.vauxoo.com/ 2018-02-06 13:20:33 -07:00 committed by GitHub
commit 2c90abafe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 51 additions and 1 deletions

View File

@ -78,7 +78,57 @@ openerp.web_ir_actions_act_window_message = function(instance)
{
if(_.isObject(result))
{
self.do_action(result);
// clean the action as it is done in the method ``fix_view_modes``
// in the main controller of the web module
action = result;
if ( ! ('views' in action) ){
view_id = action.view_id || false;
if ( view_id instanceof Array ){
view_id = view_id[0];
}
view_modes = action.view_mode.split(",");
if ( view_modes.length > 1 ){
if (view_id){
throw new Error(
_.str.sprintf(_t("Non-db action dictionaries should provide " +
"either multiple view modes or a single view " +
"mode and an optional view id.")));
}
action.views = [];
for ( i=0; i<view_modes.length; i++ )
action.views.push([false, view_modes[i]]);
}
else
action.views = [[view_id, view_modes[0]]];
}
view_type = action.view_type || 'form';
if ( view_type != 'form' ){
self.do_action(action);
}
else if ( 'view_mode' in action ){
view_modes = action.view_mode.split(",");
new_view_mode = [];
for ( i=0; i<view_modes.length; i++ ){
if ( view_modes[i] === "tree" )
new_view_mode.push("list");
else
new_view_mode.push(view_modes[i]);
}
action.view_mode = new_view_mode.join(",");
}
views = action.views;
new_views = [];
for ( i=0; i<views.length; i++ ){
if ( views[i][1] === "tree" )
new_views.push([views[i][0], "list"]);
else
new_views.push(views[i]);
}
action.views = new_views;
self.do_action(action);
}
else
{