summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2011-12-28 23:33:33 +0000
committerivan <ivan>2011-12-28 23:33:33 +0000
commit40f436877b2334fc2d4fd34c50d54807ae8777af (patch)
tree1e04d8008bbaaf5da83682cbdbd3165c910d09e1 /httemplate
parent2349a9ff617c233bef1f8f7eee0a64ddc21ea25a (diff)
fix bill day selection w/echeck, RT#15763
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/edit/cust_main.cgi2
-rw-r--r--httemplate/edit/cust_main/billing.html21
-rw-r--r--httemplate/edit/cust_main/bottomfixup.js2
3 files changed, 13 insertions, 12 deletions
diff --git a/httemplate/edit/cust_main.cgi b/httemplate/edit/cust_main.cgi
index 218015577..e823f7c93 100755
--- a/httemplate/edit/cust_main.cgi
+++ b/httemplate/edit/cust_main.cgi
@@ -194,7 +194,7 @@ function samechanged(what) {
%# cust_main/bottomfixup.js
% foreach my $hidden (
-% 'payauto',
+% 'payauto', 'billday',
% 'payinfo', 'payinfo1', 'payinfo2', 'payinfo3', 'paytype',
% 'payname', 'paystate', 'exp_month', 'exp_year', 'paycvv',
% 'paystart_month', 'paystart_year', 'payissue',
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 @@
<INPUT TYPE="hidden" NAME="<%$payby%>_payinfo" VALUE="<% $cust_main->paymask %>">
-% 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 )) {
<INPUT TYPE="hidden" NAME="<% $payby.'_'.$field %>" VALUE="<% $cust_main->get($field) %>">
@@ -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').'</TD></TR>'.
%
% ( $conf->exists('cust_main-select-billday') ?
-% qq!<TR><TD ALIGN="RIGHT" id="card_billday" $card_billday_style>
+% qq!<TR><TD ALIGN="RIGHT" id="td_CARD_billday" $card_billday_style>
% Charge on this day of each month</TD><TD> &nbsp;
-% <SELECT id="select_card_billday" $card_billday_select_disabled NAME="billday">!
+% <SELECT id="CARD_billday" $card_billday_select_disabled NAME="CARD_billday">!
% . billday_options($cust_main->billday) . qq!</SELECT> </TD></TR>!
% : ''
% ).
@@ -267,9 +268,9 @@
% emt('Charge future payments to this [_1] automatically','electronic check').'</TD></TR>'.
%
% ( $conf->exists('cust_main-select-billday') ?
-% qq!<TR><TD ALIGN="RIGHT" id="chek_billday" $chek_billday_style>
+% qq!<TR><TD ALIGN="RIGHT" id="td_CHEK_billday" $chek_billday_style>
% Charge on this day of each month</TD><TD> &nbsp;
-% <SELECT id="select_chek_billday" $chek_billday_select_disabled NAME="billday">!
+% <SELECT id="CHEK_billday" $chek_billday_select_disabled NAME="CHEK_billday">!
% . billday_options($cust_main->billday) . qq!</SELECT> </TD></TR>!
% : ''
% ).
diff --git a/httemplate/edit/cust_main/bottomfixup.js b/httemplate/edit/cust_main/bottomfixup.js
index 2f7839a32..a031f46c2 100644
--- a/httemplate/edit/cust_main/bottomfixup.js
+++ b/httemplate/edit/cust_main/bottomfixup.js
@@ -2,7 +2,7 @@ function bottomfixup(what) {
%# ../cust_main.cgi
var layervars = new Array(
- 'payauto',
+ 'payauto', 'billday',
'payinfo', 'payinfo1', 'payinfo2', 'payinfo3', 'paytype',
'payname', 'paystate', 'exp_month', 'exp_year', 'paycvv',
'paystart_month', 'paystart_year', 'payissue',