Merge branch 'master' of ssh://git-mbunkus@lx-office.linet-services.de/~/lx-office-erp
[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                 [%- IF row.stock_qty %]
87                 value="[% HTML.escape(LxERP.format_amount(row.stock_qty)) %]"
88                 [%- ELSIF ((WHCONTENTS.size == 1) && (!row.stock_qty)) %]
89                 value="[% HTML.escape(do_qty) %]"
90                 [%- END %]
91                 ></td>
92      <td>
93       <select name="unit_[% loop.count %]">
94        [%- FOREACH unit = UNITS %]
95        <option[% IF unit.name == row.stock_unit %] selected[% END %]>[% HTML.escape(unit.name) %]</option>
96        [%- END %]
97       </select>
98      </td>
99
100      [%- END %]
101     </tr>
102
103     <input type="hidden" name="warehouse_id_[% loop.count %]" value="[% HTML.escape(row.warehouse_id) %]">
104     <input type="hidden" name="bin_id_[% loop.count %]"       value="[% HTML.escape(row.bin_id) %]">
105     <input type="hidden" name="chargenumber_[% loop.count %]" value="[% HTML.escape(row.chargenumber) %]">
106     [%- END %]
107    </table>
108   </p>
109
110   <hr size="3" noshade>
111
112   <p>
113    [%- IF delivered %]
114    <button type="button" class="submit" name="action" onclick="window.close()">Fenster Schlie&szlig;en</button>
115    [%- ELSE %]
116    <input class="submit" type="submit" name="action" value="Weiter">
117    [%- END %]
118   </p>
119
120   [%- END %]
121  </form>
122
123 </body>
124 </html>
125