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