diff options
author | ivan <ivan> | 2006-05-02 15:03:00 +0000 |
---|---|---|
committer | ivan <ivan> | 2006-05-02 15:03:00 +0000 |
commit | 0e2bb254c0e5018b6b2a7766962319cd4137683f (patch) | |
tree | b512097d253743add178caf533c3b8c7aa483cff | |
parent | ecc090b960f14a68a51bc966113ab4e0feeb38cf (diff) |
add an agent pre-selection page to receivables report
-rw-r--r-- | httemplate/index.html | 2 | ||||
-rwxr-xr-x | httemplate/search/report_receivables.html | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/httemplate/index.html b/httemplate/index.html index 4704ebe33..1a9293ecd 100644 --- a/httemplate/index.html +++ b/httemplate/index.html @@ -98,7 +98,7 @@ <A HREF="search/report_cust_pay.html">Payment report (by type and/or date range)</A> <BR><BR><A HREF="search/report_cust_credit.html">Credit report (by employee and/or date range)</A> <BR><BR><A HREF="graph/report_money_time.html">Sales, Credits and Receipts Summary</A> - <BR><BR><A HREF="search/report_receivables.cgi">Accounts Receivable Aging Summary</A> + <BR><BR><A HREF="search/report_receivables.html">Accounts Receivable Aging Summary</A> <BR><BR><A HREF="search/report_prepaid_income.html">Prepaid Income (Unearned Revenue) Report</A> <BR><BR><A HREF="search/report_tax.html">Sales Tax Liability Report</A> <BR><BR> diff --git a/httemplate/search/report_receivables.html b/httemplate/search/report_receivables.html new file mode 100755 index 000000000..fc5174116 --- /dev/null +++ b/httemplate/search/report_receivables.html @@ -0,0 +1,16 @@ +<%= include('/elements/header.html', 'Accounts Receivable Aging Summary' ) %> + + <FORM ACTION="report_receivables.cgi" METHOD="GET"> + + <TABLE> + + <%= include( '/elements/tr-select-agent.html' ) %> + + </TABLE> + + <BR><INPUT TYPE="submit" VALUE="Get Report"> + </FORM> + + </BODY> +</HTML> + |