Revision 3fc38171
Von Andreas Rudin vor etwa 6 Jahren hinzugefügt
templates/webpages/ic/search.html | ||
---|---|---|
10 | 10 |
<h1>[% title %]</h1> |
11 | 11 |
|
12 | 12 |
<form method="post" action="ic.pl" id="form"> |
13 |
<input type="hidden" name="searchitems" value="[% HTML.escape(searchitems) %]">
|
|
14 |
<input type="hidden" name="title" value="[% HTML.escape(title) %]">
|
|
15 |
<input type="hidden" name="revers" value="[% HTML.escape(revers) %]">
|
|
16 |
<input type="hidden" name="lastsort" value="[% HTML.escape(lastsort) %]">
|
|
17 |
<input type="hidden" name="sort" value="description">
|
|
13 |
<input type="hidden" name="searchitems" value="[% HTML.escape(searchitems) %]"> |
|
14 |
<input type="hidden" name="title" value="[% HTML.escape(title) %]"> |
|
15 |
<input type="hidden" name="revers" value="[% HTML.escape(revers) %]"> |
|
16 |
<input type="hidden" name="lastsort" value="[% HTML.escape(lastsort) %]"> |
|
17 |
<input type="hidden" name="sort" value="description"> |
|
18 | 18 |
<input type="hidden" name="ndxs_counter" value="[% HTML.escape(ndxs_counter) %]"> |
19 | 19 |
|
20 | 20 |
<div class="wrapper"> |
21 | 21 |
|
22 | 22 |
<table class="tbl-horizontal"> |
23 | 23 |
<caption>[% 'Article data' | $T8 %]</caption> |
24 |
<tr> |
|
25 |
<th>[% 'Part Type' | $T8 %]</th> |
|
26 |
<td> |
|
27 |
<input name="l_part" id="l_part" type="checkbox" value="Y" checked> |
|
28 |
<label for="l_part"> [% 'Part' | $T8 %] </label><br> |
|
29 |
<input name="l_service" id="l_service" type="checkbox" value="Y" checked> |
|
30 |
<label for="l_service"> [% 'Service' | $T8 %] </label><br> |
|
31 |
<input name="l_assembly" id="l_assembly" type="checkbox" value="Y" checked> |
|
32 |
<label for="l_assembly"> [% 'Assembly' | $T8 %] </label><br> |
|
33 |
[% IF INSTANCE_CONF.get_feature_experimental %] |
|
34 |
<input name="l_assortment" id="l_assortment" type="checkbox" value="Y" checked> |
|
35 |
<label for="l_assortment"> [% 'Assortment' | $T8 %] </label> |
|
36 |
[% END %] |
|
37 |
</td> |
|
38 |
</tr> |
|
39 |
<tr> |
|
40 |
<th>[% 'Part Number' | $T8 %]</th> |
|
41 |
<td>[% L.input_tag("partnumber", "", value='asfasdf', class='wi-mediumsmall') %]</td> |
|
42 |
</tr> |
|
43 |
<tr> |
|
44 |
<th>[% 'Part Description' | $T8 %]</th> |
|
45 |
<td>[% L.input_tag("description", "", class='initial_focus wi-lightwide') %]</td> |
|
46 |
</tr> |
|
47 |
<tr> |
|
48 |
<th>[% 'Part Classification' | $T8 %]:</th> |
|
49 |
<td>[% P.part.select_classification('classification_id', class='wi-lightwide', with_empty=1, empty_title='') %]</td> |
|
50 |
</tr> |
|
51 |
<tr> |
|
52 |
<th>[% 'Partsgroup' | $T8 %]</th> |
|
53 |
<td>[% P.select_tag("partsgroup_id", ALL_PARTSGROUPS, with_empty=1, empty_title='', default=partsgroup, title_key="partsgroup", class='wi-lightwide') %]</td> |
|
54 |
</tr> |
|
55 |
<tr> |
|
56 |
<th>[% 'Serial Number' | $T8 %]</th> |
|
57 |
<td>[% L.input_tag("serialnumber", "", class='wi-mediumsmall') %]</td> |
|
58 |
</tr> |
|
59 |
<tr> |
|
60 |
<th>[% 'EAN' | $T8 %]</th> |
|
61 |
<td>[% L.input_tag("ean", "", class='wi-mediumsmall') %]</td> |
|
62 |
</tr> |
|
63 |
<tr> |
|
64 |
<th>[% 'Make' | $T8 %]</th> |
|
65 |
<td>[% L.input_tag("make", "", class='wi-lightwide') %]</td> |
|
66 |
</tr> |
|
67 |
<tr> |
|
68 |
<th>[% 'Model' | $T8 %]</th> |
|
69 |
<td>[% L.input_tag("model", "", class='wi-mediumsmall') %]</td> |
|
70 |
</tr> |
|
71 |
<tr> |
|
72 |
<th>[% 'Shop article' | $T8 %]</th> |
|
73 |
<td>[% L.yes_no_tag('shop', shop, default='', with_empty=1, empty_title='', class='wi-verysmall') %]</td> |
|
74 |
</tr> |
|
75 |
[% CUSTOM_VARIABLES_FILTER_CODE %] |
|
24 |
<colgroup> <col class="wi-mediumsmall"><col class="wi-lightwide"> </colgroup> |
|
25 |
<tbody> |
|
26 |
<tr> |
|
27 |
<th>[% 'Part Type' | $T8 %]</th> |
|
28 |
<td> |
|
29 |
<input name="l_part" id="l_part" type="checkbox" value="Y" checked> |
|
30 |
<label for="l_part"> [% 'Part' | $T8 %] </label><br> |
|
31 |
<input name="l_service" id="l_service" type="checkbox" value="Y" checked> |
|
32 |
<label for="l_service"> [% 'Service' | $T8 %] </label><br> |
|
33 |
<input name="l_assembly" id="l_assembly" type="checkbox" value="Y" checked> |
|
34 |
<label for="l_assembly"> [% 'Assembly' | $T8 %] </label><br> |
|
35 |
[% IF INSTANCE_CONF.get_feature_experimental %] |
|
36 |
<input name="l_assortment" id="l_assortment" type="checkbox" value="Y" checked> |
|
37 |
<label for="l_assortment"> [% 'Assortment' | $T8 %] </label> |
|
38 |
[% END %] |
|
39 |
</td> |
|
40 |
</tr> |
|
41 |
<tr> |
|
42 |
<th>[% 'Part Number' | $T8 %]</th> |
|
43 |
<td>[% L.input_tag("partnumber", "", value='asfasdf', class='wi-mediumsmall') %]</td> |
|
44 |
</tr> |
|
45 |
<tr> |
|
46 |
<th>[% 'Part Description' | $T8 %]</th> |
|
47 |
<td>[% L.input_tag("description", "", class='initial_focus wi-lightwide') %]</td> |
|
48 |
</tr> |
|
49 |
<tr> |
|
50 |
<th>[% 'Part Classification' | $T8 %]</th> |
|
51 |
<td>[% P.part.select_classification('classification_id', class='wi-lightwide', with_empty=1, empty_title='') %]</td> |
|
52 |
</tr> |
|
53 |
<tr> |
|
54 |
<th>[% 'Partsgroup' | $T8 %]</th> |
|
55 |
<td>[% P.select_tag("partsgroup_id", ALL_PARTSGROUPS, with_empty=1, empty_title='', default=partsgroup, title_key="partsgroup", class='wi-lightwide') %]</td> |
|
56 |
</tr> |
|
57 |
<tr> |
|
58 |
<th>[% 'Serial Number' | $T8 %]</th> |
|
59 |
<td>[% L.input_tag("serialnumber", "", class='wi-mediumsmall') %]</td> |
|
60 |
</tr> |
|
61 |
<tr> |
|
62 |
<th>[% 'EAN' | $T8 %]</th> |
|
63 |
<td>[% L.input_tag("ean", "", class='wi-mediumsmall') %]</td> |
|
64 |
</tr> |
|
65 |
<tr> |
|
66 |
<th>[% 'Make' | $T8 %]</th> |
|
67 |
<td>[% L.input_tag("make", "", class='wi-mediumsmall') %]</td> |
|
68 |
</tr> |
|
69 |
<tr> |
|
70 |
<th>[% 'Model' | $T8 %]</th> |
|
71 |
<td>[% L.input_tag("model", "", class='wi-mediumsmall') %]</td> |
|
72 |
</tr> |
|
73 |
<tr> |
|
74 |
<th>[% 'Shop article' | $T8 %]</th> |
|
75 |
<td>[% L.yes_no_tag('shop', shop, default='', with_empty=1, empty_title='', class='wi-mediumsmall') %]</td> |
|
76 |
</tr> |
|
77 |
[% CUSTOM_VARIABLES_FILTER_CODE %] |
|
78 |
</tbody> |
|
76 | 79 |
</table> |
77 | 80 |
|
78 | 81 |
<table class="tbl-horizontal"> |
79 | 82 |
<caption> [% 'Scope' | $T8 %]</caption> |
80 |
<tr class="head"> |
|
81 |
<th>[% 'Scope' | $T8 %]</th> |
|
82 |
<th>[% 'Composition' | $T8 %]</th> |
|
83 |
</tr> |
|
84 |
<tr> |
|
85 |
<td> |
|
86 |
[% L.radio_button_tag('itemstatus', value='active', id='itemstatus_active', label=LxERP.t8('Active'), checked=1) %]<br> |
|
87 |
[% L.radio_button_tag('itemstatus', value='onhand', id='itemstatus_onhand', label=LxERP.t8('On Hand')) %]<br> |
|
88 |
[% L.radio_button_tag('itemstatus', value='short', id='itemstatus_short', label=LxERP.t8('Short')) %]<br> |
|
89 |
[% L.radio_button_tag('itemstatus', value='obsolete', id='itemstatus_obsolete', label=LxERP.t8('Obsolete')) %]<br> |
|
90 |
[% L.radio_button_tag('itemstatus', value='orphaned', id='itemstatus_orphaned', label=LxERP.t8('Orphaned')) %]<br> |
|
91 |
[% L.radio_button_tag('itemstatus', value='', id='itemstatus_all', label=LxERP.t8('All')) %] |
|
92 |
</td> |
|
93 |
<td> |
|
94 |
[% L.radio_button_tag('bom', id='bom_0', value=0, checked=1, label=LxERP.t8('Top Level Designation only')) %] <br> |
|
95 |
[% L.radio_button_tag('bom', id='bom_1', value=1, label=LxERP.t8('Individual Items')) %] |
|
96 |
</td> |
|
97 |
</tr> |
|
98 |
<tr> |
|
99 |
<th class="caption" colspan="2">[% 'State' | $T8 %]</th> |
|
100 |
</tr> |
|
101 |
<tr> |
|
102 |
<td> |
|
103 |
[% L.checkbox_tag('bought', label=LxERP.t8('Bought')) %] <br> |
|
104 |
[% L.checkbox_tag('sold', label=LxERP.t8('Sold')) %] |
|
105 |
</td> |
|
106 |
<td> |
|
107 |
<div style="float:left;padding-right:3.0em;"> |
|
108 |
[% L.checkbox_tag('onorder', label=LxERP.t8('On Order')) %] <br> |
|
109 |
[% L.checkbox_tag('ordered', label=LxERP.t8('Ordered')) %] |
|
110 |
</div> |
|
111 |
<div style="float:left;"> |
|
112 |
[% L.checkbox_tag('rfq', label=LxERP.t8('RFQ')) %] <br> |
|
113 |
[% L.checkbox_tag('quoted', label=LxERP.t8('Quoted')) %] |
|
114 |
</div> |
|
115 |
</td> |
|
116 |
</tr> |
|
117 |
<tr> |
|
118 |
<td colspan="2" style="vertical-align:middle;"> |
|
119 |
[% 'From' | $T8 %] |
|
120 |
[% L.date_tag('transdatefrom') %] |
|
121 |
[% 'To (time)' | $T8 %] |
|
122 |
[% L.date_tag('transdateto') %] |
|
123 |
</td> |
|
124 |
</tr> |
|
125 |
<tr> |
|
126 |
<th class="caption" colspan="2"> [% 'Handling' | $T8 %]</th> |
|
127 |
</tr> |
|
83 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup> |
|
84 |
<thead> |
|
85 |
<tr> |
|
86 |
<th>[% 'Scope' | $T8 %]</th> |
|
87 |
<th>[% 'Composition' | $T8 %]</th> |
|
88 |
</tr> |
|
89 |
</thead> |
|
90 |
<tbody> |
|
91 |
<tr> |
|
92 |
<td> |
|
93 |
[% L.radio_button_tag('itemstatus', value='active', id='itemstatus_active', label=LxERP.t8('Active'), checked=1) %]<br> |
|
94 |
[% L.radio_button_tag('itemstatus', value='onhand', id='itemstatus_onhand', label=LxERP.t8('On Hand')) %]<br> |
|
95 |
[% L.radio_button_tag('itemstatus', value='short', id='itemstatus_short', label=LxERP.t8('Short')) %]<br> |
|
96 |
[% L.radio_button_tag('itemstatus', value='obsolete', id='itemstatus_obsolete', label=LxERP.t8('Obsolete')) %]<br> |
|
97 |
[% L.radio_button_tag('itemstatus', value='orphaned', id='itemstatus_orphaned', label=LxERP.t8('Orphaned')) %]<br> |
|
98 |
[% L.radio_button_tag('itemstatus', value='', id='itemstatus_all', label=LxERP.t8('All')) %] |
|
99 |
</td> |
|
100 |
<td> |
|
101 |
[% L.radio_button_tag('bom', id='bom_0', value=0, checked=1, label=LxERP.t8('Top Level Designation only')) %] <br> |
|
102 |
[% L.radio_button_tag('bom', id='bom_1', value=1, label=LxERP.t8('Individual Items')) %] |
|
103 |
</td> |
|
104 |
</tr> |
|
105 |
<tr> |
|
106 |
<th class="caption" colspan="2">[% 'State' | $T8 %]</th> |
|
107 |
</tr> |
|
108 |
<tr> |
|
109 |
<td colspan="2"> |
|
110 |
<div class="list wi-verysmall col"> |
|
111 |
<div class="field">[% L.checkbox_tag('bought', label=LxERP.t8('Bought')) %]</div> |
|
112 |
<div class="field">[% L.checkbox_tag('sold', label=LxERP.t8('Sold')) %]</div> |
|
113 |
</div> |
|
114 |
<div class="list wi-mediumsmall col"> |
|
115 |
<div class="field">[% L.checkbox_tag('onorder', label=LxERP.t8('On Order')) %]</div> |
|
116 |
<div class="field">[% L.checkbox_tag('ordered', label=LxERP.t8('Ordered')) %]</div> |
|
117 |
</div> |
|
118 |
<div class="list wi-verysmall col"> |
|
119 |
<div class="field">[% L.checkbox_tag('rfq', label=LxERP.t8('RFQ')) %]</div> |
|
120 |
<div class="field">[% L.checkbox_tag('quoted', label=LxERP.t8('Quoted')) %]</div> |
|
121 |
</div> |
|
122 |
</td> |
|
123 |
</tr> |
|
124 |
<tr> |
|
125 |
<td class="wi-date" colspan="2" style="vertical-align:middle;padding-top:1.2em;"> |
|
126 |
[% 'From' | $T8 %] |
|
127 |
[% L.date_tag('transdatefrom') %] |
|
128 |
[% 'To (time)' | $T8 %] |
|
129 |
[% L.date_tag('transdateto') %] |
|
130 |
</td> |
|
131 |
</tr> |
|
132 |
</tbody> |
|
133 |
</table> |
|
134 |
|
|
135 |
<table class="tbl-horizontal"> |
|
136 |
<caption>[% 'Handling' | $T8 %]</caption> |
|
137 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup> |
|
138 |
<tbody> |
|
128 | 139 |
<tr> |
129 | 140 |
<th>[% 'Insert Date' | $T8 %]</th> |
130 |
<td>[% L.date_tag('insertdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('insertdateto') %]</td> |
|
141 |
<td class="wi-date">[% L.date_tag('insertdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('insertdateto') %]</td>
|
|
131 | 142 |
</tr> |
132 | 143 |
<tr> |
133 | 144 |
<th class="caption" colspan="2"> [% 'Illustrations' | $T8 %]</th> |
134 | 145 |
</tr> |
135 | 146 |
<tr> |
136 | 147 |
<th>[% 'Drawing' | $T8 %]</th> |
137 |
<td>[% L.input_tag("drawing", "", style=style) %]</td>
|
|
148 |
<td>[% L.input_tag("drawing", "", class="wi-wide") %]</td>
|
|
138 | 149 |
</tr> |
139 | 150 |
<tr> |
140 | 151 |
<th>[% 'Microfiche' | $T8 %]</th> |
141 |
<td>[% L.input_tag("microfiche", "", style=style) %]</td> |
|
142 |
</tr> |
|
143 |
|
|
144 |
</table> |
|
152 |
<td>[% L.input_tag("microfiche", "", class="wi-wide") %]</td> |
|
153 |
</tr> </tbody> |
|
154 |
</table> |
|
145 | 155 |
|
146 | 156 |
</div><!-- /.wrapper --> |
147 | 157 |
|
148 | 158 |
|
149 |
<div class="wrapper form-addition"> |
|
150 |
|
|
151 |
<h3 class="caption"> [% 'Include in Report' | $T8 %] </h3> |
|
152 |
<!-- PENDENT: Klasse col noetig in form-adddition --> |
|
153 |
<div class="col list"> |
|
154 |
<h4>[% 'Article info ' | $T8 %]</h4> |
|
155 |
<p>[% L.checkbox_tag('l_partnumber', label=LxERP.t8('Part Number'), checked=1, value='Y') %]</p> |
|
156 |
<p>[% L.checkbox_tag('l_description', label=LxERP.t8('Part Description'), checked=1, value='Y') %]</p> |
|
157 |
<p>[% L.checkbox_tag('l_serialnumber', label=LxERP.t8('Serial Number'), value='Y') %]</p> |
|
158 |
<p>[% L.checkbox_tag('l_unit', label=LxERP.t8('Unit of measure'), value='Y', checked=1) %]</p> |
|
159 |
<p>[% L.checkbox_tag('l_weight', label=LxERP.t8('Weight'), value='Y') %]</p> |
|
160 |
<p>[% L.checkbox_tag('l_partsgroup', label=LxERP.t8('Partsgroup'), value='Y') %]</p> |
|
161 |
<p>[% L.checkbox_tag('l_notes', label=LxERP.t8('Notes'), value='Y') %]</p> |
|
162 |
<p>[% L.checkbox_tag('l_ean', label=LxERP.t8('EAN'), value='Y') %]</p> |
|
163 |
<p>[% L.checkbox_tag('l_shop', label=LxERP.t8('Shop article'), value='Y') %]</p> |
|
164 |
<p>[% L.checkbox_tag('l_projectnumber', label=LxERP.t8('Project Number'), value='Y') %]</p> |
|
165 |
<p>[% L.checkbox_tag('l_projectdescription', label=LxERP.t8('Project Description'), value='Y') %]</p> |
|
166 |
<p>[% L.checkbox_tag('l_name', label=LxERP.t8('Name in Selected Records'), value='Y') %]</p> |
|
167 |
<p>[% L.checkbox_tag('l_soldtotal', label=LxERP.t8('Qty in Selected Records'), value='Y') %]</p> |
|
168 |
</div> |
|
169 |
|
|
170 |
<div class="col list"> |
|
171 |
<h4>[% 'Prices' | $T8 %]</h4> |
|
172 |
<p>[% L.checkbox_tag('l_listprice', label=LxERP.t8('List Price'), value='Y') %]</p> |
|
173 |
<p>[% L.checkbox_tag('l_sellprice', label=LxERP.t8('Sell Price'), value='Y', checked=1) %]</p> |
|
174 |
<p>[% L.checkbox_tag('l_lastcost', label=LxERP.t8('Last Cost'), value='Y', checked=1) %]</p> |
|
175 |
<p>[% L.checkbox_tag('l_priceupdate', label=LxERP.t8('Updated'), value='Y') %]</p> |
|
176 |
<p>[% L.checkbox_tag('l_subtotal', label=LxERP.t8('Subtotal'), value='Y') %]</p> |
|
177 |
<p>[% L.checkbox_tag('l_linetotal', label=LxERP.t8('Line Total'), value='Y', checked=1) %]</p> |
|
178 |
<p>[% L.checkbox_tag('l_pricegroups', label=LxERP.t8('Pricegroups'), value='Y', checked=1) %]</p> |
|
179 |
</div> |
|
180 |
|
|
181 |
<div class="col list"> |
|
182 |
<h4>[% 'Handling' | $T8 %]</h4> |
|
183 |
<p>[% L.checkbox_tag('l_insertdate', label=LxERP.t8('Insert Date'), value='Y') %]</p> |
|
184 |
<p>[% L.checkbox_tag('l_deliverydate', label=LxERP.t8('Delivery Date'), value='Y') %]</p> |
|
185 |
<p>[% L.checkbox_tag('l_transdate', label=LxERP.t8('Transdate Record'), value='Y') %]</p> |
|
186 |
</div> |
|
187 |
|
|
159 |
<div class="wrapper form-addition control-panel"> |
|
160 |
|
|
161 |
<h3 class="caption"> [% 'Include in Report' | $T8 %] </h3> |
|
162 |
<!-- PENDENT: Klasse col noetig in form-adddition --> |
|
163 |
<div class="col list"> |
|
164 |
<h4>[% 'Article info ' | $T8 %]</h4> |
|
165 |
<p>[% L.checkbox_tag('l_partnumber', label=LxERP.t8('Part Number'), checked=1, value='Y') %]</p> |
|
166 |
<p>[% L.checkbox_tag('l_description', label=LxERP.t8('Part Description'), checked=1, value='Y') %]</p> |
|
167 |
<p>[% L.checkbox_tag('l_serialnumber', label=LxERP.t8('Serial Number'), value='Y') %]</p> |
|
168 |
<p>[% L.checkbox_tag('l_unit', label=LxERP.t8('Unit of measure'), value='Y', checked=1) %]</p> |
|
169 |
<p>[% L.checkbox_tag('l_weight', label=LxERP.t8('Weight'), value='Y') %]</p> |
|
170 |
<p>[% L.checkbox_tag('l_partsgroup', label=LxERP.t8('Partsgroup'), value='Y') %]</p> |
|
171 |
<p>[% L.checkbox_tag('l_notes', label=LxERP.t8('Notes'), value='Y') %]</p> |
|
172 |
<p>[% L.checkbox_tag('l_ean', label=LxERP.t8('EAN'), value='Y') %]</p> |
|
173 |
<p>[% L.checkbox_tag('l_shop', label=LxERP.t8('Shop article'), value='Y') %]</p> |
|
174 |
<p>[% L.checkbox_tag('l_projectnumber', label=LxERP.t8('Project Number'), value='Y') %]</p> |
|
175 |
<p>[% L.checkbox_tag('l_projectdescription', label=LxERP.t8('Project Description'), value='Y') %]</p> |
|
176 |
<p>[% L.checkbox_tag('l_name', label=LxERP.t8('Name in Selected Records'), value='Y') %]</p> |
|
177 |
<p>[% L.checkbox_tag('l_soldtotal', label=LxERP.t8('Qty in Selected Records'), value='Y') %]</p> |
|
178 |
</div> |
|
179 |
|
|
180 |
<div class="col list"> |
|
181 |
<h4>[% 'Prices' | $T8 %]</h4> |
|
182 |
<p>[% L.checkbox_tag('l_listprice', label=LxERP.t8('List Price'), value='Y') %]</p> |
|
183 |
<p>[% L.checkbox_tag('l_sellprice', label=LxERP.t8('Sell Price'), value='Y', checked=1) %]</p> |
|
184 |
<p>[% L.checkbox_tag('l_lastcost', label=LxERP.t8('Last Cost'), value='Y', checked=1) %]</p> |
|
185 |
<p>[% L.checkbox_tag('l_priceupdate', label=LxERP.t8('Updated'), value='Y') %]</p> |
|
186 |
<p>[% L.checkbox_tag('l_subtotal', label=LxERP.t8('Subtotal'), value='Y') %]</p> |
|
187 |
<p>[% L.checkbox_tag('l_linetotal', label=LxERP.t8('Line Total'), value='Y', checked=1) %]</p> |
|
188 |
<p>[% L.checkbox_tag('l_pricegroups', label=LxERP.t8('Pricegroups'), value='Y', checked=1) %]</p> |
|
189 |
</div> |
|
190 |
|
|
191 |
<div class="col list"> |
|
192 |
<h4>[% 'Handling' | $T8 %]</h4> |
|
193 |
<p>[% L.checkbox_tag('l_insertdate', label=LxERP.t8('Insert Date'), value='Y') %]</p> |
|
194 |
<p>[% L.checkbox_tag('l_deliverydate', label=LxERP.t8('Delivery Date'), value='Y') %]</p> |
|
195 |
<p>[% L.checkbox_tag('l_transdate', label=LxERP.t8('Transdate Record'), value='Y') %]</p> |
|
196 |
</div> |
|
197 |
|
|
198 |
<div class="col list"> |
|
199 |
<h4>[% 'Warehouse' | $T8 %]</h4> |
|
200 |
<p>[% L.checkbox_tag('l_warehouse', label=LxERP.t8('Default Warehouse'), value='Y') %]</p> |
|
201 |
<p>[% L.checkbox_tag('l_bin', label=LxERP.t8('Default Bin'), value='Y') %]</p> |
|
202 |
<p>[% L.checkbox_tag('l_onhand', label=LxERP.t8('Stocked Qty'), value='Y') %]</p> |
|
203 |
<p>[% L.checkbox_tag('l_rop', label=LxERP.t8('ROP'), value='Y') %]</p> |
|
204 |
</div> |
|
205 |
|
|
206 |
<div class="col list"> |
|
207 |
<h4>[% 'Illustrations' | $T8 %]</h4> |
|
208 |
<p>[% L.checkbox_tag('l_image', label=LxERP.t8('Image'), value='Y', checked=(INSTANCE_CONF.get_parts_listing_image ? 1 : 0)) %]</p> |
|
209 |
<p>[% L.checkbox_tag('l_drawing', label=LxERP.t8('Drawing'), value='Y') %]</p> |
|
210 |
<p>[% L.checkbox_tag('l_microfiche', label=LxERP.t8('Microfiche'), value='Y') %]</p> |
|
211 |
</div> |
|
212 |
|
|
213 |
[% IF CUSTOM_VARIABLES_INCLUSION_CODE %] |
|
188 | 214 |
<div class="col list"> |
189 |
<h4>[% 'Warehouse' | $T8 %]</h4> |
|
190 |
<p>[% L.checkbox_tag('l_warehouse', label=LxERP.t8('Default Warehouse'), value='Y') %]</p> |
|
191 |
<p>[% L.checkbox_tag('l_bin', label=LxERP.t8('Default Bin'), value='Y') %]</p> |
|
192 |
<p>[% L.checkbox_tag('l_onhand', label=LxERP.t8('Stocked Qty'), value='Y') %]</p> |
|
193 |
<p>[% L.checkbox_tag('l_rop', label=LxERP.t8('ROP'), value='Y') %]</p> |
|
215 |
<h4>[% 'Custom Variables' | $T8 %] </h4> |
|
216 |
[% CUSTOM_VARIABLES_INCLUSION_CODE %] |
|
194 | 217 |
</div> |
218 |
[% END %] |
|
195 | 219 |
|
196 |
<div class="col list"> |
|
197 |
<h4>[% 'Illustrations' | $T8 %]</h4> |
|
198 |
<p>[% L.checkbox_tag('l_image', label=LxERP.t8('Image'), value='Y', checked=(INSTANCE_CONF.get_parts_listing_image ? 1 : 0)) %]</p> |
|
199 |
<p>[% L.checkbox_tag('l_drawing', label=LxERP.t8('Drawing'), value='Y') %]</p> |
|
200 |
<p>[% L.checkbox_tag('l_microfiche', label=LxERP.t8('Microfiche'), value='Y') %]</p> |
|
201 |
</div> |
|
202 |
|
|
203 |
[% CUSTOM_VARIABLES_INCLUSION_CODE %] |
|
204 |
|
|
205 |
</div><!-- ./wrapper.form-addition --> |
|
220 |
</div><!-- ./wrapper.form-addition --> |
|
206 | 221 |
|
207 | 222 |
</form> |
Auch abrufbar als: Unified diff
HP Aenderungen bis Oktober 2018