</body> entfernt
[kivitendo-erp.git] / templates / webpages / wh / journal_filter.html
1 [%- USE T8 %]
2 [%- USE L %]
3 [%- USE HTML %][%- USE JavaScript %]
4 <body onload="on_load();">
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 on_load() {
62         warehouse_selected(0, 0);
63         document.Form.partnumber.focus();
64       }
65      -->
66  </script>
67
68  <div class="listtop">[% 'Report about warehouse transactions' | $T8 %]</div>
69
70  <form method="post" name="Form" action="wh.pl">
71
72   <input type="hidden" name="nextsub" value="generate_journal">
73
74   <p>
75    <table>
76     <tr>
77      <th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Filter' | $T8 %]</th>
78     </tr>
79
80     <tr>
81      <td>
82       <table>
83        <tr>
84         <th align="right" nowrap>[% 'Warehouse' | $T8 %]:</th>
85         <td>
86          <select name="warehouse_id" id="warehouse_id" onchange="warehouse_selected(warehouses[this.selectedIndex]['id'], 0)">
87           <option value="">---</option>
88           [%- FOREACH warehouse = WAREHOUSES %]
89           <option value="[% HTML.escape(warehouse.id) %]">[% warehouse.description %]</option>
90           [%- END %]
91          </select>
92         </td>
93        </tr>
94        <tr>
95         <th align="right" nowrap>[% 'Bin' | $T8 %]:</th>
96         <td><select name="bin_id" id="bin_id"></select></td>
97        </tr>
98        <tr>
99         <th align="right" nowrap>[% 'Part Number' | $T8 %]:</th>
100         <td><input name="partnumber" id="partnumber" size=20></td>
101        </tr>
102        <tr>
103         <th align="right" nowrap>[% 'Part Description' | $T8 %]:</th>
104         <td><input name="description" size=40></td>
105        </tr>
106        <tr>
107         <th align="right" nowrap>[% 'Charge Number' | $T8 %]:</th>
108         <td><input name="chargenumber" size=40></td>
109        </tr>
110        [% IF conf_show_best_before %]
111        <tr>
112         <th align="right" nowrap>[% 'Best Before' | $T8 %]:</th>
113         <td>
114           [% L.date_tag('bestbefore') %]
115         </td>
116        </tr>
117        [% END %]
118        <tr>
119         <th align="right" nowrap>[% 'Transfer Quantity' | $T8 %]:</th>
120         <td>
121          <select name="qty_op">
122           <option value="dontcare">---</option>
123           <option value="atleast">[% 'At least' | $T8 %]</option>
124           <option value="atmost">[% 'At most' | $T8 %]</option>
125           <option value="exact">[% 'Exact' | $T8 %]</option>
126          </select>
127          <input name="qty">
128          <select name="qty_unit">
129           [%- FOREACH unit = UNITS %]<option>[% unit.name %]</option>[% END %]
130          </select>
131         </td>
132        </tr>
133        <tr>
134         <th align="right" nowrap>[% 'From Date' | $T8 %]</th>
135         <td>
136           [% L.date_tag('fromdate') %]
137         </td>
138        </tr>
139        <tr>
140         <th align="right">[% 'To Date' | $T8 %]</th>
141         <td>
142           [% L.date_tag('todate') %]
143         </td>
144        </tr>
145       </table>
146      </td>
147     </tr>
148
149     <tr height="5"><td>&nbsp;</td></tr>
150
151     <tr>
152      <th class="listheading" align="left" valign="top" colspan="6" nowrap>[% 'Include in Report' | $T8 %]</th>
153     </tr>
154
155     <tr>
156      <td>
157       <table>
158        <tr>
159         <td><input name="l_partdescription" id="l_partdescription" class="checkbox" type="hidden" value="Y" checked></td>
160         <td nowrap><label for="l_partdescription">[% 'Part Description' | $T8 %]</label></td>
161         <td><input name="l_qty" id="l_qty" class="checkbox" type="hidden" value="Y" checked></td>
162         <td nowrap><label for="l_qty">[% 'Quantity' | $T8 %]</label></td>
163        </tr>
164        <tr>
165         <td align="right"><input name="l_date" id="l_date" class="checkbox" type="checkbox" value="Y" checked></td>
166         <td nowrap><label for="l_date">[% 'Date' | $T8 %]</label></td>
167         <td align="right"><input name="l_partnumber" id="l_partnumber" class="checkbox" type="checkbox" value="Y" checked></td>
168         <td nowrap><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td>
169         <td align="right"><input name="l_chargenumber" id="l_chargenumber" class="checkbox" type="checkbox" value="Y" checked></td>
170         <td nowrap><label for="l_chargenumber">[% 'Charge Number' | $T8 %]</label></td>
171         [% IF conf_show_best_before %]
172         <td align="right"><input name="l_bestbefore" id="l_bestbefore" class="checkbox" type="checkbox" value="Y" checked></td>
173         <td nowrap><label for="l_bestbefore">[% 'Best Before' | $T8 %]</label></td>
174         [% END %]
175        </tr>
176        <tr>
177         <td align="right"><input name="l_trans_id" id="l_trans_id" class="checkbox" type="checkbox" value="Y"></td>
178         <td nowrap><label for="l_trans_id">[% 'Trans Id' | $T8 %]</label></td>
179         <td align="right"><input name="l_trans_type" id="l_trans_type" class="checkbox" type="checkbox" value="Y" checked></td>
180         <td nowrap><label for="l_trans_type">[% 'Trans Type' | $T8 %]</label></td>
181         <td align="right"><input name="l_comment" id="l_comment" class="checkbox" type="checkbox" value="Y"></td>
182         <td nowrap><label for="l_comment">[% 'Comment' | $T8 %]</label></td>
183        </tr>
184        <tr>
185         <td align="right"><input name="l_warehouse_from" id="l_warehouse_from" class="checkbox" type="checkbox" value="Y" checked></td>
186         <td nowrap><label for="l_warehouse_from">[% 'Warehouse From' | $T8 %]</label></td>
187         <td align="right"><input name="l_bin_from" id="l_bin_from" class="checkbox" type="checkbox" value="Y" checked></td>
188         <td nowrap><label for="l_bin_from">[% 'Bin From' | $T8 %]</label></td>
189         <td align="right"><input name="l_warehouse_to" id="l_warehouse_to" class="checkbox" type="checkbox" value="Y" checked></td>
190         <td nowrap><label for="l_warehouse_to">[% 'Warehouse To' | $T8 %]</label></td>
191         <td align="right"><input name="l_bin_to" id="l_bin_to" class="checkbox" type="checkbox" value="Y" checked></td>
192         <td nowrap><label for="l_bin_to">[% 'Bin To' | $T8 %]</label></td>
193        </tr>
194        <tr>
195         <td align="right"><input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y"></td>
196         <td nowrap><label for="l_employee">[% 'Employee' | $T8 %]</label></td>
197         <td align="right"><input name="l_oe_id" id="l_oe_id" class="checkbox" type="checkbox" value="Y"></td>
198         <td nowrap><label for="l_oe_id">[% 'Document' | $T8 %]</label></td>
199         <td align="right"><input name="l_projectnumber" id="l_projectnumber" class="checkbox" type="checkbox" value="Y" checked></td>
200         <td nowrap><label for="l_projectnumber">[% 'Project Number' | $T8 %]</label></td>
201        </tr>
202       </table>
203      </td>
204     </tr>
205    </table>
206   </p>
207
208   <p>
209    <input type="submit" class="submit" name="action" value="[% 'Continue' | $T8 %]">
210   </p>
211  </form>
212