mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-20 10:45:29 +00:00
fix: balance qty in the stock ledger report (#40506)
(cherry picked from commit 00de529a1e)
Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
@@ -60,6 +60,7 @@ def execute(filters=None):
|
|||||||
if filters.get("batch_no") or inventory_dimension_filters_applied:
|
if filters.get("batch_no") or inventory_dimension_filters_applied:
|
||||||
actual_qty += flt(sle.actual_qty, precision)
|
actual_qty += flt(sle.actual_qty, precision)
|
||||||
stock_value += sle.stock_value_difference
|
stock_value += sle.stock_value_difference
|
||||||
|
batch_balance_dict[sle.batch_no] += sle.actual_qty
|
||||||
|
|
||||||
if sle.voucher_type == "Stock Reconciliation" and not sle.actual_qty:
|
if sle.voucher_type == "Stock Reconciliation" and not sle.actual_qty:
|
||||||
actual_qty = sle.qty_after_transaction
|
actual_qty = sle.qty_after_transaction
|
||||||
|
|||||||
Reference in New Issue
Block a user