diff --git a/erpnext/stock/utils.py b/erpnext/stock/utils.py index b843d52b1bf..77f6ec38082 100644 --- a/erpnext/stock/utils.py +++ b/erpnext/stock/utils.py @@ -427,7 +427,7 @@ def check_pending_reposting(posting_date: str, throw_error: bool = True) -> bool filters = { "docstatus": 1, - "status": ["in", ["Queued","In Progress", "Failed"]], + "status": ["in", ["Queued", "In Progress"]], "posting_date": ["<=", posting_date], }