fix: filter query in bank reconciliation tool (#29100)

This commit is contained in:
mergify[bot]
2022-01-03 11:41:38 +05:30
committed by GitHub
parent 19154074c1
commit 8a8648e6ec

View File

@@ -7,7 +7,7 @@ frappe.ui.form.on("Bank Reconciliation Tool", {
frm.set_query("bank_account", function () {
return {
filters: {
company: ["in", frm.doc.company],
company: frm.doc.company,
'is_company_account': 1
},
};