[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).
This commit is contained in:
Géry Debongnie 2014-06-13 13:32:24 +02:00
parent 0f01df42ea
commit cedae1fba7
1 changed files with 3 additions and 1 deletions

View File

@ -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};
}
}));