commit | 67d8b91690467575bf2c140b70338a79e2369e68 | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Wed Jun 04 11:18:25 2014 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed Jun 04 11:18:25 2014 +0530 |
tree | 036d56e8a21519988f5d2ffde1abf9ea62a3b280 | |
parent | ce6977ffe6f732fbd061b5a4cfd6b51d36aa8c17 [diff] |
Fixes in bank reconciliation statement
diff --git a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py index c1072a3..e87fbd3 100644 --- a/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py +++ b/erpnext/accounts/report/bank_reconciliation_statement/bank_reconciliation_statement.py
@@ -22,7 +22,7 @@ total_debit += flt(d[4]) total_credit += flt(d[5]) - bank_bal = flt(balance_as_per_company) + flt(total_debit) - flt(total_credit) + bank_bal = flt(balance_as_per_company) - flt(total_debit) + flt(total_credit) data += [ get_balance_row("Balance as per company books", balance_as_per_company),