[IMP][mis_builder] use get_context method in drilldown method

pull/189/head
Adrien Peiffer (ACSONE) 2016-01-27 11:18:03 +01:00 committed by Stéphane Bidoul
parent 350c996592
commit 592ee64f51
1 changed files with 2 additions and 1 deletions

View File

@ -88,10 +88,11 @@ var MisReport = form_common.FormWidget.extend({
if (drilldown) {
var period_id = JSON.parse($(event.target).data("period-id"));
var val_c = JSON.parse($(event.target).data("expr"));
var context = new data.CompoundContext(self.build_context(), self.get_context()|| {})
new Model("mis.report.instance.period").call(
"drilldown",
[period_id, val_c],
{'context': new data.CompoundContext()}
{'context': context}
).then(function(result) {
if (result) {
self.do_action(result);