------------------------------------------------------------------------
[kivitendo-erp.git] / templates / webpages / do / stock_out_form_de.html
1 [% USE HTML %][% USE LxERP %]<body>
2
3  [%- IF delivered %]
4  [%- SET RO = ' readonly' %]
5  [%- END %]
6
7  <style type="text/css">
8   .tr_error {
9     background-color: #ffc9c9;
10   }
11  </style>
12
13  <form method="post" action="do.pl" name="Form">
14
15   <div class="listtop">[% title %]</div>
16
17   [%- IF ERRORS && ERRORS.size %]
18   <p><font color="#ff0000">[% ERRORS.join('<br>') %]</font></p>
19   [%- END %]
20
21   <p>
22    <table>
23     <tr>
24      <td>Artikelnummer</td>
25      <td>[% HTML.escape(PART_INFO.partnumber) %]</td>
26     </tr>
27     <tr>
28      <td>Beschreibung</td>
29      <td>[% HTML.escape(PART_INFO.description) %]</td>
30     </tr>
31     <tr>
32      <td>Menge laut Lieferschein</td>
33      <td>[% HTML.escape(do_qty) %] [% HTML.escape(do_unit) %]</td>
34     </tr>
35    </table>
36   </p>
37
38   [%- UNLESS WHCONTENTS.size %]
39   <p>Dieser Artikel ist nicht eingelagert.</p>
40
41   <p><button type="button" onclick="window.close()">Fenster Schlie&szlig;en</button></p>
42
43   [%- ELSE %]
44
45   <input type="hidden" name="nextsub"   value="set_stock_out">
46   <input type="hidden" name="rowcount"  value="[% HTML.escape(WHCONTENTS.size) %]">
47   <input type="hidden" name="in_out"    value="out">
48   <input type="hidden" name="parts_id"  value="[% HTML.escape(parts_id) %]">
49   <input type="hidden" name="partunit"  value="[% HTML.escape(PART_INFO.unit) %]">
50   <input type="hidden" name="do_qty"    value="[% HTML.escape(do_qty) %]">
51   <input type="hidden" name="do_unit"   value="[% HTML.escape(do_unit) %]">
52   <input type="hidden" name="row"       value="[% HTML.escape(row) %]">
53   <input type="hidden" name="closed"    value="[% HTML.escape(closed) %]">
54   <input type="hidden" name="delivered" value="[% HTML.escape(delivered) %]">
55
56   <p>
57    <table>
58     <tr class="listheading">
59      <th class="listheading">&nbsp;</th>
60      <th class="listheading">Lager</th>
61      <th class="listheading">Lagerplatz</th>
62      <th class="listheading">Chargennummer</th>
63      [%- UNLESS delivered %]
64      <th align="right" class="listheading">Lagerbestand</th>
65      [%- END %]
66      <th align="right" class="listheading">Menge</th>
67      <th align="right" class="listheading">Einheit</th>
68     </tr>
69
70     [%- FOREACH row = WHCONTENTS %]
71     <tr [% IF row.stock_error %] class="tr_error"[% ELSE %]class="listrow[% loop.count % 2 %]"[% END %]>
72      <td>[% loop.count %]</td>
73      <td>[% HTML.escape(row.warehousedescription) %]</td>
74      <td>[% HTML.escape(row.bindescription) %]</td>
75      <td>[% HTML.escape(row.chargenumber) %]</td>
76
77      [%- IF delivered %]
78
79      <td>[% HTML.escape(LxERP.format_amount(row.stock_qty)) %]</td>
80      <td>[% HTML.escape(row.stock_unit) %]</td>
81
82      [%- ELSE %]
83
84      <td>[% HTML.escape(row.available_qty) %]</td>
85      <td><input name="qty_[% loop.count %]" style="text-align: right;" size="12"
86                 value="[% IF row.stock_qty %][% HTML.escape(LxERP.format_amount(row.stock_qty)) %][% END %]"></td>
87      <td>
88       <select name="unit_[% loop.count %]">
89        [%- FOREACH unit = UNITS %]
90        <option[% IF unit.name == row.stock_unit %] selected[% END %]>[% HTML.escape(unit.name) %]</option>
91        [%- END %]
92       </select>
93      </td>
94
95      [%- END %]
96     </tr>
97
98     <input type="hidden" name="warehouse_id_[% loop.count %]" value="[% HTML.escape(row.warehouse_id) %]">
99     <input type="hidden" name="bin_id_[% loop.count %]"       value="[% HTML.escape(row.bin_id) %]">
100     <input type="hidden" name="chargenumber_[% loop.count %]" value="[% HTML.escape(row.chargenumber) %]">
101     [%- END %]
102    </table>
103   </p>
104
105   <hr size="3" noshade>
106
107   <p>
108    [%- IF delivered %]
109    <button type="button" class="submit" name="action" onclick="window.close()">Fenster Schlie&szlig;en</button>
110    [%- ELSE %]
111    <input class="submit" type="submit" name="action" value="Weiter">
112    [%- END %]
113   </p>
114
115   [%- END %]
116  </form>
117
118 </body>
119 </html>
120