don't show currency in journal voucher's listview
diff --git a/erpnext/accounts/doctype/journal_voucher/listview.js b/erpnext/accounts/doctype/journal_voucher/listview.js
index 5d7f85a..6fe4cde 100644
--- a/erpnext/accounts/doctype/journal_voucher/listview.js
+++ b/erpnext/accounts/doctype/journal_voucher/listview.js
@@ -25,7 +25,7 @@
{
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'}
},