[FIX] web_graph: pass context to fields_get for translation
authorDenis Ledoux <dle@odoo.com>
Thu, 27 Nov 2014 15:03:14 +0000 (16:03 +0100)
committerDenis Ledoux <dle@odoo.com>
Thu, 27 Nov 2014 15:06:05 +0000 (16:06 +0100)
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

index a08ee52..13dc558 100644 (file)
@@ -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();