3
0
Fork 0

Merge pull request #178 from hbrunn/8.0-web_advanced_search_x2x

[FIX] merge user context into search popup's context
9.0
Pedro M. Baeza 2015-07-30 21:13:59 +02:00
commit 44d5523572
1 changed files with 2 additions and 1 deletions

View File

@ -190,7 +190,8 @@ openerp.web_advanced_search_x2x = function(instance)
});
popup.select_element(
this.field.relation, {}, this.field.domain,
this.field.context);
new instance.web.CompoundContext(
instance.session.user_context, this.field.context));
},
});