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