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

This commit is contained in:
mergify[bot]
2022-01-03 11:41:23 +05:30
committed by GitHub
parent 39f7a9de47
commit 4fdaf51599

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
},
};