blob: d0b3667c8b4bbf117ec4ec53fac3fc25cb5c0d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<% include('/elements/header.html', 'Inventory Activity Report') %>
<FORM ACTION="h_inventory_item.html" METHOD="GET">
<TABLE BGCOLOR="#cccccc" CELLSPACING="0">
<TR>
<TD ALIGN="right">Inventory class: </TD>
<TD><% include('/elements/select-table.html',
'element_name' => 'classnum',
'table' => 'inventory_class',
'name_col' => 'classname',
'value' => '',
'empty_label' => '(all)') %></TD>
</TR>
<TR>
<TD ALIGN="right">Time period: </TD>
<TD><% include('/elements/select-month_year.html') %></TD>
</TR>
<% include('/elements/tr-select-agent.html') %>
</TABLE>
<BR>
<INPUT TYPE="submit" VALUE="Get Report">
</FORM>
<%init>
</%init>
|