diff options
author | ivan <ivan> | 2007-11-09 03:12:24 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-11-09 03:12:24 +0000 |
commit | f30ed1be7dccd91667712e586c517db6ab8f5b9d (patch) | |
tree | 1063b894fe9e2243e621b92a867bddb5a9f9c20c /httemplate/search/report_receivables.html | |
parent | 490dabbf104bcb716f26dd21dbff49c2738eedb8 (diff) |
add option for listing customers without a balance (closes: RT#2752) and fix bug in total row (closes: RT#2736)
Diffstat (limited to 'httemplate/search/report_receivables.html')
-rwxr-xr-x | httemplate/search/report_receivables.html | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/httemplate/search/report_receivables.html b/httemplate/search/report_receivables.html index bb23f1f87..56097534f 100755 --- a/httemplate/search/report_receivables.html +++ b/httemplate/search/report_receivables.html @@ -1,23 +1,32 @@ <% include('/elements/header.html', 'Accounts Receivable Aging Summary' ) %> - <FORM ACTION="report_receivables.cgi" METHOD="GET"> +<FORM NAME="OneTrueForm" ACTION="report_receivables.cgi" METHOD="GET"> - <TABLE> +<TABLE BGCOLOR="#cccccc" CELLSPACING=0> - <% include( '/elements/tr-select-agent.html' ) %> + <TR> + <TH BGCOLOR="#e8e8e8" COLSPAN=2 ALIGN="left"> + <FONT SIZE="+1">Search options</FONT> + </TH> + </TR> - <TR> - <TD ALIGN="right">Over </TD> - <TD><INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3> days</TD> - </TR> + <% include( '/elements/tr-select-agent.html' ) %> + + <TR> + <TD ALIGN="right">Customers</TD> + <TD> + <INPUT TYPE="radio" NAME="all_customers" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.days.disabled=true; } else { document.OneTrueForm.days.disabled=false; }">All customers (even those without an outstanding balance)<BR> + <INPUT TYPE="radio" NAME="all_customers" VALUE="0" CHECKED onClick="if (this.checked) { document.OneTrueForm.days.disabled=false; } else { document.OneTrueForm.days.disabled=true; }">Customers with a balance over <INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3 VALUE="0"> days old + </TD> + </TR> - </TABLE> +</TABLE> - <BR><INPUT TYPE="submit" VALUE="Get Report"> - </FORM> +<BR><INPUT TYPE="submit" VALUE="Get Report"> +</FORM> + +<% include('/elements/footer.html') %> - </BODY> -</HTML> <%init> die "access denied" |