X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fbilling.html;h=e0dd7b90462e13755393a81f42cfa093748c1282;hb=adc62b5c44f6e6fddda75aff0d594d7a7d95a403;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..e0dd7b904 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,35 +209,51 @@ % } % 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 %> + % } % if ( $conf->exists('enable_taxproducts') ) { <% mt('Tax location') |h %> - <% $cust_main->geocode('cch') %> +% my $tax_location = $conf->exists('tax-ship_address') +% ? $cust_main->ship_location +% : $cust_main->bill_location; + <% $tax_location->geocode('cch') %> % } - <% 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 +307,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);