Update stock_ageing.py

This commit is contained in:
John Clarke
2020-06-24 07:31:21 -06:00
committed by GitHub
parent 06a37660ae
commit 6fd1068af3

View File

@@ -187,7 +187,7 @@ def get_fifo_queue(filters, sle=None):
transferred_item_details[(d.voucher_no, d.name)].append(fifo_queue.pop(0))
else:
# all from current batch
batch[0] -= qty_to_pop
batch[0] = flt(batch[0]) - qty_to_pop
transferred_item_details[(d.voucher_no, d.name)].append([qty_to_pop, batch[1]])
qty_to_pop = 0