Layout: title Ausgabe normalisieren
[kivitendo-erp.git] / templates / webpages / ic / search_update_prices.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 <h1>[% 'Update prices' | $T8 %]</h1>
5
6  <form method="post" action="ic.pl">
7
8   <input type="hidden" name="title" value="[% 'Update prices' | $T8 %]">
9
10   <p>
11    <table>
12     <tr>
13      <th align="right" nowrap>[% 'Part Number' | $T8 %]</th>
14      <td><input name="partnumber" size="20"></td>
15     </tr>
16
17     <tr>
18      <th align="right" nowrap>[% 'Part Description' | $T8 %]</th>
19      <td colspan="3"><input name="description" size="20"></td>
20     </tr>
21
22     <tr>
23      <th align="right" nowrap>[% 'Group' | $T8 %]</th>
24      <td><input name="partsgroup" size="20"></td>
25      <th align="right" nowrap>[% 'Serial Number' | $T8 %]</th>
26      <td><input name="serialnumber" size="20"></td>
27     </tr>
28
29     <tr>
30      <th align="right" nowrap>[% 'Make' | $T8 %]</th>
31      <td><input name="make" size="20"></td>
32      <th align="right" nowrap>[% 'Model' | $T8 %]</th>
33      <td><input name="model" size="20"></td>
34     </tr>
35
36     <tr>
37      <th align="right" nowrap>[% 'Drawing' | $T8 %]</th>
38      <td><input name="drawing" size="20"></td>
39      <th align="right" nowrap>[% 'Microfiche' | $T8 %]</th>
40      <td><input name="microfiche" size="20"></td>
41     </tr>
42
43     <tr>
44      <td></td>
45      <td colspan="3">
46       <input name="itemstatus" id="itemstatus_active" class="radio" type="radio" value="active" checked>
47       <label for="itemstatus_active">[% 'Active' | $T8 %]</label>
48       <input name="itemstatus" id="itemstatus_onhand" class="radio" type="radio" value="onhand">
49       <label for="itemstatus_onhand">[% 'On Hand' | $T8 %]</label>
50       <input name="itemstatus" id="itemstatus_short" class="radio" type="radio" value="short">
51       <label for="itemstatus_short">[% 'Short' | $T8 %]</label>
52       <input name="itemstatus" id="itemstatus_obsolete" class="radio" type="radio" value="obsolete">
53       <label for="itemstatus_obsolete">[% 'Obsolete' | $T8 %]</label>
54       <input name="itemstatus" id="itemstatus_orphaned" class="radio" type="radio" value="orphaned">
55       <label for="itemstatus_orphaned">[% 'Orphaned' | $T8 %]</label>
56      </td>
57     </tr>
58    </table>
59   </p>
60
61   <hr size="1" noshade>
62
63   <p>
64    <table>
65     <tr>
66      <th class="listheading">[% 'Preisklasse' | $T8 %]</th>
67      <th class="listheading">[% 'Preis' | $T8 %]</th>
68      <th class="listheading">[% 'Prozentual/Absolut' | $T8 %]</th>
69     </tr>
70
71     <tr>
72      <td>[% 'Sell Price' | $T8 %]</td>
73      <td><input name="sellprice" size="11" value="[% HTML.escape(sellprice) %]"></td>
74      <td align="center">
75       <input name="sellprice_type" class="radio" type="radio" value="percent" checked> /
76       <input name="sellprice_type" class="radio" type="radio" value="absolut">
77      </td>
78     </tr>
79
80     <tr>
81      <td>[% 'List Price' | $T8 %]</td>
82      <td><input name="listprice" size="11" value="[% HTML.escape(listprice) %]"></td>
83      <td align="center">
84       <input name="listprice_type" class="radio" type="radio" value="percent" checked> /
85       <input name="listprice_type" class="radio" type="radio" value="absolut">
86      </td>
87     </tr>
88
89     [%- FOREACH row = PRICE_ROWS %]
90     <input type="hidden" name="pricegroup_id_[% loop.count %]" value="[% HTML.escape(row.id) %]">
91
92     <tr>
93      <td><input type="hidden" name="pricegroup_[% loop.count %]" size="30"  value="[% HTML.escape(row.pricegroup) %]">[% HTML.escape(row.pricegroup) %]</td>
94      <td><input name="price_[% loop.count %]" size="11"></td>
95      <td align="center">
96       <input name="pricegroup_type_[% loop.count %]" class="radio" type="radio" value="percent" checked> /
97       <input name="pricegroup_type_[% loop.count %]" class="radio" type="radio" value="absolut">
98      </td>
99     </tr>
100     [%- END %]
101
102    </table>
103   </p>
104
105   <hr size="3" noshade>
106
107   <input type="hidden" name="nextsub" value="confirm_price_update">
108   <input type="hidden" name="price_rows" value="[% HTML.escape(price_rows) %]">
109
110   <p>
111    <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
112   </p>
113  </form>
114