[IMP] add total to each rows in pivot table view (addon web_graph)

bzr revid: ged@openerp.com-20131125090443-r5dbre9wn2jymu37
This commit is contained in:
Gery Debongnie 2013-11-25 10:04:43 +01:00
parent 86a2d41d24
commit 7940ec40c6
1 changed files with 11 additions and 0 deletions

View File

@ -284,6 +284,7 @@ instance.web_graph.GraphView = instance.web.View.extend({
make_cells(pivot.cols.headers, 0);
} else {
make_cells(pivot.cols.main.children, 1);
header_cells[0].push(self.make_border_cell(1, height).append('Total'));
}
_.each(header_cells, function (cells) {
@ -322,6 +323,16 @@ instance.web_graph.GraphView = instance.web.View.extend({
html_row.append(cell);
}
});
var cell = $('<td></td>').append(pivot.get_value(row.id,pivot.cols.main.id));
if (row.is_expanded && (row.path.length <= 2)) {
var color = row.path.length * 5 + 240;
cell.css("background-color", "rgb(" + [color, color, color].join() + ")");
}
if (pivot.cols.main.children.length > 0) {
html_row.append(cell);
}
this.table.append(html_row);
}
});