commit | 520306dc8751ab39cee7675a481b00e6dfeaa1b0 | [log] [tgz] |
---|---|---|
author | Sagar Sharma <sagarsharma.s312@gmail.com> | Sun Aug 21 12:09:08 2022 +0530 |
committer | Sagar Sharma <sagarsharma.s312@gmail.com> | Sun Aug 21 12:09:08 2022 +0530 |
tree | 6033bee8a82248141697318ec48156bcb6fd4f64 | |
parent | 588ca68171ed8c8f65d9a6c27323e29a2ac30e94 [diff] |
fix: Add docstatus filter for voucher_no in Repost Item Valuation
diff --git a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js index d6e00ea..eae7305 100644 --- a/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js +++ b/erpnext/stock/doctype/repost_item_valuation/repost_item_valuation.js
@@ -24,7 +24,8 @@ frm.set_query("voucher_no", () => { return { filters: { - company: frm.doc.company + company: frm.doc.company, + docstatus: 1 } }; });