From 159897d88da08c7e699e0bdf0b2fbe892f9c1afe Mon Sep 17 00:00:00 2001 From: Rohan Date: Tue, 18 Dec 2018 14:52:23 +0530 Subject: [PATCH] fix(customer): Fix Total Unpaid amount in Customer dashboard (#16234) --- erpnext/public/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 erpnext/public/js/utils.js diff --git a/erpnext/public/js/utils.js b/erpnext/public/js/utils.js old mode 100644 new mode 100755 index dc989e2fa9..0784b02798 --- a/erpnext/public/js/utils.js +++ b/erpnext/public/js/utils.js @@ -126,7 +126,7 @@ $.extend(erpnext.utils, { '
Annual Billing: ' +format_currency(company_wise_info[0].billing_this_year, company_wise_info[0].currency)+'
' + '
Total Unpaid: ' - +format_currency(company_wise_info[0].billing_this_year, company_wise_info[0].currency)+'
' + +format_currency(company_wise_info[0].total_unpaid, company_wise_info[0].currency)+'' ); } }