add "over X days" option to receivables report
[freeside.git] / httemplate / search / report_receivables.html
1 <% include('/elements/header.html', 'Accounts Receivable Aging Summary' ) %>
2
3     <FORM ACTION="report_receivables.cgi" METHOD="GET">
4
5     <TABLE>
6
7       <% include( '/elements/tr-select-agent.html' ) %>
8
9       <TR>
10         <TD ALIGN="right">Over </TD>
11         <TD><INPUT NAME="days" TYPE="text" SIZE=4 MAXLENGTH=3> days</TD>
12       </TR>
13
14     </TABLE>
15
16     <BR><INPUT TYPE="submit" VALUE="Get Report">
17     </FORM>
18
19   </BODY>
20 </HTML>
21 <%init>
22
23 die "access denied"
24   unless $FS::CurrentUser::CurrentUser->access_right('Financial reports');
25
26 </%init>