Fixed counting to correctly reflect all status at each month

This commit is contained in:
Ben Cornwell-Mott
2017-02-06 20:58:25 -08:00
parent 36d04fda37
commit 02c02bc572
2 changed files with 38 additions and 23 deletions

View File

@@ -269,7 +269,7 @@ data_map = {
},
"Purchase Receipt": {
"columns": ["name", "supplier", "posting_date", "company"],
"conditions": ["docstatus=1"],
"conditions": ["docstatus=1"],
"order_by": "posting_date",
"links": {
"supplier": ["Supplier", "name"],
@@ -294,7 +294,7 @@ data_map = {
# Manufacturing
"Production Order": {
"columns": ["name","status","creation","planned_start_date","status","actual_start_date"],
"columns": ["name","status","creation","planned_start_date","planned_end_date","status","actual_start_date","actual_end_date", "modified"],
"conditions": ["docstatus = 1"],
"order_by": "creation"
}