mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-13 14:41:53 +00:00
fix: round outstanding qty guard consistently with the conflict gate
This commit is contained in:
@@ -1372,7 +1372,7 @@ class StockController(AccountsController):
|
|||||||
reservations[key].append(row)
|
reservations[key].append(row)
|
||||||
|
|
||||||
for (batch_no, warehouse), reserved_qty in outstanding_qty.items():
|
for (batch_no, warehouse), reserved_qty in outstanding_qty.items():
|
||||||
if reserved_qty <= 0:
|
if flt(reserved_qty, 6) <= 0:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
batch_qty = get_batch_qty(
|
batch_qty = get_batch_qty(
|
||||||
|
|||||||
Reference in New Issue
Block a user