fix: incorrect if condition

(cherry picked from commit 668574e4f0)
This commit is contained in:
Mihir Kandoi
2025-07-14 16:36:29 +05:30
committed by Mergify
parent 1322cc1378
commit a195152cc8

View File

@@ -1094,7 +1094,7 @@ class StockReconciliation(StockController):
{"voucher_detail_no": row.name, "actual_qty": ("<", 0), "is_cancelled": 0},
"name",
):
if not not row.current_serial_and_batch_bundle:
if not row.current_serial_and_batch_bundle:
self.set_current_serial_and_batch_bundle(voucher_detail_no, save=True)
row.reload()