commit | b12fe0f15bcc5d71c16d5bebc4d494518b6220b4 | [log] [tgz] |
---|---|---|
author | Ankush Menat <ankush@frappe.io> | Tue Mar 29 13:54:26 2022 +0530 |
committer | GitHub <noreply@github.com> | Tue Mar 29 13:54:26 2022 +0530 |
tree | cc25c9c950171af1a82d3a029060042095e29e18 | |
parent | d29e314c812e89fbb68090b5eca8fba1229af687 [diff] |
fix: dont check for failed repost while freezing (#30472) [skip ci]
diff --git a/erpnext/stock/utils.py b/erpnext/stock/utils.py index 741646d..4f1891f 100644 --- a/erpnext/stock/utils.py +++ b/erpnext/stock/utils.py
@@ -526,7 +526,7 @@ filters = { "docstatus": 1, - "status": ["in", ["Queued", "In Progress", "Failed"]], + "status": ["in", ["Queued", "In Progress"]], "posting_date": ["<=", posting_date], }