commit | 120ea62acc1ea2be9b19c4e795e24aed0bbc43e6 | [log] [tgz] |
---|---|---|
author | Anand Doshi <anand@erpnext.com> | Thu Nov 19 14:24:39 2015 +0530 |
committer | Anand Doshi <anand@erpnext.com> | Thu Nov 19 14:24:39 2015 +0530 |
tree | abd51ebafb2a719a19774d1bfdb58bd071f66332 | |
parent | 06df19b56a3028e08afaeb7b5379a145d1dd245c [diff] |
[fix] get_balance_on: convert date to string
diff --git a/erpnext/accounts/utils.py b/erpnext/accounts/utils.py index c2ada13..b58882f 100644 --- a/erpnext/accounts/utils.py +++ b/erpnext/accounts/utils.py
@@ -65,7 +65,7 @@ cond = [] if date: - cond.append("posting_date <= '%s'" % frappe.db.escape(date)) + cond.append("posting_date <= '%s'" % frappe.db.escape(cstr(date))) else: # get balance of all entries that exist date = nowdate()