5 <h1>[% 'Update prices' | $T8 %]</h1>
7 [% INCLUDE 'common/flash.html' %]
9 <form method="post" action="controller.pl" id="form">
12 <th align="right" nowrap>[% 'Part Number' | $T8 %]</th>
13 <td>[% L.input_tag('filter.partnumber', FORM.filter.partnumber, size=20) %]</td>
17 <th align="right" nowrap>[% 'Part Description' | $T8 %]</th>
18 <td colspan="3">[% L.input_tag('filter.description', FORM.filter.description, size=20) %]</td>
22 <th align="right" nowrap>[% 'Partsgroup' | $T8 %]</th>
23 <td>[% L.input_tag('filter.partsgroup', FORM.filter.partsgroup, size=20) %]</td>
24 <th align="right" nowrap>[% 'Serial Number' | $T8 %]</th>
25 <td>[% L.input_tag('filter.serialnumber', FORM.filter.serialnumber, size=20) %]</td>
29 <th align="right" nowrap>[% 'Make' | $T8 %]</th>
30 <td>[% L.input_tag('filter.make', FORM.filter.make, size=20) %]</td>
31 <th align="right" nowrap>[% 'Model' | $T8 %]</th>
32 <td>[% L.input_tag('filter.model', FORM.filter.model, size=20) %]</td>
36 <th align="right" nowrap>[% 'Drawing' | $T8 %]</th>
37 <td>[% L.input_tag('filter.drawing', FORM.filter.drawing, size=20) %]</td>
38 <th align="right" nowrap>[% 'Microfiche' | $T8 %]</th>
39 <td>[% L.input_tag('filter.microfiche', FORM.filter.microfiche, size=20) %]</td>
45 [% L.radio_button_tag('filter.itemstatus', value='active', label=LxERP.t8('Active'), checked=!FORM.filter.itemstatus||FORM.filter.itemstatus=='active') %]
46 [% L.radio_button_tag('filter.itemstatus', value='onhand', label=LxERP.t8('On Hand'), checked=FORM.filter.itemstatus=='onhand') %]
47 [% L.radio_button_tag('filter.itemstatus', value='short', label=LxERP.t8('Short'), checked=FORM.filter.itemstatus=='short') %]
48 [% L.radio_button_tag('filter.itemstatus', value='obsolete', label=LxERP.t8('Obsolete'), checked=FORM.filter.itemstatus=='obsolete') %]
49 [% L.radio_button_tag('filter.itemstatus', value='orphaned', label=LxERP.t8('Orphaned'), checked=FORM.filter.itemstatus=='orphaned') %]
58 <th class="listheading">[% 'Price group' | $T8 %]</th>
59 <th class="listheading">[% 'Preis' | $T8 %]</th>
60 <th class="listheading">[% 'Prozentual/Absolut' | $T8 %]</th>
64 <td>[% 'Sell Price' | $T8 %]</td>
65 <td>[% L.input_tag('filter.prices.sellprice.price_as_number', FORM.filter.prices.sellprice.price_as_number, size=11) %]</td>
67 [% L.radio_button_tag("filter.prices.sellprice.type",
69 checked=!FORM.filter.prices.sellprice.type || FORM.filter.prices.sellprice.type == 'percent') %] /
70 [% L.radio_button_tag("filter.prices.sellprice.type",
72 checked=FORM.filter.prices.sellprice.type == 'absolut') %]
77 <td>[% 'List Price' | $T8 %]</td>
78 <td>[% L.input_tag('filter.prices.listprice.price_as_number', FORM.filter.prices.listprice.price_as_number, size=11) %]</td>
80 [% L.radio_button_tag("filter.prices.listprice.type",
82 checked=!FORM.filter.prices.listprice.type || FORM.filter.prices.listprice.type == 'percent') %] /
83 [% L.radio_button_tag("filter.prices.listprice.type",
85 checked=FORM.filter.prices.listprice.type == 'absolut') %]
89 [%- FOREACH pg = SELF.pricegroups %]
91 <td>[% pg.pricegroup | html %]</td>
92 <td>[% L.input_tag('filter.prices.' _ pg.id _ '.price_as_number', FORM.filter.prices.${pg.id}.price_as_number, size=11) %]</td>
94 [% L.radio_button_tag("filter.prices." _ pg.id _ ".type",
96 checked=!FORM.filter.prices.${pg.id}.type || FORM.filter.prices.${pg.id}.type == 'percent') %] /
97 [% L.radio_button_tag("filter.prices." _ pg.id _ ".type",
99 checked=FORM.filter.prices.${pg.id}.type == 'absolut') %]