6 <h1>[% 'Update prices' | $T8 %]</h1>
8 [% INCLUDE 'common/flash.html' %]
10 <form method="post" action="controller.pl" id="form">
13 <th align="right" nowrap>[% 'Part Number' | $T8 %]</th>
14 <td>[% L.input_tag('filter.partnumber', FORM.filter.partnumber, size=20) %]</td>
18 <th align="right" nowrap>[% 'Part Description' | $T8 %]</th>
19 <td colspan="3">[% L.input_tag('filter.description', FORM.filter.description, size=20) %]</td>
23 <th align="right" nowrap>[% 'Partsgroup' | $T8 %]</th>
24 <td>[% L.input_tag('filter.partsgroup', FORM.filter.partsgroup, size=20) %]</td>
25 <th align="right" nowrap>[% 'Serial Number' | $T8 %]</th>
26 <td>[% L.input_tag('filter.serialnumber', FORM.filter.serialnumber, size=20) %]</td>
30 <th align="right" nowrap>[% 'Make' | $T8 %]</th>
31 <td>[% P.customer_vendor.picker('filter.make', FORM.filter.make, type='vendor', size=20) %]</td>
32 <th align="right" nowrap>[% 'Model' | $T8 %]</th>
33 <td>[% L.input_tag('filter.model', FORM.filter.model, size=20) %]</td>
37 <th align="right" nowrap>[% 'Drawing' | $T8 %]</th>
38 <td>[% L.input_tag('filter.drawing', FORM.filter.drawing, size=20) %]</td>
39 <th align="right" nowrap>[% 'Microfiche' | $T8 %]</th>
40 <td>[% L.input_tag('filter.microfiche', FORM.filter.microfiche, size=20) %]</td>
46 [% L.radio_button_tag('filter.itemstatus', value='active', label=LxERP.t8('Active'), checked=!FORM.filter.itemstatus||FORM.filter.itemstatus=='active') %]
47 [% L.radio_button_tag('filter.itemstatus', value='onhand', label=LxERP.t8('On Hand'), checked=FORM.filter.itemstatus=='onhand') %]
48 [% L.radio_button_tag('filter.itemstatus', value='short', label=LxERP.t8('Short'), checked=FORM.filter.itemstatus=='short') %]
49 [% L.radio_button_tag('filter.itemstatus', value='obsolete', label=LxERP.t8('Obsolete'), checked=FORM.filter.itemstatus=='obsolete') %]
50 [% L.radio_button_tag('filter.itemstatus', value='orphaned', label=LxERP.t8('Orphaned'), checked=FORM.filter.itemstatus=='orphaned') %]
59 <th class="listheading">[% 'Price group' | $T8 %]</th>
60 <th class="listheading">[% 'Preis' | $T8 %]</th>
61 <th class="listheading">[% 'Prozentual/Absolut' | $T8 %]</th>
65 <td>[% 'Sell Price' | $T8 %]</td>
66 <td>[% L.input_tag('filter.prices.sellprice.price_as_number', FORM.filter.prices.sellprice.price_as_number, size=11) %]</td>
68 [% L.radio_button_tag("filter.prices.sellprice.type",
70 checked=!FORM.filter.prices.sellprice.type || FORM.filter.prices.sellprice.type == 'percent') %] /
71 [% L.radio_button_tag("filter.prices.sellprice.type",
73 checked=FORM.filter.prices.sellprice.type == 'absolut') %]
78 <td>[% 'List Price' | $T8 %]</td>
79 <td>[% L.input_tag('filter.prices.listprice.price_as_number', FORM.filter.prices.listprice.price_as_number, size=11) %]</td>
81 [% L.radio_button_tag("filter.prices.listprice.type",
83 checked=!FORM.filter.prices.listprice.type || FORM.filter.prices.listprice.type == 'percent') %] /
84 [% L.radio_button_tag("filter.prices.listprice.type",
86 checked=FORM.filter.prices.listprice.type == 'absolut') %]
90 [%- FOREACH pg = SELF.pricegroups %]
92 <td>[% pg.pricegroup | html %]</td>
93 <td>[% L.input_tag('filter.prices.' _ pg.id _ '.price_as_number', FORM.filter.prices.${pg.id}.price_as_number, size=11) %]</td>
95 [% L.radio_button_tag("filter.prices." _ pg.id _ ".type",
97 checked=!FORM.filter.prices.${pg.id}.type || FORM.filter.prices.${pg.id}.type == 'percent') %] /
98 [% L.radio_button_tag("filter.prices." _ pg.id _ ".type",
100 checked=FORM.filter.prices.${pg.id}.type == 'absolut') %]