[freeside-commits] freeside/httemplate/elements customer-table.html, 1.8, 1.9
Erik Levinson
levinse at wavetail.420.am
Mon Jun 6 12:47:00 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/elements
In directory wavetail.420.am:/tmp/cvs-serv2251/httemplate/elements
Modified Files:
customer-table.html
Log Message:
quick payment entry improvements, RT8121
Index: customer-table.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/elements/customer-table.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -d -r1.8 -r1.9
--- customer-table.html 5 Jun 2011 17:22:48 -0000 1.8
+++ customer-table.html 6 Jun 2011 19:46:58 -0000 1.9
@@ -128,7 +128,7 @@
custnum_obj.value = customerArray[0];
custnum_obj.style.color = '#000000';
customer.value = customerArray[1];
- balance.innerHTML = customerArray[2];
+ balance.innerHTML = customerArray[2] + ' ';
status.innerHTML = customerArray[3];
status.style.color = '#'+customerArray[4];
@@ -205,7 +205,7 @@
custnum_obj.value = customerArray[0];
custnum_obj.style.color = '#000000';
customer.value = customerArray[1];
- balance.innerHTML = customerArray[2];
+ balance.innerHTML = customerArray[2] + ' ';
status.innerHTML = customerArray[3];
status.style.color = '#'+customerArray[4];
@@ -277,7 +277,7 @@
custnum_obj.value = customerArray[0][0];
customer_obj.value = customerArray[0][1];
- balance.innerHTML = customerArray[0][2];
+ balance.innerHTML = customerArray[0][2] + ' ';
status.innerHTML = customerArray[0][3];
status.style.color = '#'+customerArray[0][4];
@@ -345,7 +345,7 @@
var pos_underscore2 = custnum_balance_status.indexOf('_',pos_underscore1+1);
var pos_underscore3 = custnum_balance_status.indexOf('_',pos_underscore2+1);
var custnum = custnum_balance_status.substring(0,pos_underscore1);
- var balance = custnum_balance_status.substring(pos_underscore1+1,pos_underscore2);
+ var balance = custnum_balance_status.substring(pos_underscore1+1,pos_underscore2) + ' ';
var status = custnum_balance_status.substring(pos_underscore2+1,pos_underscore3);
var color = custnum_balance_status.substring(pos_underscore3+1);
@@ -502,6 +502,7 @@
rownum = "<% $row %>"
>
</SPAN>
+
</TD>
</TR>
% }
More information about the freeside-commits
mailing list