fix: Add docstatus filter for voucher_no in Repost Item Valuation

(cherry picked from commit 520306dc87)
This commit is contained in:
Sagar Sharma
2022-08-21 12:09:08 +05:30
committed by Mergify
parent 3a7a53ab72
commit 2cf2885470

View File

@@ -24,7 +24,8 @@ frappe.ui.form.on('Repost Item Valuation', {
frm.set_query("voucher_no", () => {
return {
filters: {
company: frm.doc.company
company: frm.doc.company,
docstatus: 1
}
};
});