From 02c0eaf99a5127edafbfbc3214db58eecbb4470f Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 10 May 2012 18:48:15 +0530 Subject: [PATCH] don't show currency in journal voucher's listview --- erpnext/accounts/doctype/journal_voucher/listview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/accounts/doctype/journal_voucher/listview.js b/erpnext/accounts/doctype/journal_voucher/listview.js index 5d7f85a7d99..6fe4cde2346 100644 --- a/erpnext/accounts/doctype/journal_voucher/listview.js +++ b/erpnext/accounts/doctype/journal_voucher/listview.js @@ -25,7 +25,7 @@ wn.doclistviews['Journal Voucher'] = wn.views.ListView.extend({ { width: '18%', content: function(parent, data) { - $(parent).html(sys_defaults.currency + ' ' + fmt_money(data.total_debit)) + $(parent).html(fmt_money(data.total_debit)) }, css: {'text-align':'right'} },