mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 10:11:20 +00:00
Sum of years not needed.
This commit is contained in:
@@ -48,7 +48,7 @@ def execute(filters=None):
|
|||||||
new = new_customers_in.get(key, [0,0.0])
|
new = new_customers_in.get(key, [0,0.0])
|
||||||
repeat = repeat_customers_in.get(key, [0,0.0])
|
repeat = repeat_customers_in.get(key, [0,0.0])
|
||||||
|
|
||||||
out.append([year, calendar.month_name[month],
|
out.append([str(year), calendar.month_name[month],
|
||||||
new[0], repeat[0], new[0] + repeat[0],
|
new[0], repeat[0], new[0] + repeat[0],
|
||||||
new[1], repeat[1], new[1] + repeat[1]])
|
new[1], repeat[1], new[1] + repeat[1]])
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user