Revision 9198a414
Von Sven Schöling vor fast 17 Jahren hinzugefügt
templates/webpages/ic/search_update_prices_de.html | ||
---|---|---|
1 |
[%- USE HTML %] |
|
2 |
[%- USE LxERP %] |
|
3 |
<body> |
|
4 |
|
|
5 |
<form method=post action=[% script %]> |
|
6 |
|
|
7 |
<input type=hidden name=title value="Preise aktualisieren"> |
|
8 |
|
|
9 |
<table width="100%"> |
|
10 |
<tr><th class=listtop>Preise aktualisieren</th></tr> |
|
11 |
<tr height="5"></tr> |
|
12 |
<tr valign=top> |
|
13 |
<td> |
|
14 |
<table> |
|
15 |
<tr> |
|
16 |
<th align=right nowrap>Artikelnummer</th> |
|
17 |
<td><input name=partnumber size=20></td> |
|
18 |
</tr> |
|
19 |
<tr> |
|
20 |
<th align=right nowrap>Artikelbeschreibung</th> |
|
21 |
<td colspan=3><input name=description size=40></td> |
|
22 |
</tr> |
|
23 |
<tr> |
|
24 |
<th align=right nowrap>Warengruppe</th> |
|
25 |
<td><input name=partsgroup size=20></td> |
|
26 |
<th align=right nowrap>Seriennummer</th> |
|
27 |
<td><input name=serialnumber size=20></td> |
|
28 |
</tr> |
|
29 |
<tr> |
|
30 |
<th align=right nowrap>Hersteller</th> |
|
31 |
<td><input name=make size=20></td> |
|
32 |
<th align=right nowrap>Modell</th> |
|
33 |
<td><input name=model size=20></td> |
|
34 |
</tr> |
|
35 |
<tr> |
|
36 |
<th align=right nowrap>Zeichnung</th> |
|
37 |
<td><input name=drawing size=20></td> |
|
38 |
<th align=right nowrap>Mikrofilm</th> |
|
39 |
<td><input name=microfiche size=20></td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<td></td> |
|
43 |
<td colspan=3> |
|
44 |
<input name=itemstatus class=radio type=radio value=active checked> Aktiv |
|
45 |
<input name=itemstatus class=radio type=radio value=onhand> Auf Lager |
|
46 |
<input name=itemstatus class=radio type=radio value=short> Knapp |
|
47 |
<input name=itemstatus class=radio type=radio value=obsolete> Ung?ltig |
|
48 |
<input name=itemstatus class=radio type=radio value=orphaned> Nie benutzt |
|
49 |
</td> |
|
50 |
</tr> |
|
51 |
<tr> |
|
52 |
<td></td> |
|
53 |
<td colspan=3> |
|
54 |
<hr size=1 noshade> |
|
55 |
</td> |
|
56 |
</tr> |
|
57 |
<tr> |
|
58 |
<td colspan=4> |
|
59 |
<table width=100%> |
|
60 |
<tr> |
|
61 |
<th class="listheading">Preisgruppe</th> |
|
62 |
<th class="listheading">Preis</th> |
|
63 |
<th class="listheading">Prozentual/Absolut</th> |
|
64 |
</tr> |
|
65 |
<tr> |
|
66 |
<td>Verkaufspreis</td> |
|
67 |
<td><input name="sellprice" size=11 value="[% sellprice %]"></td> |
|
68 |
<td><input name="sellprice_type" class=radio type=radio value=percent checked>/<input name="sellprice_type" class=radio type=radio value=absolut></td> |
|
69 |
</tr> |
|
70 |
<tr> |
|
71 |
<td>Listenpreis</td> |
|
72 |
<td><input name="listprice" size=11 value="[% listprice %]"></td> |
|
73 |
<td><input name="listprice_type" class=radio type=radio value=percent checked>/<input name="listprice_type" class=radio type=radio value=absolut></td> |
|
74 |
</tr> |
|
75 |
[%- FOREACH row = PRICE_ROWS %] |
|
76 |
<tr> |
|
77 |
<td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30 value="[% row.pricegroup %]">[% row.pricegroup %]</td> |
|
78 |
<td width=50%><input name="price_[% loop.count %]" size=11></td> |
|
79 |
<input type=hidden name="pricegroup_id_[% loop.count %]" value="[% row.id %]"> |
|
80 |
<td><input name="pricegroup_type_[% loop.count %]" class=radio type=radio value=percent checked>/<input name="pricegroup_type_[% loop.count %]" class=radio type=radio value=absolut></td> |
|
81 |
</tr> |
|
82 |
[%- END %] |
|
83 |
|
|
84 |
</table> |
|
85 |
</td> |
|
86 |
</tr> |
|
87 |
|
|
88 |
<tr><td colspan=4><hr size=3 noshade></td></tr> |
|
89 |
</table> |
|
90 |
<input type=hidden name=nextsub value=confirm_price_update> |
|
91 |
<input type=hidden name=price_rows value=[% price_rows %]> |
|
92 |
|
|
93 |
<input type=hidden name=login value=[% login %]> |
|
94 |
<input type=hidden name=password value=[% password %]> |
|
95 |
|
|
96 |
<br> |
|
97 |
<input class=submit type=submit name=action value="Weiter"> |
|
98 |
</form> |
|
99 |
|
|
100 |
</body> |
|
101 |
</html> |
templates/webpages/ic/search_update_prices_master.html | ||
---|---|---|
1 |
[%- USE HTML %] |
|
2 |
[%- USE LxERP %] |
|
3 |
<body> |
|
4 |
|
|
5 |
<form method=post action=[% script %]> |
|
6 |
|
|
7 |
<input type=hidden name=title value="<translate>Update prices</translate>"> |
|
8 |
|
|
9 |
<table width="100%"> |
|
10 |
<tr><th class=listtop><translate>Update prices</translate></th></tr> |
|
11 |
<tr height="5"></tr> |
|
12 |
<tr valign=top> |
|
13 |
<td> |
|
14 |
<table> |
|
15 |
<tr> |
|
16 |
<th align=right nowrap><translate>Part Number</translate></th> |
|
17 |
<td><input name=partnumber size=20></td> |
|
18 |
</tr> |
|
19 |
<tr> |
|
20 |
<th align=right nowrap><translate>Part Description</translate></th> |
|
21 |
<td colspan=3><input name=description size=40></td> |
|
22 |
</tr> |
|
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 |
<tr> |
|
30 |
<th align=right nowrap><translate>Make</translate></th> |
|
31 |
<td><input name=make size=20></td> |
|
32 |
<th align=right nowrap><translate>Model</translate></th> |
|
33 |
<td><input name=model size=20></td> |
|
34 |
</tr> |
|
35 |
<tr> |
|
36 |
<th align=right nowrap><translate>Drawing</translate></th> |
|
37 |
<td><input name=drawing size=20></td> |
|
38 |
<th align=right nowrap><translate>Microfiche</translate></th> |
|
39 |
<td><input name=microfiche size=20></td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<td></td> |
|
43 |
<td colspan=3> |
|
44 |
<input name=itemstatus class=radio type=radio value=active checked> <translate>Active</translate> |
|
45 |
<input name=itemstatus class=radio type=radio value=onhand> <translate>On Hand</translate> |
|
46 |
<input name=itemstatus class=radio type=radio value=short> <translate>Short</translate> |
|
47 |
<input name=itemstatus class=radio type=radio value=obsolete> <translate>Obsolete</translate> |
|
48 |
<input name=itemstatus class=radio type=radio value=orphaned> <translate>Orphaned</translate> |
|
49 |
</td> |
|
50 |
</tr> |
|
51 |
<tr> |
|
52 |
<td></td> |
|
53 |
<td colspan=3> |
|
54 |
<hr size=1 noshade> |
|
55 |
</td> |
|
56 |
</tr> |
|
57 |
<tr> |
|
58 |
<td colspan=4> |
|
59 |
<table width=100%> |
|
60 |
<tr> |
|
61 |
<th class="listheading"><translate>Preisklasse</translate></th> |
|
62 |
<th class="listheading"><translate>Preis</translate></th> |
|
63 |
<th class="listheading"><translate>Prozentual/Absolut</translate></th> |
|
64 |
</tr> |
|
65 |
<tr> |
|
66 |
<td><translate>Sell Price</translate></td> |
|
67 |
<td><input name="sellprice" size=11 value="[% sellprice %]"></td> |
|
68 |
<td><input name="sellprice_type" class=radio type=radio value=percent checked>/<input name="sellprice_type" class=radio type=radio value=absolut></td> |
|
69 |
</tr> |
|
70 |
<tr> |
|
71 |
<td><translate>List Price</translate></td> |
|
72 |
<td><input name="listprice" size=11 value="[% listprice %]"></td> |
|
73 |
<td><input name="listprice_type" class=radio type=radio value=percent checked>/<input name="listprice_type" class=radio type=radio value=absolut></td> |
|
74 |
</tr> |
|
75 |
[%- FOREACH row = PRICE_ROWS %] |
|
76 |
<tr> |
|
77 |
<td width=50%><input type=hidden name="pricegroup_[% loop.count %]" size=30 value="[% row.pricegroup %]">[% row.pricegroup %]</td> |
|
78 |
<td width=50%><input name="price_[% loop.count %]" size=11></td> |
|
79 |
<input type=hidden name="pricegroup_id_[% loop.count %]" value="[% row.id %]"> |
|
80 |
<td><input name="pricegroup_type_[% loop.count %]" class=radio type=radio value=percent checked>/<input name="pricegroup_type_[% loop.count %]" class=radio type=radio value=absolut></td> |
|
81 |
</tr> |
|
82 |
[%- END %] |
|
83 |
|
|
84 |
</table> |
|
85 |
</td> |
|
86 |
</tr> |
|
87 |
|
|
88 |
<tr><td colspan=4><hr size=3 noshade></td></tr> |
|
89 |
</table> |
|
90 |
<input type=hidden name=nextsub value=confirm_price_update> |
|
91 |
<input type=hidden name=price_rows value=[% price_rows %]> |
|
92 |
|
|
93 |
<input type=hidden name=login value=[% login %]> |
|
94 |
<input type=hidden name=password value=[% password %]> |
|
95 |
|
|
96 |
<br> |
|
97 |
<input class=submit type=submit name=action value="<translate>Continue</translate>"> |
|
98 |
</form> |
|
99 |
|
|
100 |
</body> |
|
101 |
</html> |
Auch abrufbar als: Unified diff
Und die dazugehoerigen Templates