From 15d87a17325c8ee0696e0f16a9a9ad7c09d342de Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 27 Nov 2014 16:03:14 +0100 Subject: [PATCH] [FIX] web_graph: pass context to fields_get for translation In graph views, fields from the pivot table were not translated in the user language We pass the context, containing the user language, to fields_get in order to get the translation This is also done by the search view, in search.js line 1978 at this rev. opw-616713 --- addons/web_graph/static/src/js/graph_widget.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/web_graph/static/src/js/graph_widget.js b/addons/web_graph/static/src/js/graph_widget.js index a08ee52..13dc558 100644 --- a/addons/web_graph/static/src/js/graph_widget.js +++ b/addons/web_graph/static/src/js/graph_widget.js @@ -54,7 +54,9 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({ self.$('.graph_options_selection label').last().toggle(result); }); - return this.model.call('fields_get', []).then(function (f) { + return this.model.call('fields_get', { + context: this.graph_view.dataset.context + }).then(function (f) { self.fields = f; self.fields.__count = {field:'__count', type: 'integer', string:_t('Count')}; self.groupby_fields = self.get_groupby_fields(); -- 1.7.10.4