Update erpnext/accounts/search_criteria/trial_balance/trial_balance.py

This commit is contained in:
Nabin Hait 2012-03-19 17:09:14 +05:30
parent 16d9f4942a
commit 65ad3b1a0f

View File

@ -114,8 +114,8 @@ for r in res:
r.append(flt(opening<0 and -opening or 0))
r.append(flt(debit))
r.append(flt(credit))
r.append(flt(closing>0 and closing or 0))
r.append(flt(closing<0 and -closing or 0))
r.append(flt(closing>0.01 and closing or 0))
r.append(flt(closing<-0.01 and -closing or 0))
out =[]