Skip to content

Commit

Permalink
fix: items not fetching in End Transit entry (backport #42358) (#42361)
Browse files Browse the repository at this point in the history
fix: items not fetching in End Transit entry (#42358)

(cherry picked from commit 001e5b6)

Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
  • Loading branch information
mergify[bot] and rohitwaghchaure authored Jul 16, 2024
1 parent 62fc428 commit b5a2e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erpnext/stock/doctype/stock_entry/stock_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@ def update_item(source_doc, target_doc, source_parent):
"batch_no": "batch_no",
},
"postprocess": update_item,
"condition": lambda doc: flt(doc.qty) - flt(doc.transferred_qty) > 0.01,
"condition": lambda doc: flt(doc.qty) - flt(doc.transferred_qty) > 0.00001,
},
},
target_doc,
Expand Down

0 comments on commit b5a2e5a

Please sign in to comment.