mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 16:34:46 +00:00
fix: stock reservation validation for stock reconciliation
This commit is contained in:
@@ -685,6 +685,9 @@ class StockReconciliation(StockController):
|
|||||||
|
|
||||||
item_code_list, warehouse_list = [], []
|
item_code_list, warehouse_list = [], []
|
||||||
for item in self.items:
|
for item in self.items:
|
||||||
|
if item.qty == item.current_qty:
|
||||||
|
continue
|
||||||
|
|
||||||
item_code_list.append(item.item_code)
|
item_code_list.append(item.item_code)
|
||||||
warehouse_list.append(item.warehouse)
|
warehouse_list.append(item.warehouse)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user