commit | 8f8fd39855ce99573887939917caba5ba9f15da6 | [log] [tgz] |
---|---|---|
author | OluyomiKay <yomikabiawu@yahoo.com> | Wed Dec 14 13:25:58 2016 +0800 |
committer | OluyomiKay <yomikabiawu@yahoo.com> | Wed Dec 14 13:25:58 2016 +0800 |
tree | b3c39d560d2af18233f7ea178be83bbbc4d7947f | |
parent | 201af807065ab08d181ba3f5817d18f9337cddb3 [diff] |
erpnext Include Cash Account Type (eg. Petty Cash) in Bank Reconciliation
diff --git a/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.js b/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.js index f1ccd9f..956f15a 100644 --- a/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.js +++ b/erpnext/accounts/doctype/bank_reconciliation/bank_reconciliation.js
@@ -15,7 +15,7 @@ frm.set_query("bank_account", function() { return { "filters": { - "account_type": "Bank", + "account_type": ["in",["Bank","Cash"]], "is_group": 0 } };