[FIX] merge user context into search popup's context

fixes #175, #177
pull/178/head
Holger Brunn 2015-07-17 11:14:17 +02:00
parent b81959e97e
commit d74f15fc97
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( popup.select_element(
this.field.relation, {}, this.field.domain, this.field.relation, {}, this.field.domain,
this.field.context); new instance.web.CompoundContext(
instance.session.user_context, this.field.context));
}, },
}); });