epic-ts
[kivitendo-erp.git] / templates / webpages / wh / report_filter.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE HTML %][%- USE JavaScript %]
4 <h1>[% 'Report about warehouse contents' | $T8 %]</h1>
5
6  <script type="text/javascript">
7    <!--
8       warehouses = new Array();
9       warehouses[0] = new Array();
10       warehouses[0]['id'] = "0";
11       warehouses[0]['bins'] = new Array();
12       warehouses[0]['bins'][0] = new Array();
13       warehouses[0]['bins'][0]['description'] = "---";
14       warehouses[0]['bins'][0]['id'] = "";
15       [%- USE WAREHOUSES_it = Iterator(WAREHOUSES) %][%- FOREACH warehouse = WAREHOUSES_it %]
16       warehouses[[% WAREHOUSES_it.count %]] = new Array();
17       warehouses[[% WAREHOUSES_it.count %]]['id'] = [% warehouse.id %];
18       warehouses[[% WAREHOUSES_it.count %]]['bins'] = new Array();
19       warehouses[[% WAREHOUSES_it.count %]]['bins'][0] = new Array();
20       warehouses[[% WAREHOUSES_it.count %]]['bins'][0]['description'] = "---";
21       warehouses[[% WAREHOUSES_it.count %]]['bins'][0]['id'] = "";
22       [% USE BINS_it = Iterator(warehouse.BINS) %][% FOREACH bin = BINS_it %]
23       warehouses[[% WAREHOUSES_it.count %]]['bins'][[% BINS_it.count %]] = new Array();
24       warehouses[[% WAREHOUSES_it.count %]]['bins'][[% BINS_it.count %]]['description'] = "[% JavaScript.escape(bin.description) %]";
25       warehouses[[% WAREHOUSES_it.count %]]['bins'][[% BINS_it.count %]]['id'] = [% bin.id %];
26       [% END %]
27       [% END %]
28
29       function warehouse_selected(warehouse_id, bin_id) {
30         var control = document.getElementById("bin_id");
31
32         for (var i = control.options.length - 1; i >= 0; i--) {
33           control.options[i] = null;
34         }
35
36         var warehouse_index = 0;
37
38         for (i = 0; i < warehouses.length; i++)
39           if (warehouses[i]['id'] == warehouse_id) {
40             warehouse_index = i;
41             break;
42           }
43
44         var warehouse = warehouses[warehouse_index];
45         var bin_index = 0;
46
47         for (i = 0; i < warehouse['bins'].length; i++)
48           if (warehouse['bins'][i]['id'] == bin_id) {
49             bin_index = i;
50             break;
51           }
52
53         for (i = 0; i < warehouse['bins'].length; i++) {
54           control.options[i] = new Option(warehouse['bins'][i]['description'], warehouse['bins'][i]['id']);
55         }
56
57
58         control.options[bin_index].selected = true;
59       }
60
61       $(function () {
62         warehouse_selected(0, 0);
63         document.Form.partnumber.focus();
64       });
65      -->
66  </script>
67
68  <form method="post" name="Form" action="wh.pl">
69
70   <input type="hidden" name="nextsub" value="generate_report">
71
72   <p>
73    <table>
74     <tr>
75      <th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Filter' | $T8 %]</th>
76     </tr>
77
78     <tr>
79      <td>
80       <table>
81        <tr>
82         <th align="right" nowrap>[% 'Warehouse' | $T8 %]:</th>
83         <td>
84          <select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
85           <option value="">---</option>
86           [%- FOREACH warehouse = WAREHOUSES %]
87           <option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
88           [%- END %]
89          </select>
90         </td>
91        </tr>
92        <tr>
93         <th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
94         <td><select name="bin_id" id="bin_id"></select></td>
95        </tr>
96        <tr>
97         <th align="right" nowrap>[% 'Part Number' | $T8 %]:</th>
98         <td><input name="partnumber" size=20></td>
99        </tr>
100        <tr>
101         <th align="right" nowrap>[% 'Part Description' | $T8 %]:</th>
102         <td><input name="description" size=40></td>
103        </tr>
104        <tr>
105         <th align="right" nowrap>[% 'Charge Number' | $T8 %]:</th>
106         <td><input name="chargenumber" size=40></td>
107        </tr>
108        [% IF INSTANCE_CONF.get_show_bestbefore %]
109        <tr>
110         <th align="right" nowrap>[% 'Best Before' | $T8 %]:</th>
111         <td>
112           [% L.date_tag('bestbefore') %]
113         </td>
114        </tr>
115        [% END %]
116        <tr>
117         <th align="right" nowrap>[% 'Qty in stock' | $T8 %]:</th>
118         <td>
119          <select name="qty_op">
120           <option value="dontcare">---</option>
121           <option value="atleast">[% 'At least' | $T8 %]</option>
122           <option value="atmost">[% 'At most' | $T8 %]</option>
123           <option value="exact">[% 'Exact' | $T8 %]</option>
124          </select>
125          <input name="qty">
126          <select name="qty_unit">
127           [%- FOREACH unit = UNITS %]<option>[% unit.name %]</option>[% END %]
128          </select>
129         </td>
130        </tr>
131         <th align="right" nowrap>[% 'Stock Qty for Date' | $T8 %]:</th>
132         <td>[% L.date_tag('date') %]</td>
133        <tr>
134        </tr>
135       </table>
136      </td>
137     </tr>
138
139     <tr height="5"><td>&nbsp;</td></tr>
140
141     <tr>
142      <th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Include in Report' | $T8 %]</th>
143     </tr>
144
145     <tr>
146      <td>
147       <input name="l_partdescription" type="hidden" value="Y">
148       <input name="l_qty" type="hidden" value="Y">
149
150       <table>
151        <tr>
152         <td align="right"><input name="l_warehousedescription" id="l_warehousedescription" class="checkbox" type="checkbox" value="Y" checked></td>
153         <td nowrap><label for="l_warehousedescription">[% 'Warehouse' | $T8 %]</label></td>
154         <td align="right"><input name="l_bindescription" id="l_bindescription" class="checkbox" type="checkbox" value="Y" checked></td>
155         <td nowrap><label for="l_bindescription">[% 'Bin' | $T8 %]</label></td>
156        </tr>
157
158        <tr>
159         <td align="right"><input name="l_partnumber" id="l_partnumber" class="checkbox" type="checkbox" value="Y" checked></td>
160         <td nowrap><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td>
161         <td align="right"><input name="l_chargenumber" id="l_chargenumber" class="checkbox" type="checkbox" value="Y" checked></td>
162         <td nowrap><label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label></td>
163         [% IF INSTANCE_CONF.get_show_bestbefore %]
164         <td align="right"><input name="l_bestbefore" id="l_bestbefore" class="checkbox" type="checkbox" value="Y" checked></td>
165         <td nowrap><label for="l_bestbefore">[% 'Best Before' | $T8 %]</label></td>
166         [% END %]
167        </tr>
168
169        <tr><td colspan="4"><hr noshade height="1"></td></tr>
170
171        <tr>
172         <td align="right"><input name="subtotal" id="subtotal" class="checkbox" type="checkbox" value="Y"></td>
173         <td nowrap><label for="subtotal">[% 'Subtotal' | $T8 %]</label></td>
174         <td align="right"><input name="include_empty_bins" id="include_empty_bins" class="checkbox" type="checkbox" value="Y"></td>
175         <td nowrap><label for="include_empty_bins">[% 'Include empty bins' | $T8 %]</label></td>
176         <td align="right"><input name="include_invalid_warehouses" id="include_invalid_warehouses" class="checkbox" type="checkbox" value="Y"></td>
177         <td nowrap><label for="include_invalid_warehouses">[% 'Include invalid warehouses ' | $T8 %]</label></td>
178        </tr>
179
180        <tr>
181         <td align="right"><input name="l_stock_value" id="l_stock_value" class="checkbox" type="checkbox" value="Y"></td>
182         <td nowrap><label for="l_stock_value">[% 'Stock value' | $T8 %]</label></td>
183        </tr>
184
185       </table>
186      </td>
187     </tr>
188    </table>
189   </p>
190
191   <p>
192    <input type="submit" class="submit" name="action" value="[% 'Continue' | $T8 %]">
193   </p>
194  </form>
195