From cedae1fba7d6a1431ed7ef7515f1a4a5626e884b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Fri, 13 Jun 2014 13:32:24 +0200 Subject: [PATCH] [FIX] removes non stored fields from measures Non stored functional fields cannot be grouped by read_group, so it is useless, and even harmful, to display them in the measure list (in graph view). --- 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 bbf27daffb0..59f0af95882 100644 --- a/addons/web_graph/static/src/js/graph_widget.js +++ b/addons/web_graph/static/src/js/graph_widget.js @@ -114,7 +114,9 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({ // Extracts the integer/float fields which are not 'id' get_measures: function() { return _.compact(_.map(this.fields, function (f, id) { - if (((f.type === 'integer') || (f.type === 'float')) && (id !== 'id')) { + if (((f.type === 'integer') || (f.type === 'float')) && + (id !== 'id') && + (f.store !== false)) { return {field:id, type: f.type, string: f.string}; } }));