summaryrefslogtreecommitdiff
path: root/httemplate/search
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/search')
-rw-r--r--httemplate/search/report_cust_pay.html25
1 files changed, 24 insertions, 1 deletions
diff --git a/httemplate/search/report_cust_pay.html b/httemplate/search/report_cust_pay.html
index f9875e20c..a3e43f80a 100644
--- a/httemplate/search/report_cust_pay.html
+++ b/httemplate/search/report_cust_pay.html
@@ -8,7 +8,7 @@
<TR>
<TD ALIGN="right">Payments of type: </TD>
<TD>
- <SELECT NAME="payby">
+ <SELECT NAME="payby" onChange="payby_changed(this)">
<OPTION VALUE="">all</OPTION>
<OPTION VALUE="CARD">credit card (all)</OPTION>
<OPTION VALUE="CARD-VisaMC">credit card (Visa/MasterCard)</OPTION>
@@ -25,6 +25,29 @@
</TD>
</TR>
+ <SCRIPT TYPE="text/javascript">
+
+ function payby_changed(what) {
+ if ( what.options[what.selectedIndex].value == 'BILL' ) {
+ document.getElementById('checkno_caption').style.color = '#000000';
+ what.form.payinfo.disabled = false;
+ what.form.payinfo.style.backgroundColor = '#ffffff';
+ } else {
+ document.getElementById('checkno_caption').style.color = '#bbbbbb';
+ what.form.payinfo.disabled = true;
+ what.form.payinfo.style.backgroundColor = '#dddddd';
+ }
+ }
+
+ </SCRIPT>
+
+ <TR>
+ <TD ALIGN="right"><FONT ID="checkno_caption" COLOR="#bbbbbb">Check #: </FONT></TD>
+ <TD>
+ <INPUT TYPE="text" NAME="payinfo" DISABLED STYLE="background-color: #dddddd">
+ </TD>
+ </TR>
+
<% include( '/elements/tr-select-agent.html',
$cgi->param('agentnum'),
'label' => 'for agent: ',