Revision ffec2efe
Von Hans P. Schlaepfer vor fast 4 Jahren hinzugefügt
templates/webpages/vk/search_invoice.html | ||
---|---|---|
6 | 6 |
<h1>[% title %]</h1> |
7 | 7 |
|
8 | 8 |
<form method=post name="search_invoice" action=[% script %]> |
9 |
<input type="hidden" name="sort" value="transdate"> |
|
10 |
<input type=hidden name=nextsub value=[% nextsub %]> |
|
9 |
<div class="wrapper"> |
|
11 | 10 |
|
12 |
<table> |
|
11 |
<input type="hidden" name="sort" value="transdate"> |
|
12 |
<input type=hidden name=nextsub value=[% nextsub %]> |
|
13 | 13 |
|
14 |
<div class="col"> |
|
15 |
|
|
16 |
<table class="tbl-horizontal"> |
|
17 |
<caption>[% 'Sorting' | $T8 %]</caption> |
|
18 |
<colgroup> <col class="wi-small"><col class="wi-small"><col class="wi-mediumsmall"> </colgroup> |
|
19 |
<tbody> |
|
14 | 20 |
<tr> |
15 |
<td align="right">[% 'Main sorting' | $T8 %]</td>
|
|
21 |
<th>[% 'Main sorting' | $T8 %]</th>
|
|
16 | 22 |
<td> |
17 | 23 |
<select name="mainsort" id="mainsort"> |
18 | 24 |
<option value="description">[% 'Part' | $T8 %]</option> |
... | ... | |
25 | 31 |
<option value="shipvia">[% 'Ship via' | $T8 %]</option> |
26 | 32 |
</select> |
27 | 33 |
</td> |
28 |
<td align=left><input name="l_headers_mainsort" class=checkbox type=checkbox value=Y checked> [% 'Heading' | $T8 %]</td> |
|
29 |
<td align=left><input name="l_subtotal_mainsort" class=checkbox type=checkbox value=Y checked> [% 'Subtotal' | $T8 %]</td> |
|
34 |
<td> |
|
35 |
<input name="l_headers_mainsort" id="l_headers_mainsort" type=checkbox value=Y checked><label for="l_headers_mainsort">[% 'Heading' | $T8 %]</label><br> |
|
36 |
<input name="l_subtotal_mainsort" id="l_subtotal_mainsort" type=checkbox value=Y checked><label for="l_subtotal_mainsort">[% 'Subtotal' | $T8 %]</label> |
|
37 |
</td> |
|
30 | 38 |
</tr> |
31 |
|
|
32 | 39 |
<tr> |
33 |
<td align="right">[% 'Secondary sorting' | $T8 %]</td>
|
|
40 |
<th>[% 'Secondary sorting' | $T8 %]</th>
|
|
34 | 41 |
<td> |
35 | 42 |
<select name="subsort" id="subsort"> |
36 | 43 |
<option value="description">[% 'Part' | $T8 %]</option> |
... | ... | |
42 | 49 |
<option value="month" selected="selected">[% 'Month' | $T8 %]</option> |
43 | 50 |
</select> |
44 | 51 |
</td> |
45 |
<td align=left><input name="l_headers_subsort" class=checkbox type=checkbox value=Y checked> [% 'Heading' | $T8 %]</td> |
|
46 |
<td align=left><input name="l_subtotal_subsort" class=checkbox type=checkbox value=Y checked> [% 'Subtotal' | $T8 %]</td> |
|
52 |
<td> |
|
53 |
<input name="l_headers_subsort" id="l_headers_subsort" type=checkbox value=Y checked><label for="l_headers_subsort">[% 'Heading' | $T8 %]</label><br> |
|
54 |
<input name="l_subtotal_subsort" id="l_subtotal_subsort" type=checkbox value=Y checked><label for="l_subtotal_subsort">[% 'Subtotal' | $T8 %]</label> |
|
55 |
</td> |
|
47 | 56 |
</tr> |
57 |
</tbody> |
|
58 |
</table> |
|
48 | 59 |
|
60 |
<table class="tbl-horizontal"> |
|
61 |
<caption>[% 'Item & Sums' | $T8 %]</caption> |
|
62 |
<colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup> |
|
63 |
<tbody> |
|
49 | 64 |
<tr> |
50 |
<th align="right">[% 'Item mode' | $T8 %]</th>
|
|
51 |
<td colspan="3" align=left><input name="l_parts" class=checkbox type=checkbox value=Y> ([%'Show items from invoices individually' | $T8 %]) </td>
|
|
65 |
<th>[% 'Item mode' | $T8 %]</th> |
|
66 |
<td><input name="l_parts" type=checkbox value=Y> ([%'Show items from invoices individually' | $T8 %])</td>
|
|
52 | 67 |
</tr> |
53 |
|
|
54 | 68 |
<tr> |
55 |
<th align="right">[% 'Total sum' | $T8 %]</th> |
|
56 |
<td colspan="1" align=left><input name="l_total" class=checkbox type=checkbox value=Y checked></td> |
|
57 |
<td align="right" nowrap>[% 'Decimalplaces' | $T8 %]: </td> |
|
58 |
<td colspan="2"><input name="decimalplaces" size="2" value="2"></td> |
|
69 |
<th>[% 'Total sum' | $T8 %]</th> |
|
70 |
<td><input name="l_total" type=checkbox value=Y checked> [% 'Decimalplaces' | $T8 %]: <input type="text" name="decimalplaces" size="2" value="2"></td> |
|
59 | 71 |
</tr> |
72 |
</tbody> |
|
73 |
</table> |
|
60 | 74 |
|
61 | 75 |
<tr> |
62 | 76 |
<td></td> |
... | ... | |
146 | 160 |
[% CUSTOM_VARIABLES_FILTER_CODE_IC %] |
147 | 161 |
|
148 | 162 |
|
163 |
<div class="wrapper form-addition control-panel"> |
|
164 |
<h3>[% 'Include in Report' | $T8 %]</h3> |
|
149 | 165 |
|
166 |
<table class="tbl-plain clear"> |
|
167 |
<colgroup><col class="wi-mediumsmall"><col class="wi-mediumsmall"><col class="wi-mediumsmall"><col class="wi-verywide"></colgroup> |
|
168 |
<tbody> |
|
150 | 169 |
<tr> |
170 |
<th colspan="4"><h4>[% 'Cumulated or averaged values' | $T8 %] ([% 'invoice mode or item mode' | $T8 %]):</h4></th> |
|
171 |
</tr> |
|
172 |
<tr> |
|
173 |
<td><input name="l_sellprice_total" id="l_sellprice_total" type=checkbox value=Y checked><label for="l_sellprice_total">[% 'Sales price total' | $T8 %]</label></td> |
|
174 |
<td><input name="l_lastcost_total" id="l_lastcost_total" type=checkbox value=Y checked><label for="l_lastcost_total">[% 'Purchase price total' | $T8 %]</label></td> |
|
175 |
<td><input name="l_marge_total" id="l_marge_total" type=checkbox value=Y checked><label for="l_marge_total">[% 'Margetotal' | $T8 %]</label></td> |
|
176 |
<td class="long-desc">([% 'Single values in item mode, cumulated values in invoice mode' | $T8 %])</td> |
|
177 |
</tr> |
|
178 |
<tr> |
|
179 |
<td><input name="l_sellprice" id="l_sellprice" type=checkbox value=Y checked><label for="l_sellprice">[% 'Sales price' | $T8 %]</label></td> |
|
180 |
<td><input name="l_lastcost" id="l_lastcost" type=checkbox value=Y checked><label for="l_lastcost">[% 'Purchase price' | $T8 %]</label></td> |
|
181 |
<td><input name="l_marge_percent" id="l_marge_percent" type=checkbox value=Y checked><label for="l_marge_percent">[% 'Margepercent' | $T8 %]</label></td> |
|
182 |
<td class="long-desc">([% 'averaged values, in invoice mode only useful when filtered by a part' | $T8 %])</td> |
|
183 |
</tr> |
|
184 |
<tr> |
|
185 |
<td><input name="l_qty" id="l_qty" type=checkbox value=Y checked><label for="l_qty">[% 'Quantity' | $T8 %]</label></td> |
|
186 |
<td><input name="l_discount" id="l_discount" type=checkbox value=Y><label for="l_discount">[% 'Discount' | $T8 %]</label></td> |
|
151 | 187 |
<td></td> |
152 |
<td colspan="7"> |
|
153 |
<hr size="1" noshade=""> |
|
154 |
</td> |
|
188 |
<td class="long-desc">([% 'averaged values, in invoice mode only useful when filtered by a part' | $T8 %])</td> |
|
189 |
</tr> |
|
155 | 190 |
<tr> |
156 |
|
|
157 |
|
|
158 |
|
|
191 |
<td><input name="l_weight" id="l_weight" type=checkbox value=Y><label for="l_weight">[% 'Weight' | $T8 %]</label></td> |
|
192 |
<td></td> |
|
193 |
<td></td> |
|
194 |
<td></td> |
|
195 |
</tr> |
|
159 | 196 |
<tr> |
160 |
<th align=right nowrap>[% 'Include in Report' | $T8 %]</th> |
|
161 |
|
|
162 |
<td colspan="3"> |
|
163 |
<table> |
|
164 |
<tr> |
|
165 |
<td colspan="4"> |
|
166 |
[% 'Cumulated or averaged values' | $T8 %] ([% 'invoice mode or item mode' | $T8 %]): |
|
167 |
</td> |
|
168 |
</tr> |
|
169 |
|
|
170 |
<tr> |
|
171 |
<td align=left><input name="l_sellprice_total" class=checkbox type=checkbox value=Y checked>[% 'Sales price total' | $T8 %]</td> |
|
172 |
<td align=left><input name="l_lastcost_total" class=checkbox type=checkbox value=Y checked>[% 'Purchase price total' | $T8 %]</td> |
|
173 |
<td align=left><input name="l_marge_total" class=checkbox type=checkbox value=Y checked>[% 'Margetotal' | $T8 %]</td> |
|
174 |
<td colspan="4"> ([% 'Single values in item mode, cumulated values in invoice mode' | $T8 %]) |
|
175 |
</tr> |
|
176 |
|
|
177 |
<tr> |
|
178 |
<td align=left><input name="l_sellprice" class=checkbox type=checkbox value=Y checked>[% 'Sales price' | $T8 %]</td> |
|
179 |
<td align=left><input name="l_lastcost" class=checkbox type=checkbox value=Y checked>[% 'Purchase price' | $T8 %]</td> |
|
180 |
<td align=left><input name="l_marge_percent" class=checkbox type=checkbox value=Y checked>[% 'Margepercent' | $T8 %]</td> |
|
181 |
<td colspan="4">([% 'averaged values, in invoice mode only useful when filtered by a part' | $T8 %])</td> |
|
182 |
</tr> |
|
183 |
|
|
184 |
<tr> |
|
185 |
<td align=left><input name="l_qty" class=checkbox type=checkbox value=Y checked>[% 'Quantity' | $T8 %]</td> |
|
186 |
<td align=left><input name="l_discount" class=checkbox type=checkbox value=Y>[% 'Discount' | $T8 %]</td> |
|
187 |
<td></td> |
|
188 |
<td colspan="4">([% 'averaged values, in invoice mode only useful when filtered by a part' | $T8 %])</td> |
|
189 |
</tr> |
|
190 |
|
|
191 |
<tr> |
|
192 |
<td align=left><input name="l_weight" class=checkbox type=checkbox value=Y>[% 'Weight' | $T8 %]</td> |
|
193 |
</tr> |
|
194 |
|
|
195 |
<tr> |
|
196 |
<td colspan="7"> </td> |
|
197 |
</tr> |
|
198 |
|
|
199 |
<tr> |
|
200 |
<td colspan="4" align="left"> |
|
201 |
[% 'Item values' | $T8 %] ([% 'Only shown in item mode' | $T8 %]) |
|
202 |
</td> |
|
203 |
</tr> |
|
204 |
|
|
205 |
<tr> |
|
206 |
<td align=left><input name="l_description" class=checkbox type=checkbox value=Y checked>[% 'Description' | $T8 %]</td> |
|
207 |
<td align=left><input name="l_partnumber" class=checkbox type=checkbox value=Y>[% 'Part Number' | $T8 %]</td> |
|
208 |
<td align=left><input name="l_invnumber" class=checkbox type=checkbox value=Y>[% 'Invnumber' | $T8 %]</td> |
|
209 |
<td align=left><input name="l_transdate" class=checkbox type=checkbox value=Y>[% 'Invdate' | $T8 %]</td> |
|
210 |
</tr> |
|
211 |
|
|
212 |
<tr> |
|
213 |
<td align=left><input name="l_parts_unit" class=checkbox type=checkbox value=Y>[% 'Base unit' | $T8 %]</td> |
|
214 |
<td align=left><input name="l_partsgroup" class=checkbox type=checkbox value=Y>[% 'Partsgroup' | $T8 %]</td> |
|
215 |
<td align=left><input name="l_salesman" class=checkbox type=checkbox value=Y>[% 'Salesperson' | $T8 %]</td> |
|
216 |
<td align=left><input name="l_employee" class=checkbox type=checkbox value=Y>[% 'Employee' | $T8 %]</td> |
|
217 |
</tr> |
|
218 |
|
|
219 |
<tr> |
|
220 |
<td align=left><input name="l_customernumber" class=checkbox type=checkbox value=Y>[% 'Customer Number' | $T8 %]</td> |
|
221 |
<td align=left><input name="l_customername" class=checkbox type=checkbox value=Y>[% 'Customer Name' | $T8 %]</td> |
|
222 |
<td align=left><input name="l_country" class=checkbox type=checkbox value=Y>[% 'Country' | $T8 %]</td> |
|
223 |
<td align=left><input name="l_business" class=checkbox type=checkbox value=Y>[% 'Customer type' | $T8 %]</td> |
|
224 |
</tr> |
|
225 |
<tr> |
|
226 |
<td align=left><input name="l_shipvia" class=checkbox type=checkbox value=Y>[% 'Ship via' | $T8 %]</td> |
|
227 |
</tr> |
|
228 |
<tr> |
|
229 |
<th colspan="4" align="left"> |
|
230 |
[% 'Customer variables' | $T8 %] ([% 'Only shown in item mode' | $T8 %]) |
|
231 |
</th> |
|
232 |
</tr> |
|
233 |
[% CUSTOM_VARIABLES_INCLUSION_CODE_CT %] |
|
234 |
|
|
235 |
<tr> |
|
236 |
<th colspan="4" align="left"> |
|
237 |
[% 'Item variables' | $T8 %] ([% 'Only shown in item mode' | $T8 %]) |
|
238 |
</th> |
|
239 |
</tr> |
|
240 |
[% CUSTOM_VARIABLES_INCLUSION_CODE_IC %] |
|
241 |
|
|
242 |
</table> |
|
243 |
</td> |
|
197 |
<th colspan="4"><h4>[% 'Item values' | $T8 %] ([% 'Only shown in item mode' | $T8 %])</h4></th> |
|
244 | 198 |
</tr> |
245 |
|
|
199 |
<tr> |
|
200 |
<td><input name="l_description" id="l_description" type=checkbox value=Y checked><label for="l_description">[% 'Description' | $T8 %]</label></td> |
|
201 |
<td><input name="l_partnumber" id="l_partnumber" type=checkbox value=Y><label for="l_partnumber">[% 'Part Number' | $T8 %]</label></td> |
|
202 |
<td><input name="l_invnumber" id="l_invnumber" type=checkbox value=Y><label for="l_invnumber">[% 'Invnumber' | $T8 %]</label></td> |
|
203 |
<td><input name="l_transdate" id="l_transdate" type=checkbox value=Y><label for="l_transdate">[% 'Invdate' | $T8 %]</label></td> |
|
204 |
</tr> |
|
205 |
<tr> |
|
206 |
<td><input name="l_parts_unit" id="l_parts_unit" type=checkbox value=Y><label for="l_parts_unit">[% 'Base unit' | $T8 %]</label></td> |
|
207 |
<td><input name="l_partsgroup" id="l_partsgroup" type=checkbox value=Y><label for="l_partsgroup">[% 'Partsgroup' | $T8 %]</label></td> |
|
208 |
<td><input name="l_salesman" id="l_salesman" type=checkbox value=Y><label for="l_salesman">[% 'Salesperson' | $T8 %]</label></td> |
|
209 |
<td><input name="l_employee" id="l_employee" type=checkbox value=Y><label for="l_employee">[% 'Employee' | $T8 %]</label></td> |
|
210 |
</tr> |
|
211 |
<tr> |
|
212 |
<td><input name="l_customernumber" id="l_customernumber" type=checkbox value=Y><label for="l_customernumber">[% 'Customer Number' | $T8 %]</label></td> |
|
213 |
<td><input name="l_customername" id="l_customername" type=checkbox value=Y><label for="l_customername">[% 'Customer Name' | $T8 %]</label></td> |
|
214 |
<td><input name="l_country" id="l_country" type=checkbox value=Y><label for="l_country">[% 'Country' | $T8 %]</label></td> |
|
215 |
<td><input name="l_business" id="l_business" type=checkbox value=Y><label for="l_business">[% 'Customer type' | $T8 %]</label></td> |
|
216 |
</tr> |
|
217 |
<tr> |
|
218 |
<td><input name="l_shipvia" class=checkbox type=checkbox value=Y>[% 'Ship via' | $T8 %]</td> |
|
219 |
</tr> |
|
220 |
</tbody> |
|
246 | 221 |
</table> |
247 | 222 |
|
248 |
<hr size="3" noshade=""> |
|
249 |
|
|
250 |
<input class=submit type=submit name=action value="[% 'Continue' | $T8 %]"> |
|
223 |
<table class="tbl-plain clear"> |
|
224 |
<tbody> |
|
225 |
<tr> |
|
226 |
<th colspan="4"><h4>[% 'Customer variables' | $T8 %] ([% 'Only shown in item mode' | $T8 %])</h4></th> |
|
227 |
</tr> |
|
228 |
[% CUSTOM_VARIABLES_INCLUSION_CODE_CT %] |
|
229 |
</tbody> |
|
230 |
</table> |
|
251 | 231 |
|
252 |
<br><br> |
|
232 |
<table class="tbl-plain clear"> |
|
233 |
<tbody> |
|
234 |
<tr> |
|
235 |
<th colspan="4"><h4>[% 'Item variables' | $T8 %] ([% 'Only shown in item mode' | $T8 %])</h4></th> |
|
236 |
</tr> |
|
237 |
[% CUSTOM_VARIABLES_INCLUSION_CODE_IC %] |
|
238 |
</tbody> |
|
239 |
</table> |
|
240 |
</div> |
|
253 | 241 |
|
254 | 242 |
</form> |
255 | 243 |
|
Auch abrufbar als: Unified diff
Neues Design 2019 Standard-Code templates/webpages/vk/search_invoice.html