X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fcust_main%2Fbilling.html;h=fd078c5daa4491bfc56a7f52bb24c664471c6a63;hp=7f7a232840abb7766ecca6831c76bb3dded4c116;hb=9ad2437e1cfaffceb657216a48ea3c7cc9414922;hpb=c507a3d05881888d1181eac9f128b391b6ce3d19 diff --git a/httemplate/edit/cust_main/billing.html b/httemplate/edit/cust_main/billing.html index 7f7a23284..fd078c5da 100644 --- a/httemplate/edit/cust_main/billing.html +++ b/httemplate/edit/cust_main/billing.html @@ -6,7 +6,7 @@ -% foreach my $field (qw( payname paycvv paystart_month paystart_year payissue payip paytype paystate )) { +% foreach my $field (qw( payname paycvv paystart_month paystart_year payissue payip paytype paystate billday )) { @@ -103,9 +103,9 @@ } function payauto_changed(payauto_field){ - var span = (payauto_field.name == 'CARD_payauto') ? 'card_billday' : 'chek_billday'; - var select = document.getElementById('select_'+span); - span = document.getElementById(span); + 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'; @@ -114,7 +114,7 @@ else { span.style.color = '#999999'; select.disabled = true; - select.selectedIndex = 0; + //why? select.selectedIndex = 0; } } @@ -126,7 +126,8 @@ % my $paytype = $cust_main->paytype; % my( $account, $aba ) = split('@', $payinfo); % my $branch = ''; -% ($branch,$aba) = split('\.',$aba) if $conf->exists('cust_main-require-bank-branch'); +% ($branch,$aba) = split('\.',$aba) +% if $conf->exists('cust_main-require-bank-branch'); % % my $disabled = 'DISABLED style="background-color: #dddddd"'; % my $text_disabled = 'style="color: #999999"'; @@ -215,9 +216,9 @@ % emt('Charge future payments to this [_1] automatically','credit card').''. % % ( $conf->exists('cust_main-select-billday') ? -% qq! +% qq! % Charge on this day of each month   -% ! % . billday_options($cust_main->billday) . qq! ! % : '' % ). @@ -267,9 +268,9 @@ % emt('Charge future payments to this [_1] automatically','electronic check').''. % % ( $conf->exists('cust_main-select-billday') ? -% qq! +% qq! % Charge on this day of each month   -% ! % . billday_options($cust_main->billday) . qq! ! % : '' % ).