locale/en/locales.pl ausgef<FC>hrt.
[kivitendo-erp.git] / templates / webpages / wh / removal_parts_selection_master.html
1 [% USE HTML %][% USE JavaScript %]<body>
2
3  <form method="post" action="wh.pl">
4
5   <input type="hidden" name="nextsub" value="remove_parts">
6   <input type="hidden" name="warehouse_id" value="[% HTML.escape(warehouse_id) %]">
7
8   <div class="listtop">[% title %]</div>
9
10   <p><translate>Removal from warehouse</translate>: [% warehouse_description %]</p>
11
12   <p>
13    <table>
14     <tr>
15      <td><translate>Select type of removal</translate>:</td>
16      <td>
17       <select name="transfer_type_id">
18        [%- FOREACH type = TRANSFER_TYPES %]<option value="[% HTML.escape(type.id) %]">[% HTML.escape(type.description) %]</option>[% END %]
19       </select>
20      </td>
21     </tr>
22
23     <tr>
24      <td><translate>Optional comment</translate>:</td>
25      <td><input name="comment" size="60"></td>
26     </tr>
27    </table>
28   </p>
29
30   <p>
31    <table>
32     <tr>
33      <th class="listheading"><translate>Bin</translate></th>
34      <th class="listheading"><translate>Part Number</translate></th>
35      <th class="listheading"><translate>Part Description</translate></th>
36      <th class="listheading"><translate>Charge Number</translate></th>
37      <th class="listheading"><translate>Best Before</translate></th>
38      <th class="listheading"><translate>EAN</translate></th>
39      <th class="listheading"><translate>Available qty</translate></th>
40      <th class="listheading"><translate>Removal qty</translate></th>
41     </tr>
42
43     [% FOREACH row = CONTENTS %]
44     <tr class="listrow[% loop.count % 2 %]">
45      <input type="hidden" name="src_bin_id_[% loop.count %]" value="[% HTML.escape(row.binid) %]">
46      <input type="hidden" name="parts_id_[% loop.count %]" value="[% HTML.escape(row.parts_id) %]">
47      <input type="hidden" name="partnumber_[% loop.count %]" value="[% HTML.escape(row.partnumber) %]">
48      <input type="hidden" name="partdescription_[% loop.count %]" value="[% HTML.escape(row.partdescription) %]">
49      <input type="hidden" name="chargenumber_[% loop.count %]" value="[% HTML.escape(row.chargenumber) %]">
50      <input type="hidden" name="bestbefore_[% loop.count %]" value="[% HTML.escape(row.bestbefore) %]">
51      <input type="hidden" name="ean_[% loop.count %]" value="[% HTML.escape(row.ean) %]">
52      <td>[% HTML.escape(row.bindescription) %]</td>
53      <td>[% HTML.escape(row.partnumber) %]</td>
54      <td>[% HTML.escape(row.partdescription) %]</td>
55      <td>[% HTML.escape(row.chargenumber) %]</td>
56      <td>[% HTML.escape(row.bestbefore) %]</td>
57      <td>[% HTML.escape(row.ean) %]</td>
58      <td>[% HTML.escape(row.qty) %]</td>
59      <td>
60       <input name="qty_[% loop.count %]">
61       <select name="unit_[% loop.count %]">
62        [% FOREACH unit = row.UNITS %]<option[% IF unit.selected %] selected[% END %]>[% HTML.escape(unit.name) %]</option>[% END %]
63       </select>
64      </td>
65     </tr>
66
67     [% END %]
68
69     <input type="hidden" name="rowcount" value="[% CONTENTS.size %]">
70
71     <tr><td colspan="7"><hr size="3" noshade></td></tr>
72
73    </table>
74   </p>
75
76   <p>
77    <input type="submit" class="submit" name="action" value="<translate>Continue</translate>">
78   </p>
79  </form>
80
81 </body>
82 </html>