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