X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fbilling.html;h=e286305f4a8a770810df4ac080dc83f13ed90898;hb=3d0a1bb06b895c5be6e3f0517d355442a6b1e125;hp=4d55f700230bcc4190a0a7aad5ebc0706578114a;hpb=820fe0ac288d4f2bb975b7f58ee02baefd96ed24;p=freeside.git diff --git a/httemplate/view/cust_main/billing.html b/httemplate/view/cust_main/billing.html index 4d55f7002..e286305f4 100644 --- a/httemplate/view/cust_main/billing.html +++ b/httemplate/view/cust_main/billing.html @@ -23,6 +23,14 @@ <% $balance %> +% if ( $conf->exists('cust_main-select-prorate_day') ) { + + <% mt('Prorate day of month') |h %> + <% $cust_main->prorate_day %> + + +% } + % if ( $conf->exists('cust_main-select-billday') % && ($cust_main->payby eq 'CARD' || $cust_main->payby eq 'CHEK') ) { @@ -146,7 +154,7 @@ % if ( $cust_main->payinfo ) { - + <% mt('P.O.') |h %> <% $cust_main->payinfo %> % } @@ -190,7 +198,10 @@ % my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups'); -% unless ( $conf->exists('cust_class-tax_exempt') ) { +% unless ( $conf->exists('cust_class-tax_exempt') +% || $conf->exists('tax-cust_exempt-groups-require_individual_nums') +% ) +% { <% mt('Tax exempt') |h %><% @exempt_groups ? ' ('.emt('all taxes').')' : '' %> <% $cust_main->tax ? $yes : $no %> @@ -198,9 +209,12 @@ % } % foreach my $exempt_group ( @exempt_groups ) { +% my $cust_main_exemption = $cust_main->tax_exemption($exempt_group); <% mt('Tax exempt') |h %> (<% $exempt_group %> taxes) - <% $cust_main->tax_exemption($exempt_group) ? $yes : $no %> + <% $cust_main_exemption ? $yes : $no %> + <% $cust_main_exemption ? $cust_main_exemption->exempt_number : '' |h %> + % } @@ -211,22 +225,32 @@ % } - <% mt('Postal invoices') |h %> + <% mt('Postal mail invoices') |h %> <% ( grep { $_ eq 'POST' } @invoicing_list ) ? $yes : $no %> - <% mt('FAX invoices') |h %> + <% mt('Fax invoices') |h %> <% ( grep { $_ eq 'FAX' } @invoicing_list ) ? $yes : $no %> -% unless ( $conf->exists('cust-email-high-visibility')) { <% mt('Email invoices') |h %> + <% $cust_main->invoice_noemail ? $no : $yes %> + + +% unless ( $conf->exists('cust-email-high-visibility')) { + + <% mt('Email address(es)') |h %> + <% join(', ', grep { $_ !~ /^(POST|FAX)$/ } @invoicing_list ) || $no %> +% if ( $cust_main->message_noemail ) { +
+ <% emt('(do not send notices)') %> +% } % } @@ -280,6 +304,13 @@ % } +% if ( $cust_main->currency ) { + + <% mt('Invoicing currency') |h %> + <% $cust_main->currency. ': '. code2currency($cust_main->currency) %> + +% } + % if ( $cust_main->locale ) { % my %locale_info = FS::Locales->locale_info($cust_main->locale);