2 [%- USE HTML %][%- USE LxERP %]
6 [%- SET RO = ' readonly' %]
9 <style type="text/css">
11 background-color: #ffc9c9;
15 <form method="post" action="do.pl" name="Form">
17 [%- IF ERRORS && ERRORS.size %]
18 <p><font color="#ff0000">[% ERRORS.join('<br>') %]</font></p>
24 <td>[% 'Part Number' | $T8 %]</td>
25 <td>[% HTML.escape(PART_INFO.partnumber) %]</td>
28 <td>[% 'Description' | $T8 %]</td>
29 <td>[% HTML.escape(PART_INFO.description) %]</td>
32 <td>[% 'Qty according to delivery order' | $T8 %]</td>
33 <td>[% HTML.escape(do_qty) %] [% HTML.escape(do_unit) %]</td>
38 [%- UNLESS WHCONTENTS.size %]
39 <p>[% 'There are no items in stock.' | $T8 %]</p>
41 <p><button type="button" onclick="window.close()">[% 'Close Window' | $T8 %]</button></p>
43 <script type="text/javascript">
46 $(window.opener.document.getElementsByName("stock_out_[% HTML.escape(row) %]")).val("");
53 <input type="hidden" name="nextsub" value="set_stock_out">
54 <input type="hidden" name="rowcount" value="[% HTML.escape(WHCONTENTS.size) %]">
55 <input type="hidden" name="in_out" value="out">
56 <input type="hidden" name="parts_id" value="[% HTML.escape(parts_id) %]">
57 <input type="hidden" name="partunit" value="[% HTML.escape(PART_INFO.unit) %]">
58 <input type="hidden" name="do_qty" value="[% HTML.escape(do_qty) %]">
59 <input type="hidden" name="do_unit" value="[% HTML.escape(do_unit) %]">
60 <input type="hidden" name="row" value="[% HTML.escape(row) %]">
61 <input type="hidden" name="closed" value="[% HTML.escape(closed) %]">
62 <input type="hidden" name="delivered" value="[% HTML.escape(delivered) %]">
66 <tr class="listheading">
67 <th class="listheading"> </th>
68 <th class="listheading">[% 'Warehouse' | $T8 %]</th>
69 <th class="listheading">[% 'Bin' | $T8 %]</th>
70 <th class="listheading">[% 'Charge Number' | $T8 %]</th>
71 [% IF INSTANCE_CONF.get_show_bestbefore %]
72 <th class="listheading">[% 'Best Before' | $T8 %]</th>
74 [%- UNLESS delivered %]
75 <th align="right" class="listheading">[% 'Available qty' | $T8 %]</th>
77 <th align="right" class="listheading">[% 'Qty' | $T8 %]</th>
78 <th align="right" class="listheading">[% 'Unit' | $T8 %]</th>
81 [%- FOREACH row = WHCONTENTS %]
82 <tr [% IF row.stock_error %] class="tr_error"[% ELSE %]class="listrow[% loop.count % 2 %]"[% END %]>
83 <td>[% loop.count %]</td>
84 <td>[% HTML.escape(row.warehousedescription) %]</td>
85 <td>[% HTML.escape(row.bindescription) %]</td>
86 <td>[% HTML.escape(row.chargenumber) %]</td>
87 [% IF INSTANCE_CONF.get_show_bestbefore %]
88 <td>[% HTML.escape(row.bestbefore) %]</td>
92 <td>[% HTML.escape(LxERP.format_amount(row.stock_qty)) %]</td>
93 <td>[% HTML.escape(row.stock_unit) %]</td>
97 <td>[% HTML.escape(row.available_qty) %]</td>
98 <td><input name="qty_[% loop.count %]" style="text-align: right;" size="12"
99 [%- IF row.stock_qty %]
100 value="[% HTML.escape(LxERP.format_amount(row.stock_qty)) %]"
101 [%- ELSIF ((WHCONTENTS.size == 1) && (!row.stock_qty)) %]
102 value="[% HTML.escape(do_qty) %]"
106 <select name="unit_[% loop.count %]">
107 [%- FOREACH unit = UNITS %]
108 <option[% IF unit.name == row.stock_unit %] selected[% END %]>[% HTML.escape(unit.name) %]</option>
116 <input type="hidden" name="warehouse_id_[% loop.count %]" value="[% HTML.escape(row.warehouse_id) %]">
117 <input type="hidden" name="bin_id_[% loop.count %]" value="[% HTML.escape(row.bin_id) %]">
118 <input type="hidden" name="chargenumber_[% loop.count %]" value="[% HTML.escape(row.chargenumber) %]">
119 <input type="hidden" name="delivery_order_items_stock_id_[% loop.count %]" value="[% HTML.escape(row.stock_delivery_order_items_stock_id) %]">
120 [% IF INSTANCE_CONF.get_show_bestbefore %]
121 <input type="hidden" name="bestbefore_[% loop.count %]" value="[% HTML.escape(row.bestbefore) %]">
127 <hr size="3" noshade>
131 <button type="button" class="submit" name="action" onclick="window.close()">[% 'Close Window' | $T8 %]</button>
133 <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">