mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-13 02:01:21 +00:00
Merge pull request #46831 from rohitwaghchaure/fixed-support-35187
fix: current batch qty showing zero in the stock reconciliation
This commit is contained in:
@@ -2117,7 +2117,7 @@ def get_auto_batch_nos(kwargs):
|
|||||||
picked_batches,
|
picked_batches,
|
||||||
)
|
)
|
||||||
|
|
||||||
if available_batches and kwargs.get("posting_date"):
|
if not kwargs.get("do_not_check_future_batches") and available_batches and kwargs.get("posting_date"):
|
||||||
filter_zero_near_batches(available_batches, kwargs)
|
filter_zero_near_batches(available_batches, kwargs)
|
||||||
|
|
||||||
if not kwargs.consider_negative_batches:
|
if not kwargs.consider_negative_batches:
|
||||||
@@ -2135,7 +2135,8 @@ def filter_zero_near_batches(available_batches, kwargs):
|
|||||||
del kwargs["posting_date"]
|
del kwargs["posting_date"]
|
||||||
del kwargs["posting_time"]
|
del kwargs["posting_time"]
|
||||||
|
|
||||||
available_batches_in_future = get_available_batches(kwargs)
|
kwargs.do_not_check_future_batches = 1
|
||||||
|
available_batches_in_future = get_auto_batch_nos(kwargs)
|
||||||
for batch in available_batches:
|
for batch in available_batches:
|
||||||
if batch.qty <= 0:
|
if batch.qty <= 0:
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user