fix: incorrect balance qty

(cherry picked from commit b2105a8be7)
This commit is contained in:
Rohit Waghchaure
2022-11-28 22:51:35 +05:30
committed by Mergify
parent 0d8112af76
commit f92b5011da

View File

@@ -348,6 +348,9 @@ class StockReconciliation(StockController):
if row.qty:
args = self.get_sle_for_items(row)
if row.serial_no and row.batch_no:
args["qty_after_transaction"] = row.qty
args.update(
{
"actual_qty": row.qty,