diff options
author | levinse <levinse> | 2011-06-05 17:22:48 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-06-05 17:22:48 +0000 |
commit | 5f52441fd5bb6dc204c5e26833b86299a928a49d (patch) | |
tree | fcd6434ba73451a70a81fd364661a920779bc52d | |
parent | fe701f764318c657a15e1e0720f4766aaaa63e8f (diff) |
quick payment entry improvements, RT8121
-rw-r--r-- | httemplate/elements/customer-table.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/httemplate/elements/customer-table.html b/httemplate/elements/customer-table.html index 4d9d10213..8564c31e2 100644 --- a/httemplate/elements/customer-table.html +++ b/httemplate/elements/customer-table.html @@ -494,12 +494,12 @@ Example: </TD> % $col++; % } - <TD> + <TD STYLE="text-align:right;"> + <% $money_char %> <SPAN NAME = "balance<% $row %>" ID = "balance<% $row %>" rownum = "<% $row %>" - STYLE = "text-align:center;" > </SPAN> </TD> @@ -649,11 +649,12 @@ Example: row.appendChild(customer_cell); var balance_cell = document.createElement('TD'); + balance_cell.style.textAlign = 'right'; + balance_cell.innerHTML = '<% $money_char %>'; var balance_span = document.createElement('SPAN'); balance_span.setAttribute('name', 'balance'+<% $opt{prefix} %>rownum); balance_span.setAttribute('id', 'balance'+<% $opt{prefix} %>rownum); - balance_span.style.textAlign = 'center'; balance_span.setAttribute('rownum', <% $opt{prefix} %>rownum); balance_cell.appendChild(balance_span); @@ -720,6 +721,7 @@ Example: <%init> my(%opt) = @_; +my $conf = new FS::Conf; $opt{prefix} = '' unless defined $opt{prefix}; $opt{prefix} .= '_' if $opt{prefix}; @@ -740,4 +742,6 @@ my %align = ( 'c' => 'center', ); +my $money_char = $conf->config('money_char') || '$'; + </%init> |