From f01a86fd426cee878c089e29ed70f272eef68063 Mon Sep 17 00:00:00 2001 From: levinse Date: Fri, 1 Jul 2011 22:26:04 +0000 Subject: [PATCH] quick payment entry improvements, RT8121 --- httemplate/elements/customer-table.html | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/httemplate/elements/customer-table.html b/httemplate/elements/customer-table.html index 9968ee9aa..aa085c41a 100644 --- a/httemplate/elements/customer-table.html +++ b/httemplate/elements/customer-table.html @@ -128,7 +128,7 @@ Example: custnum_obj.value = customerArray[0]; custnum_obj.style.color = '#000000'; customer.value = customerArray[1]; - balance.innerHTML = customerArray[2] + '   '; + balance.innerHTML = '<% $money_char %>' + customerArray[2] + '   '; status.innerHTML = customerArray[3]; status.style.color = '#'+customerArray[4]; @@ -205,7 +205,7 @@ Example: custnum_obj.value = customerArray[0]; custnum_obj.style.color = '#000000'; customer.value = customerArray[1]; - balance.innerHTML = customerArray[2] + '   '; + balance.innerHTML = '<% $money_char %>' + customerArray[2] + '   '; status.innerHTML = customerArray[3]; status.style.color = '#'+customerArray[4]; @@ -277,7 +277,7 @@ Example: custnum_obj.value = customerArray[0][0]; customer_obj.value = customerArray[0][1]; - balance.innerHTML = customerArray[0][2] + '   '; + balance.innerHTML = '<% $money_char %>' + customerArray[0][2] + '   '; status.innerHTML = customerArray[0][3]; status.style.color = '#'+customerArray[0][4]; @@ -355,7 +355,7 @@ Example: customer_obj.value = customer; customer_obj.style.color = '#000000'; - balance_obj.innerHTML = balance; + balance_obj.innerHTML = '<% $money_char %>' + balance; status_obj.innerHTML = status; status_obj.style.color = '#'+color; @@ -495,7 +495,6 @@ Example: % $col++; % } - <% $money_char %> rownum); -- 2.11.0