Merge pull request #16218 from deepeshgarg007/analytics-graph

[Bug-fix] Analytics report graph skipping quarter values bug fix
This commit is contained in:
Nabin Hait
2018-12-19 18:08:25 +05:30
committed by GitHub
3 changed files with 34 additions and 8 deletions

View File

@@ -77,9 +77,20 @@ frappe.query_reports["Purchase Analytics"] = {
events: {
onCheckRow: function(data) {
row_name = data[2].content;
row_values = data.slice(5).map(function (column) {
return column.content;
})
length = data.length;
var tree_type = frappe.query_report.filters[0].value;
if(tree_type == "Supplier" || tree_type == "Item") {
row_values = data.slice(4,length-1).map(function (column) {
return column.content;
})
}
else {
row_values = data.slice(3,length-1).map(function (column) {
return column.content;
})
}
entry = {
'name':row_name,