mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-18 12:39:18 +00:00
fix: broken type check in stock ageing report
This commit is contained in:
@@ -49,7 +49,7 @@ def get_average_age(fifo_queue, to_date):
|
|||||||
for batch in fifo_queue:
|
for batch in fifo_queue:
|
||||||
batch_age = date_diff(to_date, batch[1])
|
batch_age = date_diff(to_date, batch[1])
|
||||||
|
|
||||||
if type(batch[0]) in ['int', 'float']:
|
if isinstance(batch[0], (int, float)):
|
||||||
age_qty += batch_age * batch[0]
|
age_qty += batch_age * batch[0]
|
||||||
total_qty += batch[0]
|
total_qty += batch[0]
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user