From 178fb90a6eec70d43c10f4886b5518aefca5b38b Mon Sep 17 00:00:00 2001 From: Tanshu Date: Sun, 6 Oct 2013 13:22:55 +0530 Subject: [PATCH] Fixed: Issue grid not showing --- brewman/brewman/views/services/cost_center.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brewman/brewman/views/services/cost_center.py b/brewman/brewman/views/services/cost_center.py index 50b8380b..26a38e71 100644 --- a/brewman/brewman/views/services/cost_center.py +++ b/brewman/brewman/views/services/cost_center.py @@ -47,5 +47,5 @@ def get_grid(date, source, destination): for voucher, amount in query: list.append( - {'VoucherID': str(voucher.id), 'Amount': "\u20B9 {0:.2f}".format(amount)}) + {'VoucherID': str(voucher.id), 'Amount': amount}) return list