commit | d0f5beeb3490123050026b685c9e12b96f346bd9 | [log] [tgz] |
---|---|---|
author | Saqib Ansari <nextchamp.saqib@gmail.com> | Mon Jan 03 11:33:03 2022 +0530 |
committer | GitHub <noreply@github.com> | Mon Jan 03 11:33:03 2022 +0530 |
tree | 036dbfb297016ca3c41201ba5a57d6bc4c783753 | |
parent | 650b388bc1fd8a5e5969b7f00cca301c8ec1f614 [diff] |
fix: filter query in bank reconciliation tool (#29098)
diff --git a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js index 78e7ff6..335f850 100644 --- a/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js +++ b/erpnext/accounts/doctype/bank_reconciliation_tool/bank_reconciliation_tool.js
@@ -7,7 +7,7 @@ frm.set_query("bank_account", function () { return { filters: { - company: ["in", frm.doc.company], + company: frm.doc.company, 'is_company_account': 1 }, };