diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-06-10 23:15:03 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-06-10 23:15:03 -0700 |
commit | b7a2175dd9b386441f4ab66869d73083e5e8beb1 (patch) | |
tree | 3d96ed11d9ec68a9becd2e5b38548974a7a98e0e /httemplate/edit | |
parent | e497261817ee2cf3acb5ee3dda3c5906f1c13a4f (diff) |
multi-currency, RT#21565
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/cust_main/billing.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 5a66f0a60..da5f0f27f 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -615,6 +615,23 @@ function toggle(obj) { <INPUT TYPE="hidden" NAME="cdr_termination_percentage" VALUE="<% $cust_main->cdr_termination_percentage %>"> % } +%my @currencies = $conf->config('currencies'); +%if ( scalar(@currencies) ) { +% unshift @currencies, ''; #default +% my %currency_labels = map { $_ => "$_: ". code2currency($_) } @currencies; +% $currency_labels{''} = +% 'Default: '. code2currency( $conf->config('currency') || 'USD' ); + + <& /elements/tr-select.html, + 'label' => emt('Invoicing currency'), + 'field' => 'currency', + 'options' => \@currencies, + 'labels' => \%currency_labels, + 'curr_value' => $cust_main->currency, + &> +% } + + %my @available_locales = $conf->config('available-locales'); %if ( scalar(@available_locales) ) { % push @available_locales, '' |