[FIX] when executing action received from a button call, set active_id and active_ids if there is one, remove existing if not; always set active_model

bzr revid: chs@openerp.com-20131211163609-i3s2mlncf5n91uda
This commit is contained in:
Christophe Simonis 2013-12-11 17:36:09 +01:00
parent 920ba45935
commit 9241d5f699
1 changed files with 2 additions and 2 deletions

View File

@ -1365,14 +1365,14 @@ instance.web.View = instance.web.Widget.extend({
// Wrong group_by values will simply fail and forbid rendering of the destination view
var ncontext = new instance.web.CompoundContext(
_.object(_.reject(_.pairs(context.eval()), function(pair) {
return pair[0].match('^(?:(?:default_|search_default_).+|group_by|group_by_no_leaf)$') !== null;
return pair[0].match('^(?:(?:default_|search_default_).+|group_by|group_by_no_leaf|active_id|active_ids)$') !== null;
}))
);
ncontext.add({active_model: dataset.model});
if (record_id) {
ncontext.add({
active_id: record_id,
active_ids: [record_id],
active_model: dataset.model
});
}
ncontext.add(action.context || {});