From 363e923b8079783caf8d2df03d651aeee5a31a5f Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Wed, 23 Jan 2013 22:26:45 +0530 Subject: [PATCH] expense claim list bugfix --- hr/doctype/expense_claim/expense_claim_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hr/doctype/expense_claim/expense_claim_list.js b/hr/doctype/expense_claim/expense_claim_list.js index c3c81b12b4..4e5a0dc25a 100644 --- a/hr/doctype/expense_claim/expense_claim_list.js +++ b/hr/doctype/expense_claim/expense_claim_list.js @@ -31,7 +31,7 @@ wn.doclistviews['Expense Claim'] = wn.views.ListView.extend({ width: '12%', content: function(parent, data) { $(parent).html(format_currency(data.total_sanctioned_amount, - erpnext.get_currency(data.company)); + erpnext.get_currency(data.company))); }, css: {'text-align': 'right'}, },