X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Fbilling.html;h=da5f0f27f06ee557a559c385892903c759928a4e;hp=17b1b0cc91fd12b1fcc03c7ad8d878c0e9b3e8fa;hb=b7a2175dd9b386441f4ab66869d73083e5e8beb1;hpb=673b9a458d9138523026963df6fa3b4683e09bae diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 17b1b0cc9..da5f0f27f 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -1,66 +1,44 @@ -<% +%if ( $payby_default eq 'HIDE' ) { +% $cust_main->payby('BILL') unless $cust_main->payby; +% my $payby = $cust_main->payby; -my( $cust_main ) = @_; -my $conf = new FS::Conf; -my $payby_default = $conf->config('payby-default'); - -if ( $payby_default eq 'HIDE' ) { - - $cust_main->payby('BILL') unless $cust_main->payby; - -%> - - - - - -
<% # XXX key %> - - <% foreach my $field (qw( payinfo payname paycvv paystart_month paystart_year payissue payip )) { %> - - - - <% } %> - - <% - #false laziness w/elements/select-month_year.html & view/cust_main/billing.html - my( $mon, $year ); - my $date = $cust_main->paydate || '12-2037'; - if ( $date =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format - ( $mon, $year ) = ( $2, $1 ); - } elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) { - ( $mon, $year ) = ( $1, $3 ); - } else { - die "unrecognized expiration date format: $date"; - } - %> + - - + -
+% foreach my $field (qw( payname paycvv paystart_month paystart_year payissue payip paytype paystate billday )) { -
+ - +% } - +% #false laziness w/elements/select-month_year.html & view/cust_main/billing.html +% my( $mon, $year ); +% my $date = $cust_main->paydate || '12-2037'; +% if ( $date =~ /^(\d{4})-(\d{1,2})-\d{1,2}$/ ) { #PostgreSQL date format +% ( $mon, $year ) = ( $2, $1 ); +% } elsif ( $date =~ /^(\d{1,2})-(\d{1,2}-)?(\d{4}$)/ ) { +% ( $mon, $year ) = ( $1, $3 ); +% } else { +% die "unrecognized expiration date format: $date"; +% } -
+ + -<% } else { + - my @invoicing_list = $cust_main->invoicing_list; + - my $r = qq!* !; +% } else { +% +% my $r = qq!* !; -%> - -
Billing information - <%= &ntable("#cccccc") %> +
<% mt('Billing information') |h %> + <% &ntable("#cccccc") %> - <%=$r%>Billing type + <%$r%><% mt('Billing type') |h %> - - - - - - - <% - - my($payby, $payinfo, $payname)=( - $cust_main->payby, - $cust_main->payinfo, - $cust_main->payname, - ); - my( $account, $aba ) = split('@', $payinfo); - - my $disabled = 'DISABLED style="background-color: #dddddd"'; - my $text_disabled = 'style="color: #999999"'; - if ( $payby =~ /^(CARD|DCRD)$/ && cardtype($payinfo) =~ /^(Switch|Solo)$/ ) { - $disabled = 'style="background-color: #ffffff"'; - $text_disabled = 'style="color: #000000";' - } - - my %payby = ( - - 'CARD' => - - ''. - - qq!!. - qq!!. - - qq!!. - ''. - - qq!!. - '!. - '!. - - qq!!. - qq!!. - - qq!'. - - '
${r}Card number
${r}Expiration '. - - include('/elements/select-month_year.html', - 'prefix' => 'exp', - 'selected_date' => - ( $payby =~ /^(CARD|DCRD)$/ ? $cust_main->paydate : '' ), - ). - - '
CVV2 !. - - qq!(help)!. - qq!'. - - - qq!
Start date '. - - include('/elements/select-month_year.html', - 'prefix' => 'paystart', - 'disabled' => $disabled, - 'empty_option' => 1, - 'start_year' => 2000, - 'end_year' => (localtime())[5] + 1900, - 'selected_date' => ( - ( $payby =~ /^(CARD|DCRD)$/ - && cardtype($payinfo) =~ /^(Switch|Solo)$/ ) - ? $cust_main->paystart_month. '-'. - $cust_main->paystart_year - : '' - ) - ). - - qq! or Issue number !. - '
${r}Exact name on card
Charge future payments to this card automatically
', - - 'CHEK' => - - ''. - - qq!!. - qq!'. - - qq!!. - qq!!. - - qq!!. - qq!!. - - qq!!. - qq!!. - - qq!'. - - ''. - ''. - ''. - - '
${r}Account number
${r}ABA/Routing number !. - qq!(help)!. - qq!
${r}Bank name
Charge future payments to this electronic check automatically
 
 
 
', - - 'LECB' => - - ''. - - qq!!. - qq!!. - - qq!!. - qq!!. - qq!!. - - ''. - ''. - ''. - ''. - ''. - ''. + function init_payauto_changed(){ + var f = document.getElementById('CARD_payauto'); + if(f != null) payauto_changed(f); + f = document.getElementById('CHEK_payauto'); + if(f != null) payauto_changed(f); + } - '
${r}Phone number
 
 
 
 
 
 
', + function payauto_changed(payauto_field){ + var select = (payauto_field.name == 'CARD_payauto') ? 'CARD_billday' : 'CHEK_billday'; + var span = document.getElementById('td_'+select); + select = document.getElementById(select); + if (span == null || select == null) return; + if(payauto_field.checked) { + span.style.color = '#000000'; + select.disabled = false; + } + else { + span.style.color = '#999999'; + select.disabled = true; + //why? select.selectedIndex = 0; + } + } - 'BILL' => + function tax_changed(what) { + var num = document.getElementById(what.id + '_num'); + if ( what.checked ) { + num.disabled = false; + } else { + num.disabled = true; + } + } + + - ''. + <& /elements/init_overlib.html &> + +% my $payby = $cust_main->payby; +% my $paytype = $cust_main->paytype; +% my( $account, $aba ) = split('@', $payinfo); +% my $branch = ''; +% ($branch,$aba) = split('\.',$aba) +% if $conf->config('echeck-country') eq 'CA'; +% +% my $disabled = 'DISABLED style="background-color: #dddddd"'; +% my $text_disabled = 'style="color: #999999"'; +% +% if ( $payby =~ /^(CARD|DCRD)$/ && cardtype($payinfo) =~ /^(Switch|Solo)$/ ) { +% $disabled = 'style="background-color: #ffffff"'; +% $text_disabled = 'style="color: #000000";' +% } +% +% my $disable_payauto = $conf->exists('disable_payauto_default'); +% my $CARD_payauto_checked = $payby eq 'DCRD' ? '' +% : $payby eq 'CARD' ? 'CHECKED' +% : $disable_payauto ? '' : 'CHECKED'; +% my $CHEK_payauto_checked = $payby eq 'DCHK' ? '' +% : $payby eq 'CHEK' ? 'CHECKED' +% : $disable_payauto ? '' : 'CHECKED'; +% +% sub billday_options { +% my $curr_value = shift; +% my $ret = ''; +% for my $billday ( 1 .. 28 ) { +% my $sel = ''; +% $sel = "SELECTED='SELECTED'" if $curr_value == $billday; +% $ret .= ""; +% } +% $ret; +% } +% +% my $card_billday_style = $payby eq 'CARD' ? '' : 'style="color: #999999"'; +% my $chek_billday_style = $payby eq 'CHEK' ? '' : 'style="color: #999999"'; +% my $card_billday_select_disabled = $payby eq 'CARD' ? '' : 'DISABLED'; +% my $chek_billday_select_disabled = $payby eq 'CHEK' ? '' : 'DISABLED'; +% +% #false laziness w/view/cust_main/billing.html and misc/payment.cgi +% my $routing_label = $conf->config('echeck-country') eq 'US' +% ? 'ABA/Routing number' +% : 'Routing number'; +% my $routing_size = $conf->config('echeck-country') eq 'CA' ? 4 : 10; +% my $routing_maxlength = $conf->config('echeck-country') eq 'CA' ? 3 : 9; +% +% +% my %payby = ( +% +% 'CARD' => +% +% '
'. +% +% qq!!. +% qq!!. +% +% qq!!. +% ''. +% +% qq!!. +% '!. +% '!. +% +% qq!!. +% qq!!. +% +% qq!'. +% +% ( $conf->exists('cust_main-select-billday') ? +% qq!! +% : '' +% ). +% +% '
${r}!.emt('Card number').qq!
${r}!.emt('Expiration').qq! '. +% +% include('/elements/select-month_year.html', +% 'prefix' => 'CARD_exp', +% 'selected_date' => +% ( $payby =~ /^(CARD|DCRD)$/ ? $cust_main->paydate : '' ), +% ). +% +% '
!.emt('CVV2').qq! !. +% +% qq!(!.emt('help').qq!)!. +% qq!'. +% +% qq!
!.emt('Start date').qq! '. +% +% include('/elements/select-month_year.html', +% 'prefix' => 'CARD_paystart', +% 'disabled' => $disabled, +% 'empty_option' => 1, +% 'start_year' => 2000, +% 'end_year' => (localtime())[5] + 1900, +% 'selected_date' => ( +% ( $payby =~ /^(CARD|DCRD)$/ +% && cardtype($payinfo) =~ /^(Switch|Solo)$/ ) +% ? $cust_main->paystart_month. '-'. +% $cust_main->paystart_year +% : '' +% ) +% ). +% +% qq!!.emt('or Issue number').qq! !. +% '
${r}!.emt('Exact name on card').qq!
!. +% qq! !. +% emt('Charge future payments to this [_1] automatically','credit card').'
+% Charge on this day of each month   +%
', +% +% 'CHEK' => +% +% ''. +% +% qq!!. +% qq!'. +% qq!!. +% +% qq!!. +% qq!!. +% +% qq!!. +% qq!!. +% +% ( $conf->config('echeck-country') eq 'CA' ? +% qq!! : '' ). +% +% qq!!. +% qq!!. +% ( $conf->exists('show_bankstate') ? +% qq!!. +% qq!" +% : '' +% ). +% +% +% qq!'. +% +% ( $conf->exists('cust_main-select-billday') ? +% qq!! +% : '' +% ). +% +% '
${r}!.emt('Account number').qq! !.emt('Type').qq!
${r}!.emt($routing_label).qq! !. +% qq!(!.emt('help').qq!)!. +% qq!
$r !.emt('Branch number').qq! +%
${r}!.emt('Bank name').qq!
$paystate_label!. +% include('/elements/select-state.html', +% 'empty' => emt('(choose)'), +% 'state' => $cust_main->paystate, +% 'country' => $cust_main->country, +% 'prefix' => 'CHEK_pay', +% ). "
!. +% qq! !. +% emt('Charge future payments to this [_1] automatically','electronic check').'
+% Charge on this day of each month   +%
', +% +% 'LECB' => +% +% ''. +% +% qq!!. +% qq!!. +% +% qq!!. +% qq!!. +% qq!!. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
${r}!.emt('Phone number').qq!
 
 
 
 
 
 
', +% +% 'BILL' => +% +% ''. +% +% qq!!. +% qq!!. +% +% qq!!. +% qq!!. +% +% qq!!. +% qq!!. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
!.emt('P.O.').qq!
!.emt('Attention').qq!
 
 
 
 
 
', +% +% 'COMP' => +% +% ''. +% +% qq!!. +% qq!!. +% +% qq!!. +% ''. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
${r}!.emt('Approved by').qq!
${r}!.emt('Expiration').qq! '. +% +% include('/elements/select-month_year.html', +% 'prefix' => 'COMP_exp', +% 'selected_date' => +% ( $payby eq 'COMP' ? $cust_main->paydate : '' ), +% ). +% +% '
 
 
 
 
 
', +% +% 'CASH' => +% +% ''. +% +% qq!!. +% qq!!. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
${r}!.emt('Amount').qq!
 
 
 
 
 
 
', +% +% 'WEST' => +% +% ''. +% +% qq!!. +% qq!!. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
${r}!.emt('Amount').qq!
 
 
 
 
 
 
', +% +% 'MCRD' => +% +% ''. +% +% qq!!. +% qq!!. +% +% ''. +% ''. +% ''. +% ''. +% ''. +% ''. +% +% '
${r}!.emt('Amount').qq!
 
 
 
 
 
 
', +% +% ); +% +% #this should use FS::payby +% my @allopt = qw( CARD CHEK LECB BILL CASH WEST MCRD COMP ); +% +% my %allopt = map { $_ => FS::payby->shortname($_) } @allopt; +% +% if ( $cust_main->custnum ) { +% #don't offer CASH/WEST/MCRD initial payment types when editing customer +% delete $allopt{$_} for qw(CASH WEST MCRD); +% } +% +% my @options = grep exists( $allopt{$_} ), @payby; +% +% my %payby2option = ( +% ( map { $_ => $_ } @options ), +% 'DCRD' => 'CARD', +% 'DCHK' => 'CHEK', +% ); + + + <& /elements/selectlayers.html, + 'field' => 'payby', + 'curr_value' => $payby2option{$payby || $payby_default || $payby[0] }, + 'options' => \@options, + 'labels' => \%allopt, + 'html_between' => '', + 'layer_callback' => sub { my $layer = shift; $payby{$layer}; }, + 'onchange' => 'init_payauto_changed();', + &> + + <% &ntable("#cccccc") %> - qq!P.O. !. - qq!!. +   - qq!!. - qq!!. +% my $curuser = $FS::CurrentUser::CurrentUser; +% my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups'); +% if ( $conf->exists('cust_class-tax_exempt') +% || $conf->exists('tax-cust_exempt-groups-require_individual_nums') +% || ! $curuser->access_right('Edit customer tax exemptions') +% ) +% { - qq!Attention !. - qq!!. + - ' '. - ' '. - ' '. - ' '. - ' '. +% } else { - '', + + tax eq "Y" ? 'CHECKED' : '' %>> Tax Exempt<% @exempt_groups ? ' (all taxes)' : '' %> + - 'COMP' => +% } - ''. +% if ( $curuser->access_right('Edit customer tax exemptions') ) { +% foreach my $exempt_group ( @exempt_groups ) { +% my $cust_main_exemption = $cust_main->tax_exemption($exempt_group); +% #escape $exempt_group for NAME etc. +% my $checked = ($cust_main_exemption || $cgi->param("tax_$exempt_group")); + + + + +% } +% } - qq!!. - qq!!. +% unless ( $conf->exists('emailinvoiceonly') ) { - qq!!. - ' + '. + ? 'CHECKED' + : '' - ''. - ''. - ''. - ''. - ''. + %>> <% mt('Postal mail invoices') |h %> - '
   onChange="tax_changed(this)"> Tax Exempt (<% $exempt_group %> taxes) - Exemption number exempt_number : '' ) |h %>" <% $checked ? '' : 'DISABLED' %>>
${r}Approved by
${r}Expiration '. +
'exp', - 'selected_date' => - ( $payby eq 'COMP' ? $cust_main->paydate : '' ), - ). + ( grep { $_ eq 'POST' } @invoicing_list ) - '
 
 
 
 
 
', + + - ); + + 'Credit card', - 'CHEK' => 'Electronic check', - 'LECB' => 'Phone bill billing', - 'BILL' => 'Billing', - 'COMP' => 'Complimentary', - ; - my %payby2option = ( - ( map { $_ => $_ } keys %options ), - 'DCRD' => 'CARD', - 'DCHK' => 'CHEK', - ); + ( grep { $_ eq 'FAX' } @invoicing_list ) + ? 'CHECKED' + : '' - my $widget = new HTML::Widgets::SelectLayers( - 'options' => \%options, - #'form_name' => 'dummy', - #'form_action' => 'nothingyet', - #chops bottom of page in IE# 'under_position' => 'absolute', - 'html_between' => '', - 'selected_layer' => $payby2option{$payby} || 'CARD', - 'layer_callback' => sub { my $layer = shift; $payby{$layer}; }, - ); + %>> <% mt('Fax invoices') |h %> - %> + + - <%= $widget->html %> +% } -
+ + + ( $cust_main->invoice_noemail eq 'Y' ) + ? '' + : 'CHECKED' -   + %>> <% mt('Email invoices') |h %> - - tax eq "Y" ? 'CHECKED' : '' %>> Tax Exempt + - - exists('disablepostalinvoicedefault') ) - || grep { $_ eq 'POST' } @invoicing_list ) - +% unless ( $conf->exists('cust-email-high-visibility')) { + + + <% $conf->exists('cust_main-require_invoicing_list_email', $agentnum) + ? $r : '' %>Email address(es) + + + message_noemail eq 'Y' ) ? 'CHECKED' : '' - - %>> Postal mail invoice - + %>> <% emt('Do not send notices') %> +% } +% if ( $conf->exists('cust_main-select-prorate_day') ) { - > Fax invoice + <% mt('Prorate day (1-28)') |h %> + + + + +% } else { + +% } + + <% mt('Invoice terms') |h %> + + <& /elements/select-terms.html, + 'curr_value' => $cust_main->invoice_terms, + &> - Email invoice - + <% mt('Credit limit') |h %> + + + credit_limit) %><% length($cust_main->credit_limit) ? '' : ' DISABLED' %>> + credit_limit) ? '' : ' CHECKED'%>> <% mt('Unlimited') |h %> + +% if ( $conf->exists('voip-cust_cdr_spools') ) { + + spool_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt('Spool CDRs') |h %> + +% } else { + +% } + +% if ( $conf->exists('voip-cust_cdr_squelch') ) { + + squelch_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt($conf->exists('voip-cdr_email') ? 'Omit CDRs from printed invoices' : 'Omit CDRs from invoices') |h %> + +% } else { + +% } + +% if ( $conf->exists('voip-cust_email_csv_cdr') ) { + + email_csv_cdr eq "Y" ? 'CHECKED' : '' %>> <% mt('Attach CDRs as CSV to emailed invoices') |h %> + +% } else { + +% } + +% if ( $conf->exists('voip-cust_accountcode_cdr') ) { + + + accountcode_cdr eq "Y" ? 'CHECKED' : '' %> + > <% mt('Breakdown CDRs by accountcode') |h %> + +% } else { + +% } + +% if ( $show_term || $cust_main->cdr_termination_percentage ) { + + <% mt('CDR termination settlement') |h %> + % + +% } else { + +% } + +%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, '' +% unless $cust_main->locale && $conf->exists('cust_main-require_locale'); +% my %locale_labels = map { +% my %ll; +% my %info = FS::Locales->locale_info($_); +% $ll{$_} = $info{name} . " (" . $info{country} . ")"; +% %ll; +% } FS::Locales->locales; +% +% my $label = ( $conf->exists('cust_main-require_locale') ? $r : '' ). +% emt('Invoicing locale'); + + <& /elements/tr-select.html, + 'label' => $label, + 'field' => 'locale', + 'options' => \@available_locales, + 'labels' => \%locale_labels, + 'curr_value' => $cust_main->locale, + &> +% } + -
+ <% $r %><% mt('required fields') |h %> +% } + + + +<%once> + +my $paystate_label = FS::Msgcat::_gettext('paystate'); +$paystate_label = 'Bank state' if $paystate_label =~/^paystate$/; + + +<%init> + +my( $cust_main, %options ) = @_; +my @invoicing_list = @{ $options{'invoicing_list'} }; +my $payinfo = $options{'payinfo'}; +my $conf = new FS::Conf; +my $payby_default = $conf->config('payby-default'); + +my @payby = grep /\w/, $conf->config('payby'); +#@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP )) +@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP )) + unless @payby; - <%= $r %> required fields +my $show_term = ''; +if ( $cust_main->custnum ) { + #false laziness w/view/cust_main/billing.html + my $term_sql = "SELECT COUNT(*) FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart ) WHERE custnum = ? AND plan = 'cdr_termination' LIMIT 1"; + my $term_sth = dbh->prepare($term_sql) or die dbh->errstr; + $term_sth->execute($cust_main->custnum) or die $term_sth->errstr; + $show_term = $term_sth->fetchrow_arrayref->[0]; +} -<% } %> +my $agentnum = $cust_main->agentnum if $cust_main->custnum; +