mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-06 05:39:12 +00:00
7 lines
205 B
Python
7 lines
205 B
Python
total = 0.0
|
|
monthlist = ['','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec']
|
|
for r in res:
|
|
r[0] = monthlist[r[0]]
|
|
total += r[1]
|
|
|
|
colwidths[col_idx['Total Despatched']] = '200px' |