blob: d9aada5f4afac6ac04bf384617281099c58e0efb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<%= include('/elements/header.html', 'Packages' ) %>
<FORM ACTION="cust_pkg.cgi" METHOD="GET">
<INPUT TYPE="hidden" NAME="magic" VALUE="bill">
Return packages with next bill date:
<BR><BR>
<TABLE>
<%= include( '/elements/tr-input-beginning_ending.html' ) %>
<%= include( '/elements/tr-select-agent.html',
$cgi->param('agentnum'),
)
%>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<%= include('/elements/footer.html') %>
|