mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-25 16:04:46 +00:00
chore: fix issue
This commit is contained in:
@@ -283,7 +283,7 @@ class StockBalanceReport:
|
|||||||
qty_dict[field] = entry.get(field)
|
qty_dict[field] = entry.get(field)
|
||||||
|
|
||||||
if entry.voucher_type == "Stock Reconciliation" and (
|
if entry.voucher_type == "Stock Reconciliation" and (
|
||||||
not entry.batch_no or not entry.serial_no or not entry.serial_and_batch_bundle
|
not entry.batch_no and not entry.serial_no and not entry.serial_and_batch_bundle
|
||||||
):
|
):
|
||||||
qty_diff = flt(entry.qty_after_transaction) - flt(qty_dict.bal_qty)
|
qty_diff = flt(entry.qty_after_transaction) - flt(qty_dict.bal_qty)
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user