From 5f52441fd5bb6dc204c5e26833b86299a928a49d Mon Sep 17 00:00:00 2001 From: levinse Date: Sun, 5 Jun 2011 17:22:48 +0000 Subject: [PATCH] quick payment entry improvements, RT8121 --- httemplate/elements/customer-table.html | 10 +++++++--- 1 file 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: % $col++; % } - + + <% $money_char %> @@ -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') || '$'; + -- 2.11.0