5 <form method="post" action="ic.pl">
7 <input type="hidden" name="title" value="[% 'Update prices' | $T8 %]">
9 <div class="listtop">[% 'Update prices' | $T8 %]</div>
14 <th align="right" nowrap>[% 'Part Number' | $T8 %]</th>
15 <td><input name="partnumber" size="20"></td>
19 <th align="right" nowrap>[% 'Part Description' | $T8 %]</th>
20 <td colspan="3"><input name="description" size="20"></td>
24 <th align="right" nowrap>[% 'Group' | $T8 %]</th>
25 <td><input name="partsgroup" size="20"></td>
26 <th align="right" nowrap>[% 'Serial Number' | $T8 %]</th>
27 <td><input name="serialnumber" size="20"></td>
31 <th align="right" nowrap>[% 'Make' | $T8 %]</th>
32 <td><input name="make" size="20"></td>
33 <th align="right" nowrap>[% 'Model' | $T8 %]</th>
34 <td><input name="model" size="20"></td>
38 <th align="right" nowrap>[% 'Drawing' | $T8 %]</th>
39 <td><input name="drawing" size="20"></td>
40 <th align="right" nowrap>[% 'Microfiche' | $T8 %]</th>
41 <td><input name="microfiche" size="20"></td>
47 <input name="itemstatus" id="itemstatus_active" class="radio" type="radio" value="active" checked>
48 <label for="itemstatus_active">[% 'Active' | $T8 %]</label>
49 <input name="itemstatus" id="itemstatus_onhand" class="radio" type="radio" value="onhand">
50 <label for="itemstatus_onhand">[% 'On Hand' | $T8 %]</label>
51 <input name="itemstatus" id="itemstatus_short" class="radio" type="radio" value="short">
52 <label for="itemstatus_short">[% 'Short' | $T8 %]</label>
53 <input name="itemstatus" id="itemstatus_obsolete" class="radio" type="radio" value="obsolete">
54 <label for="itemstatus_obsolete">[% 'Obsolete' | $T8 %]</label>
55 <input name="itemstatus" id="itemstatus_orphaned" class="radio" type="radio" value="orphaned">
56 <label for="itemstatus_orphaned">[% 'Orphaned' | $T8 %]</label>
67 <th class="listheading">[% 'Preisklasse' | $T8 %]</th>
68 <th class="listheading">[% 'Preis' | $T8 %]</th>
69 <th class="listheading">[% 'Prozentual/Absolut' | $T8 %]</th>
73 <td>[% 'Sell Price' | $T8 %]</td>
74 <td><input name="sellprice" size="11" value="[% HTML.escape(sellprice) %]"></td>
76 <input name="sellprice_type" class="radio" type="radio" value="percent" checked> /
77 <input name="sellprice_type" class="radio" type="radio" value="absolut">
82 <td>[% 'List Price' | $T8 %]</td>
83 <td><input name="listprice" size="11" value="[% HTML.escape(listprice) %]"></td>
85 <input name="listprice_type" class="radio" type="radio" value="percent" checked> /
86 <input name="listprice_type" class="radio" type="radio" value="absolut">
90 [%- FOREACH row = PRICE_ROWS %]
91 <input type="hidden" name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
94 <td><input type="hidden" name="pricegroup_[% loop.count %]" size="30" value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
95 <td><input name="price_[% loop.count %]" size="11"></td>
97 <input name="pricegroup_type_[% loop.count %]" class="radio" type="radio" value="percent" checked> /
98 <input name="pricegroup_type_[% loop.count %]" class="radio" type="radio" value="absolut">
106 <hr size="3" noshade>
108 <input type="hidden" name="nextsub" value="confirm_price_update">
109 <input type="hidden" name="price_rows" value="[% HTML.escape(price_rows) %]">
112 <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">