Revision 2a52cc51
Von Hans P. Schlaepfer vor fast 5 Jahren hinzugefügt
templates/webpages/ar/search.html | ||
---|---|---|
4 | 4 |
[% SET style="width: 250px" %] |
5 | 5 |
<h1>[% title %]</h1> |
6 | 6 |
|
7 |
<form method=post name="search" id="form" action=[% script %]>
|
|
8 |
[% L.hidden_tag("action", nextsub) %]
|
|
7 |
<form method=post name="search" id="form" action=[% script %]> |
|
8 |
[% L.hidden_tag("action", nextsub) %] |
|
9 | 9 |
|
10 |
<table width=100% border="0"> |
|
11 |
<tr> |
|
12 |
<td> |
|
13 |
<table> |
|
14 |
<tr> |
|
15 |
<th align=right>[% 'Customer' | $T8 %]</th> |
|
16 |
<td>[% L.input_tag("customer", customer, style=style, class="initial_focus") %]</td> |
|
17 |
</tr> |
|
18 |
<tr> |
|
19 |
<th align="right" nowrap>[% 'Contact Person' | $T8 %]</th> |
|
20 |
<td>[% L.input_tag("cp_name", '', style=style) %]</td> |
|
21 |
</tr> |
|
22 |
<tr> |
|
23 |
<th align=right nowrap>[% 'Department' | $T8 %]</th> |
|
24 |
<td>[% L.select_tag('department_id', ALL_DEPARTMENTS, title_key = 'description', with_empty = 1, style=style) %]</td> |
|
25 |
</tr> |
|
26 |
<tr> |
|
27 |
<th align=right nowrap>[% 'Invoice Number' | $T8 %]</th> |
|
28 |
<td>[% L.input_tag("invnumber", "", style=style) %]</td> |
|
29 |
</tr> |
|
30 |
<tr> |
|
31 |
<th align=right nowrap>[% 'Order Number' | $T8 %]</th> |
|
32 |
<td>[% L.input_tag("ordnumber", "", style=style) %]</td> |
|
33 |
</tr> |
|
34 |
<tr> |
|
35 |
<th align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th> |
|
36 |
<td>[% L.input_tag("cusordnumber", "", style=style) %]</td> |
|
37 |
</tr> |
|
38 |
<tr> |
|
39 |
<th align="right">[% 'Employee' | $T8 %]</th> |
|
40 |
<td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style=style) %]</td> |
|
41 |
</tr> |
|
42 |
<tr> |
|
43 |
<th align="right">[% 'Salesman' | $T8 %]</th> |
|
44 |
<td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style=style) %]</td> |
|
45 |
</tr> |
|
46 |
<tr> |
|
47 |
<th align=right nowrap>[% 'Transaction description' | $T8 %]</th> |
|
48 |
<td>[% L.input_tag("transaction_description", "", style=style) %]</td> |
|
49 |
<th align="right">[% 'Part Description' | $T8 %]</th> |
|
50 |
<td>[% L.input_tag("parts_description", "", style=style) %]</td> |
|
51 |
</tr> |
|
52 |
<tr> |
|
53 |
<th align=right nowrap>[% 'Notes' | $T8 %]</th> |
|
54 |
<td>[% L.input_tag("notes", "", style=style) %]</td> |
|
55 |
<th align="right">[% 'Part Number' | $T8 %]</th> |
|
56 |
<td>[% L.input_tag("parts_partnumber", "", style=style) %]</td> |
|
57 |
</tr> |
|
58 |
<tr> |
|
59 |
<th align="right">[% 'Project Number' | $T8 %]</th> |
|
60 |
<td>[% P.project.picker("project_id", project_id, style=style) %]</td> |
|
61 |
</tr> |
|
62 |
[% IF ALL_BUSINESS_TYPES.as_list.size > 0 %] |
|
63 |
<tr> |
|
64 |
<th align="right" nowrap>[% 'Customer type' | $T8 %]</th> |
|
65 |
<td>[% L.select_tag("business_id", ALL_BUSINESS_TYPES, with_empty=1, title_key="description", style=style) %]</td> |
|
66 |
</tr> |
|
67 |
[% END %] |
|
68 |
<tr> |
|
69 |
<th>[% 'Show only marked as paid invoices' | $T8 %]</th> |
|
70 |
<td>[% L.checkbox_tag('show_marked_as_closed') %]</td> |
|
71 |
</tr> |
|
72 |
[% IF INSTANCE_CONF.get_email_journal %] |
|
73 |
<tr> |
|
74 |
<th>[% 'Show only not mailed invoices' | $T8 %]</th> |
|
75 |
<td>[% L.checkbox_tag('show_not_mailed') %]</td> |
|
76 |
</tr> |
|
77 |
[% END %] |
|
78 |
<tr> |
|
79 |
<th align=right nowrap>[% 'Invoice Date' | $T8 %]</th> |
|
80 |
<td> |
|
81 |
[% L.date_tag('transdatefrom') %] |
|
82 |
[% 'Bis' | $T8 %] |
|
83 |
[% L.date_tag('transdateto') %] |
|
84 |
</td> |
|
85 |
</tr> |
|
86 |
<tr> |
|
87 |
<th align=right nowrap>[% 'Due Date' | $T8 %]</th> |
|
88 |
<td> |
|
89 |
[% L.date_tag('duedatefrom') %] |
|
90 |
[% 'Bis' | $T8 %] |
|
91 |
[% L.date_tag('duedateto') %] |
|
92 |
</td> |
|
93 |
</tr> |
|
10 |
<div class="wrapper"> |
|
94 | 11 |
|
95 |
[%- IF CT_CUSTOM_VARIABLES.size %] |
|
96 |
<tr> |
|
97 |
<td></td> |
|
98 |
<td colspan=4 align=left><b>[% 'Custom variables for module' | $T8 %]: [%'Customers and vendors' | $T8 %]</td> |
|
99 |
</tr> |
|
100 |
[% CT_CUSTOM_VARIABLES_FILTER_CODE %] |
|
101 |
[%- END %] |
|
12 |
<div class="col"> |
|
13 |
<table class="tbl-horizontal"> |
|
14 |
<caption>[% 'Customer' | $T8 %]</caption> |
|
15 |
<tbody> |
|
16 |
<tr> |
|
17 |
<th>[% 'Customer' | $T8 %]</th> |
|
18 |
<td>[% L.input_tag("customer", customer, style=style, class="initial_focus") %]</td> |
|
19 |
</tr> |
|
20 |
<tr> |
|
21 |
<th>[% 'Contact Person' | $T8 %]</th> |
|
22 |
<td>[% L.input_tag("cp_name", '', style=style) %]</td> |
|
23 |
</tr> |
|
24 |
<tr> |
|
25 |
<th>[% 'Department' | $T8 %]</th> |
|
26 |
<td>[% L.select_tag('department_id', ALL_DEPARTMENTS, title_key = 'description', with_empty = 1, style=style) %]</td> |
|
27 |
</tr> |
|
28 |
<tr> |
|
29 |
<th class="caption" colspan="2">[% 'Employee' | $T8 %]</th> |
|
30 |
</tr> |
|
31 |
<tr> |
|
32 |
<th>[% 'Employee' | $T8 %]</th> |
|
33 |
<td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style=style) %]</td> |
|
34 |
</tr> |
|
35 |
<tr> |
|
36 |
<th>[% 'Salesman' | $T8 %]</th> |
|
37 |
<td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key = 'safe_name', with_empty = 1, style=style) %]</td> |
|
38 |
</tr> |
|
39 |
<tr> |
|
40 |
<th class="caption" colspan="2">[% 'Order' | $T8 %]</th> |
|
41 |
</tr> |
|
42 |
<tr> |
|
43 |
<th>[% 'Transaction description' | $T8 %]</th> |
|
44 |
<td>[% L.input_tag("transaction_description", "", style=style) %]</td> |
|
45 |
</tr> |
|
46 |
<tr> |
|
47 |
<th>[% 'Notes' | $T8 %]</th> |
|
48 |
<td>[% L.input_tag("notes", "", style=style) %]</td> |
|
49 |
</tr> |
|
50 |
<tr> |
|
51 |
<th>[% 'Part Description' | $T8 %]</th> |
|
52 |
<td>[% L.input_tag("parts_description", "", style=style) %]</td> |
|
53 |
</tr> |
|
54 |
<tr> |
|
55 |
<th>[% 'Part Number' | $T8 %]</th> |
|
56 |
<td>[% L.input_tag("parts_partnumber", "", style=style) %]</td> |
|
57 |
</tr> |
|
58 |
</tbody> |
|
59 |
</table> |
|
60 |
</div><!-- /.col --> |
|
102 | 61 |
|
103 |
<input type=hidden name=sort value=transdate> |
|
104 |
</table> |
|
105 |
</td> |
|
106 |
</tr> |
|
107 |
<tr> |
|
108 |
<td> |
|
109 |
<table> |
|
110 |
<tr> |
|
111 |
<th align=right nowrap>[% 'Include in Report' | $T8 %]</th> |
|
112 |
<td> |
|
113 |
<table width=100%> |
|
62 |
<div class="col"> |
|
63 |
<table class="tbl-horizontal"> |
|
64 |
<caption>[% 'Record numbers and dates' | $T8 %]</caption> |
|
65 |
<tbody> |
|
66 |
<tr> |
|
67 |
<th>[% 'Invoice Number' | $T8 %]</th> |
|
68 |
<td>[% L.input_tag("invnumber", "", style=style) %]</td> |
|
69 |
</tr> |
|
70 |
<tr> |
|
71 |
<th>[% 'Order Number' | $T8 %]</th> |
|
72 |
<td>[% L.input_tag("ordnumber", "", style=style) %]</td> |
|
73 |
</tr> |
|
74 |
<tr> |
|
75 |
<th>[% 'Customer Order Number' | $T8 %]</th> |
|
76 |
<td>[% L.input_tag("cusordnumber", "", style=style) %]</td> |
|
77 |
</tr> |
|
78 |
<tr> |
|
79 |
<th>[% 'Project Number' | $T8 %]</th> |
|
80 |
<td>[% P.project.picker("project_id", project_id, style=style) %]</td> |
|
81 |
</tr> |
|
82 |
[% IF ALL_BUSINESS_TYPES.as_list.size > 0 %] |
|
114 | 83 |
<tr> |
115 |
<td align=right><input name=open id=open class=checkbox type=checkbox value=Y checked></td> |
|
116 |
<td nowrap>[% 'Open' | $T8 %]</td> |
|
117 |
<td align=right><input name=closed id=closed class=checkbox type=checkbox value=Y [% IF closed %] checked[% END %]></td> |
|
118 |
<td nowrap>[% 'Closed' | $T8 %]</td> |
|
84 |
<th>[% 'Customer type' | $T8 %]</th> |
|
85 |
<td>[% L.select_tag("business_id", ALL_BUSINESS_TYPES, with_empty=1, title_key="description", style=style) %]</td> |
|
119 | 86 |
</tr> |
87 |
[% END %] |
|
88 |
<tr> |
|
89 |
<th>[% 'Show only marked as paid invoices' | $T8 %]</th> |
|
90 |
<td>[% L.checkbox_tag('show_marked_as_closed') %]</td> |
|
91 |
</tr> |
|
92 |
[% IF INSTANCE_CONF.get_email_journal %] |
|
93 |
<tr> |
|
94 |
<th>[% 'Show only not mailed invoices' | $T8 %]</th> |
|
95 |
<td>[% L.checkbox_tag('show_not_mailed') %]</td> |
|
96 |
</tr> |
|
97 |
[% END %] |
|
98 |
<tr> |
|
99 |
<th>[% 'Invoice Date' | $T8 %]</th> |
|
100 |
<td> [% L.date_tag('transdatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('transdateto') %] </td> |
|
101 |
</tr> |
|
102 |
<tr> |
|
103 |
<th>[% 'Due Date' | $T8 %]</th> |
|
104 |
<td> [% L.date_tag('duedatefrom') %] [% 'Bis' | $T8 %] [% L.date_tag('duedateto') %] </td> |
|
105 |
</tr> |
|
106 |
[% IF CT_CUSTOM_VARIABLES.size %] |
|
120 | 107 |
<tr> |
121 |
<td align=right><input name="l_id" class=checkbox type=checkbox value=Y></td> |
|
122 |
<td nowrap>[% 'ID' | $T8 %]</td> |
|
123 |
<td align=right><input name="l_invnumber" id="l_invnumber" class=checkbox type=checkbox value=Y checked></td> |
|
124 |
<td nowrap>[% 'Invoice Number' | $T8 %]</td> |
|
125 |
<td align=right><input name="l_ordnumber" id="l_ordnumber" class=checkbox type=checkbox value=Y></td> |
|
126 |
<td nowrap>[% 'Order Number' | $T8 %]</td> |
|
127 |
<td align=right><input name="l_cusordnumber" id="l_cusordnumber" class=checkbox type=checkbox value=Y></td> |
|
128 |
<td nowrap>[% 'Customer Order Number' | $T8 %]</td> |
|
108 |
<th class="caption" colspan="2">[% 'Custom variables for module' | $T8 %]: [%'Customers and vendors' | $T8 %]</th> |
|
129 | 109 |
</tr> |
130 |
<tr> |
|
131 |
<td align=right><input name="l_transdate" id="l_transdate" class=checkbox type=checkbox value=Y checked></td> |
|
132 |
<td nowrap>[% 'Invoice Date' | $T8 %]</td> |
|
133 |
<td align=right><input name="l_name" id="l_name" class=checkbox type=checkbox value=Y checked></td> |
|
134 |
<td nowrap>[% 'Customer' | $T8 %]</td> |
|
135 |
<td align=right><input name="l_customernumber" id="l_customernumber" class=checkbox type=checkbox value=Y></td> |
|
136 |
<td nowrap>[% 'Customer Number' | $T8 %]</td> |
|
137 |
<td align=right><input name="l_department" id="l_department" class=checkbox type=checkbox value=Y></td> |
|
138 |
<td nowrap>[% 'Department' | $T8 %]</td> |
|
110 |
[% CT_CUSTOM_VARIABLES_FILTER_CODE %] |
|
111 |
[% END %] |
|
112 |
</tbody> |
|
113 |
</table> |
|
114 |
<input type=hidden name=sort value=transdate> |
|
115 |
</div><!-- /.col --> |
|
139 | 116 |
|
140 |
</tr> |
|
141 |
<tr> |
|
142 |
<td align=right><input name="l_netamount" id="l_netamount" class=checkbox type=checkbox value="Y" checked></td> |
|
143 |
<td nowrap>[% 'Amount' | $T8 %]</td> |
|
144 |
<td align=right><input name="l_tax" id="l_tax" class=checkbox type=checkbox value=Y></td> |
|
145 |
<td nowrap>[% 'Tax' | $T8 %]</td> |
|
146 |
<td align=right><input name="l_amount" id="l_amount" class=checkbox type=checkbox value="Y" checked></td> |
|
147 |
<td nowrap>[% 'Total' | $T8 %]</td> |
|
148 |
</tr> |
|
149 |
<tr> |
|
150 |
<td align=right><input name="l_datepaid" id="l_datepaid" class=checkbox type=checkbox value=Y></td> |
|
151 |
<td nowrap>[% 'Date Paid' | $T8 %]</td> |
|
152 |
<td align=right><input name="l_paid" id="l_paid" class=checkbox type=checkbox value=Y checked></td> |
|
153 |
<td nowrap>[% 'Paid' | $T8 %]</td> |
|
154 |
<td align=right><input name="l_duedate" id="l_duedate" class=checkbox type=checkbox value=Y></td> |
|
155 |
<td nowrap>[% 'Due Date' | $T8 %]</td> |
|
156 |
<td align=right><input name="l_due" id="l_due" class=checkbox type=checkbox value=Y></td> |
|
157 |
<td nowrap>[% 'Amount Due' | $T8 %]</td> |
|
158 |
</tr> |
|
159 |
<tr> |
|
160 |
<td align=right><input name="l_notes" id="l_notes" class=checkbox type=checkbox value=Y></td> |
|
161 |
<td nowrap>[% 'Notes' | $T8 %]</td> |
|
162 |
<td align=right><input name="l_salesman" id="l_salesman" class=checkbox type=checkbox value=Y></td> |
|
163 |
<td nowrap>[% 'Salesperson' | $T8 %]</td> |
|
164 |
<td align=right><input name="l_shippingpoint" id="l_shippingpoint" class=checkbox type=checkbox value=Y></td> |
|
165 |
<td nowrap>[% 'Shipping Point' | $T8 %]</td> |
|
166 |
<td align=right><input name="l_shipvia" id="l_shipvia" class=checkbox type=checkbox value=Y></td> |
|
167 |
<td nowrap>[% 'Ship via' | $T8 %]</td> |
|
168 |
</tr> |
|
169 |
<tr> |
|
170 |
<td align=right><input name="l_marge_total" id="l_marge_total" class=checkbox type=checkbox value=Y></td> |
|
171 |
<td nowrap> [% 'Ertrag' | $T8 %]</td> |
|
172 |
<td align=right><input name="l_marge_percent" id="l_marge_percent" class=checkbox type=checkbox value=Y></td> |
|
173 |
<td nowrap> [% 'Ertrag prozentual' | $T8 %]</td> |
|
174 |
<td align=right><input name="l_employee" id="l_employee" class=checkbox type=checkbox value=Y></td> |
|
175 |
<td nowrap>[% 'Employee' | $T8 %]</td> |
|
176 |
</tr> |
|
177 |
<tr> |
|
178 |
<td align=right><input name="l_subtotal" id="l_subtotal" class=checkbox type=checkbox value=Y></td> |
|
179 |
<td nowrap>[% 'Subtotal' | $T8 %]</td> |
|
180 |
<td align=right><input name="l_globalprojectnumber" id="l_globalprojectnumber" class=checkbox type=checkbox value=Y></td> |
|
181 |
<td nowrap>[% 'Document Project Number' | $T8 %]</td> |
|
182 |
<td align=right><input name="l_transaction_description" id="l_transaction_description" class=checkbox type=checkbox value=Y[% IF INSTANCE_CONF.get_require_transaction_description_ps %] checked[% END %]></td> |
|
183 |
<td nowrap>[% 'Transaction description' | $T8 %]</td> |
|
184 |
<td align=right><input name="l_dunning_description" id="l_dunning_description" class=checkbox type=checkbox value=Y></td> |
|
185 |
<td nowrap>[% 'Dunning level' | $T8 %]</td> |
|
186 |
</tr> |
|
187 |
<tr> |
|
188 |
<td align=right><input name="l_taxzone" id="l_taxzone" class=checkbox type=checkbox value=Y></td> |
|
189 |
<td nowrap>[% 'Steuersatz' | $T8 %]</td> |
|
190 |
<td align=right><input name="l_payment_terms" id="l_payment_terms" class=checkbox type=checkbox value=Y></td> |
|
191 |
<td nowrap>[% 'Payment Terms' | $T8 %]</td> |
|
192 |
<td align=right><input name="l_charts" id="l_charts" class=checkbox type=checkbox value=Y></td> |
|
193 |
<td nowrap>[% 'Chart' | $T8 %]</td> |
|
194 |
<td align=right><input name="l_direct_debit" id="l_direct_debit" class=checkbox type=checkbox value=Y></td> |
|
195 |
<td nowrap>[% 'direct debit' | $T8 %]</td> |
|
196 |
</tr> |
|
197 |
<tr> |
|
198 |
<td colspan=4 align=left><b>[% 'Customer' | $T8 %] </td> |
|
199 |
</tr> |
|
200 |
<tr> |
|
201 |
<td align=right><input name="l_customernumber" id="l_customernumber" class=checkbox type=checkbox value=Y></td> |
|
202 |
<td nowrap>[% 'Customer Number' | $T8 %]</td> |
|
203 |
<td align=right><input name="l_country" id="l_country" class=checkbox type=checkbox value=Y></td> |
|
204 |
<td nowrap>[% 'Country' | $T8 %]</td> |
|
205 |
<td align=right><input name="l_ustid" id="l_ustid" class=checkbox type=checkbox value=Y></td> |
|
206 |
<td nowrap>[% 'USt-IdNr.' | $T8 %]</td> |
|
207 |
</tr> |
|
117 |
</div><!-- /.wrapper --> |
|
208 | 118 |
|
209 |
<table> |
|
210 |
<tr><td align="right"> |
|
211 |
[% CT_CUSTOM_VARIABLES_INCLUSION_CODE %] |
|
212 |
</td></tr> |
|
213 |
</table> |
|
119 |
<div class="wrapper form-addition control-panel"> |
|
120 |
<h3>[% 'Include in Report' | $T8 %]</h3> |
|
121 |
<div class="list col"> |
|
122 |
<h4>[% 'Status' | $T8 %]</h4> |
|
123 |
<div> |
|
124 |
<input name="open" id="open" type="checkbox" checked><label for="open">[% 'Open' | $T8 %]</label> |
|
125 |
</div> |
|
126 |
<div> |
|
127 |
<input name="closed" id="closed" type="checkbox" [% IF closed %] checked[% END %]><label for="closed">[% 'Closed' | $T8 %]</label> |
|
128 |
</div> |
|
129 |
<div> |
|
130 |
<input name="l_paid" id="l_paid" type="checkbox" checked><label for="l_paid">[% 'Paid' | $T8 %]</label> |
|
131 |
</div> |
|
132 |
<div> |
|
133 |
<input name="l_dunning_description" id="l_dunning_description" type="checkbox"><label for="l_dunning_description">[% 'Dunning level' | $T8 %]</label> |
|
134 |
</div> |
|
135 |
</div> |
|
136 |
<div class="list col"> |
|
137 |
<h4>[% 'Numbers' | $T8 %]</h4> |
|
138 |
<div> |
|
139 |
<input name="l_id" id="l_id" type="checkbox"><label for="l_id">[% 'ID' | $T8 %]</label> |
|
140 |
</div> |
|
141 |
<div> |
|
142 |
<input name="l_invnumber" id="l_invnumber" type="checkbox" checked><label for="l_invnumber">[% 'Invoice Number' | $T8 %]</label> |
|
143 |
</div> |
|
144 |
<div> |
|
145 |
<input name="l_ordnumber" id="l_ordnumber" type="checkbox"><label for="l_ordnumber">[% 'Order Number' | $T8 %]</label> |
|
146 |
</div> |
|
147 |
<div> |
|
148 |
<input name="l_globalprojectnumber" id="l_globalprojectnumber" type="checkbox"><label for="l_globalprojectnumber">[% 'Document Project Number' | $T8 %]</label> |
|
149 |
</div> |
|
150 |
<div> |
|
151 |
<input name="l_cusordnumber" id="l_cusordnumber" type="checkbox"><label for="l_cusordnumber">[% 'Customer Order Number' | $T8 %]</label> |
|
152 |
</div> |
|
153 |
<div> |
|
154 |
<input name="l_ustid" id="l_ustid" type="checkbox"><label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label> |
|
155 |
</div> |
|
156 |
</div> |
|
157 |
<div class="list col"> |
|
158 |
<h4>[% 'Date' | $T8 %]</h4> |
|
159 |
<div> |
|
160 |
<input name="l_transdate" id="l_transdate" type="checkbox" checked><label for="l_transdate">[% 'Invoice Date' | $T8 %]</label> |
|
161 |
</div> |
|
162 |
<div> |
|
163 |
<input name="l_datepaid" id="l_datepaid" type="checkbox"><label for="l_datepaid">[% 'Date Paid' | $T8 %]</label> |
|
164 |
</div> |
|
165 |
<div> |
|
166 |
<input name="l_duedate" id="l_duedate" type="checkbox"><label for="l_duedate">[% 'Due Date' | $T8 %]</label> |
|
167 |
</div> |
|
168 |
</div> |
|
169 |
<div class="list col"> |
|
170 |
<h4>[% 'Customer' | $T8 %]</h4> |
|
171 |
<div> |
|
172 |
<input name="l_name" id="l_name" type="checkbox" checked><label for="l_name">[% 'Customer' | $T8 %]</label> |
|
173 |
</div> |
|
174 |
<div> |
|
175 |
<input name="l_customernumber" id="l_customernumber" type="checkbox"><label for="l_customernumber">[% 'Customer Number' | $T8 %]</label> |
|
176 |
</div> |
|
177 |
<div> |
|
178 |
<input name="l_department" id="l_department" type="checkbox"><label for="l_department">[% 'Department' | $T8 %]</label> |
|
179 |
</div> |
|
180 |
<div> |
|
181 |
<input name="l_country" id="l_country" type="checkbox"><label for="l_country">[% 'Country' | $T8 %]</label> |
|
182 |
</div> |
|
183 |
</div> |
|
184 |
<div class="list col"> |
|
185 |
<h4>[% 'Amounts' | $T8 %]</h4> |
|
186 |
<div> |
|
187 |
<input name="l_netamount" id="l_netamount" type="checkbox" value="Y" checked><label for="l_netamount">[% 'Amount' | $T8 %]</label> |
|
188 |
</div> |
|
189 |
<div> |
|
190 |
<input name="l_amount" id="l_amount" type="checkbox" value="Y" checked><label for="l_amount">[% 'Total' | $T8 %]</label> |
|
191 |
</div> |
|
192 |
<div> |
|
193 |
<input name="l_subtotal" id="l_subtotal" type="checkbox"><label for="l_subtotal">[% 'Subtotal' | $T8 %]</label> |
|
194 |
</div> |
|
195 |
<div> |
|
196 |
<input name="l_due" id="l_due" type="checkbox"><label for="l_due">[% 'Amount Due' | $T8 %]</label> |
|
197 |
</div> |
|
198 |
<div> |
|
199 |
<input name="l_marge_total" id="l_marge_total" type="checkbox"><label for="l_marge_total">[% 'Ertrag' | $T8 %]</label> |
|
200 |
</div> |
|
201 |
<div> |
|
202 |
<input name="l_marge_percent" id="l_marge_percent" type="checkbox"><label for="l_marge_percent">[% 'Ertrag prozentual' | $T8 %]</label> |
|
203 |
</div> |
|
204 |
<div> |
|
205 |
<input name="l_tax" id="l_tax" type="checkbox"><label for="l_tax">[% 'Tax' | $T8 %]</label> |
|
206 |
</div> |
|
207 |
<div> |
|
208 |
<input name="l_taxzone" id="l_taxzone" type="checkbox"><label for="l_taxzone">[% 'Steuersatz' | $T8 %]</label> |
|
209 |
</div> |
|
210 |
</div> |
|
211 |
<div class="list col"> |
|
212 |
<h4>[% 'Order' | $T8 %]</h4> |
|
213 |
<div> |
|
214 |
<input name="l_notes" id="l_notes" type="checkbox"><label for="l_notes">[% 'Notes' | $T8 %]</label> |
|
215 |
</div> |
|
216 |
<div> |
|
217 |
<input name="l_shippingpoint" id="l_shippingpoint" type="checkbox"><label for="l_shippingpoint">[% 'Shipping Point' | $T8 %]</label> |
|
218 |
</div> |
|
219 |
<div> |
|
220 |
<input name="l_shipvia" id="l_shipvia" type="checkbox"><label for="l_shipvia">[% 'Ship via' | $T8 %]</label> |
|
221 |
</div> |
|
222 |
<div> |
|
223 |
<input name="l_transaction_description" id="l_transaction_description" type="checkbox" [% IF INSTANCE_CONF.get_require_transaction_description_ps %] checked[% END %]><label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label> |
|
224 |
</div> |
|
225 |
<div> |
|
226 |
<input name="l_payment_terms" id="l_payment_terms" type="checkbox"><label for="l_payment_terms">[% 'Payment Terms' | $T8 %]</label> |
|
227 |
</div> |
|
228 |
<div> |
|
229 |
<input name="l_charts" id="l_charts" type="checkbox"><label for="l_charts">[% 'Chart' | $T8 %]</label> |
|
230 |
</div> |
|
231 |
<div> |
|
232 |
<input name="l_direct_debit" id="l_direct_debit" type="checkbox"><label for="l_direct_debit">[% 'direct debit' | $T8 %]</label> |
|
233 |
</div> |
|
234 |
</div> |
|
235 |
<div class="list col"> |
|
236 |
<h4>[% 'Employee' | $T8 %]</h4> |
|
237 |
<div> |
|
238 |
<input name="l_salesman" id="l_salesman" type="checkbox"><label for="l_salesman">[% 'Salesperson' | $T8 %]</label> |
|
239 |
</div> |
|
240 |
<div> |
|
241 |
<input name="l_employee" id="l_employee" type="checkbox"><label for="l_employee">[% 'Employee' | $T8 %]</label> |
|
242 |
</div> |
|
243 |
</div> |
|
244 |
<div class="list col"> |
|
245 |
<h4>[% 'Custom Variables' | $T8 %]</h4> |
|
246 |
<div class="no-rows"> |
|
247 |
[% CT_CUSTOM_VARIABLES_INCLUSION_CODE %] |
|
248 |
</div> |
|
249 |
</div> |
|
250 |
</div> |
|
251 |
<!-- /.wrapper.form-addition --> |
|
214 | 252 |
|
215 |
</table> |
|
216 |
</td> |
|
217 |
</tr> |
|
218 |
</table> |
|
219 |
</td> |
|
220 |
</tr> |
|
221 |
</table> |
|
222 |
</form> |
|
253 |
</form> |
Auch abrufbar als: Unified diff
Neues Design 2019 Standard-Code templates/webpages/ar/search.html