ActionBar: Verwendung in Berichtsfunktion in oe.pl
[kivitendo-erp.git] / templates / webpages / oe / search.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE LxERP %]
4 [%- USE L %][%- USE P -%]
5 <h1>[% HTML.escape(title) %]</h1>
6
7 [%- SET vclabel = vc == 'customer' ? LxERP.t8('Customer') : LxERP.t8('Vendor') %]
8 [%- SET vcnumberlabel = vc == 'customer' ? LxERP.t8('Customer Number') : LxERP.t8('Vendor Number') %]
9 [%- SET vctypelabel = vc == 'customer' ? LxERP.t8('Customer type') : LxERP.t8('Vendor type') %]
10 [%- SET vcdefault = 'old' _ vc %]
11 [%- SET style="width: 250px" %]
12
13 <form method="post" action="oe.pl" id="form">
14
15 <table width="100%">
16  <tr>
17   <td>
18    <table>
19     <tr>
20      <th align="right">[% HTML.escape(vclabel) %]</th>
21      <td>[% L.input_tag(vc, $vcdefault, style=style, class="initial_focus") %]</td>
22     </tr>
23     <tr>
24      <th align="right" nowrap>[% 'Contact Person' | $T8 %]</th>
25      <td>[% L.input_tag("cp_name", '', style=style) %]</td>
26     </tr>
27 [%- IF ALL_DEPARTMENTS.size %]
28     <tr>
29      <th align="right" nowrap>[% 'Department' | $T8 %]</th>
30      <td colspan=3>[% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style=style) %]</td>
31     </tr>
32 [%- END %]
33     <tr>
34      <th align="right">[% HTML.escape(ordlabel) %]</th>
35      <td>[% L.input_tag(ordnrname, "", style=style) %]</td>
36     </tr>
37 [% IF is_order %]
38     <tr>
39      <th align="right">[% LxERP.t8("Customer Order Number") %]</th>
40      <td>[% L.input_tag("cusordnumber", '', style=style) %]</td>
41     </tr>
42 [% END %]
43     <tr>
44      <th align="right">[% 'Employee' | $T8 %]</th>
45      <td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style=style) %]</td>
46     </tr>
47     <tr>
48      <th align="right">[% 'Salesman' | $T8 %]</th>
49      <td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style=style) %]</td>
50     </tr>
51     <tr>
52      <th align="right">[% 'Steuersatz' | $T8 %]</th>
53      <td>[% L.select_tag('taxzone_id', ALL_TAXZONES, with_empty=1, title_key='description', style=style) %]</td>
54     </tr>
55     <tr>
56      <th align="right">[% 'Shipping Point' | $T8 %]</th>
57      <td>[% L.input_tag('shippingpoint', '', style=style) %]</td>
58     </tr>
59     <tr>
60      <th align="right">[% 'Transaction description' | $T8 %]</th>
61      <td>[% L.input_tag("transaction_description", "", style=style) %]</td>
62
63      <th align="right">[% 'Part Description' | $T8 %]</th>
64      <td>[% L.input_tag("parts_description", "", style=style) %]</td>
65     </tr>
66     <tr>
67      <th align="right">[% 'Project' | $T8 %]</th>
68      <td>[% P.project_picker("project_id", '', style=style) %]</td>
69
70      <th align="right">[% 'Part Number' | $T8 %]</th>
71      <td>[% L.input_tag("parts_partnumber", "", style=style) %]</td>
72     </tr>
73     [%- UNLESS ALL_BUSINESS_TYPES.size == 0 %]
74     <tr>
75      <th align="right" nowrap>[% vctypelabel %]</th>
76      <td>
77       [% L.select_tag('business_id', ALL_BUSINESS_TYPES, title_key = 'description', with_empty = 1, style=style) %]
78      </td>
79     </tr>
80     [%- END %]
81     <tr>
82      <th align="right">[% IF is_order %][% 'Order Date' | $T8 %][% ELSE %][% 'Quotation Date' | $T8 %][% END %] [% 'From' | $T8 %]</th>
83      <td>
84        [% L.date_tag('transdatefrom') %]
85        [% 'Bis' | $T8 %]
86       [% L.date_tag('transdateto') %]
87      </td>
88     </tr>
89     <tr>
90      <th align="right">[% IF is_order %][% 'Delivery Date' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %] [% 'From' | $T8 %]</th>
91      <td>
92        [% L.date_tag('reqdatefrom') %]
93        [% 'Bis' | $T8 %]
94        [% L.date_tag('reqdateto') %]
95      </td>
96     </tr>
97
98     [%- IF type == 'sales_order' %]
99     <tr>
100      <th align="right">[% 'Insert Date' | $T8 %] [% 'From' | $T8 %]</th>
101      <td>
102        [% L.date_tag('insertdatefrom') %]
103        [% 'Bis' | $T8 %]
104        [% L.date_tag('insertdateto') %]
105      </td>
106     </tr>
107     [%- END %]
108
109 [%- IF type == 'sales_quotation' %]
110     <tr>
111      <th align="right">[% 'Expected billing date' | $T8 %] [% 'From' | $T8 %]</th>
112      <td>
113       [% L.date_tag('expected_billing_date_from', '' 'BL') %]
114       [% 'Bis' | $T8 %]
115       [% L.date_tag('expected_billing_date_to', '' 'BL') %]
116      </td>
117     </tr>
118     <tr>
119      <th align="right">[% 'Order probability' | $T8 %]</th>
120      <td>
121       [% L.select_tag('order_probability_op', [[ 'ge', '>=' ], [ 'le', '<=' ]]) %]
122       [% L.select_tag('order_probability_value', ORDER_PROBABILITIES, title='title', with_empty=1) %]
123      </td>
124     </tr>
125 [%- END %]
126
127 [%- IF CT_CUSTOM_VARIABLES.size %]
128     <tr>
129       <td></td>
130       <td colspan=4 align=left><b>[% 'Custom variables for module' | $T8 %]: [%'Customers and vendors' | $T8 %]</td>
131     </tr>
132     [% CT_CUSTOM_VARIABLES_FILTER_CODE %]
133 [%- END %]
134
135     <tr>
136      <th align="right">[% 'Include in Report' | $T8 %]</th>
137      <td colspan="5">
138       <table>
139        <tr>
140         <td>
141          <input type="checkbox" name="open" value="1" id="open" checked>
142          <label for="open">[% 'Open' | $T8 %]</label>
143         </td>
144         <td>
145          <input type="checkbox" name="closed" value="1" id="closed">
146          <label for="closed">[% 'Closed' | $T8 %]</label>
147         </td>
148        </tr>
149 [%- IF type == 'sales_order' OR type == 'purchase_order' %]
150        <tr>
151         <td>
152          <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
153          <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
154         </td>
155         <td>
156          <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
157          <label for="delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
158         </td>
159        </tr>
160 [%- END %]
161 [%- IF type == 'sales_order' %]
162        <tr>
163         <td>
164          [% L.checkbox_tag("periodic_invoices_active", label => LxERP.t8("Periodic invoices active")) %]
165         </td>
166         <td>
167          [% L.checkbox_tag("periodic_invoices_inactive", label => LxERP.t8("Periodic invoices inactive")) %]
168         </td>
169        </tr>
170 [%- END %]
171        <tr>
172         <td>
173          <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
174          <label for="l_id">[% 'ID' | $T8 %]</label>
175         </td>
176         <td>
177          <input name="l_[% HTML.escape(ordnrname) %]" id="l_[% HTML.escape(ordnrname) %]" class="checkbox" type="checkbox" value="Y" checked>
178          <label for="l_[% HTML.escape(ordnrname) %]">[% HTML.escape(ordlabel) %]</label>
179         </td>
180 [% IF is_order %]
181         <td>
182          <input name="l_cusordnumber" id="l_cusordnumber" class="checkbox" type="checkbox" value="Y" checked>
183          <label for="l_cusordnumber">[% LxERP.t8("Customer Order Number") %]</label>
184         </td>
185 [% END %]
186        </tr>
187        <tr>
188         <td>
189          <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
190          <label for="l_transdate">[% 'Date' | $T8 %]</label>
191         </td>
192         <td>
193          <input name="l_reqdate" id="l_reqdate" class="checkbox" type="checkbox" value="Y" checked>
194          <label for="l_reqdate">[% IF is_order %][% 'Required by' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %]</label>
195         </td>
196         [%- IF type == 'sales_order' %]
197         <td>
198           <input name="l_insertdate" id="l_insertdate" class="checkbox" type="checkbox" value="Y">
199           <label for="l_insertdate">[% 'Insert Date' | $T8 %]</label>
200         </td>
201         [%- END %]
202        </tr>
203        <tr>
204         <td>
205          <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
206          <label for="l_name">[% HTML.escape(vclabel) %]
207         </td>
208         <td>
209          <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
210          <label for="l_employee">[% 'Employee' | $T8 %]</label>
211         </td>
212         <td>
213          <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
214          <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
215         </td>
216        </tr>
217        <tr>
218         <td>
219          <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
220          <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
221         </td>
222         <td>[%- L.checkbox_tag('l_taxzone',       label => LxERP.t8('Steuersatz'))     %]</td>
223         <td>[%- L.checkbox_tag('l_shippingpoint', label => LxERP.t8('Shipping Point')) %]</td>
224        </tr>
225        <tr>
226         <td>
227          <input name="l_netamount" id="l_netamount" class="checkbox" type="checkbox" value="Y">
228          <label for="l_netamount">[% 'Amount' | $T8 %]</label>
229         </td>
230         <td>
231          <input name="l_tax" id="l_tax" class="checkbox" type="checkbox" value="Y">
232          <label for="l_tax">[% 'Tax' | $T8 %]</label>
233         </td>
234         <td>
235          <input name="l_amount" id="l_amount" class="checkbox" type="checkbox" value="Y" checked>
236          <label for="l_amount">[% 'Total' | $T8 %]</label>
237         </td>
238        </tr>
239        <tr>
240         <td>
241          <input name="l_marge_total" id="l_marge_total" class="checkbox" type="checkbox" value="Y">
242          <label for="l_marge_total">[% 'Ertrag' | $T8 %]</label>
243         </td>
244         <td>
245          <input name="l_marge_percent" id="l_marge_percent" class="checkbox" type="checkbox" value="Y">
246          <label for="l_marge_percent">[% 'Ertrag prozentual' | $T8 %]</label>
247         </td>
248         <td>
249          <input name="l_payment_terms" id="l_payment_terms" class="checkbox" type="checkbox" value="Y">
250          <label for="l_payment_terms">[% 'Payment Terms' | $T8 %]</label>
251         </td>
252        </tr>
253        <tr>
254         <td>
255          <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
256          <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
257         </td>
258         <td>
259          <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 %]>
260          <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
261         </td>
262        </tr>
263        <tr>
264         <td>
265          <input name="l_subtotal" id="l_subtotal" class="checkbox" type="checkbox" value="Y">
266          <label for="l_subtotal">[% 'Subtotal' | $T8 %]</label>
267         </td>
268         <td>
269          <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
270          <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
271         </td>
272        </tr>
273 [% IF type == 'sales_quotation' %]
274        <tr>
275         <td colspan="2">
276          <input name="l_order_probability_expected_billing_date" id="l_order_probability_expected_billing_date" class="checkbox" type="checkbox" value="Y">
277          <label for="l_order_probability_expected_billing_date">[% 'Order probability & expected billing date' | $T8 %]</label>
278         </td>
279        </tr>
280 [%- END %]
281        <tr>
282         <td>
283          <input name="l_remaining_amount" id="l_remaining_amount" class="checkbox" type="checkbox" value="Y">
284          <label for="l_remaining_amount">[% 'Remaining Amount' | $T8 %]</label>
285         </td>
286         <td>
287          <input name="l_remaining_netamount" id="l_remaining_netamount" class="checkbox" type="checkbox" value="Y">
288          <label for="l_remaining_netamount">[% 'Remaining Net Amount' | $T8 %]</label>
289         </td>
290        </tr>
291        <tr>
292         <td colspan=4 align=left><b>[% HTML.escape(vclabel) %]</td>
293        </tr>
294        <tr>
295         <td>
296          <input name="l_vcnumber" id="l_vcnumber" class="checkbox" type="checkbox" value="Y">
297          <label for="l_vcnumber">[% HTML.escape(vcnumberlabel) %]</label>
298         </td>
299         <td>
300          <input name="l_country" id="l_country" class="checkbox" type="checkbox" value="Y">
301          <label for="l_country">[% 'Country' | $T8 %]</label>
302         </td>
303         <td>
304          <input name="l_ustid"  id="l_ustid" class="checkbox" type="checkbox" value="Y">
305          <label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label>
306         </td>
307        </tr>
308
309       [% CT_CUSTOM_VARIABLES_INCLUSION_CODE %]
310
311       </table>
312      </td>
313     </tr>
314    </table>
315   </td>
316  </tr>
317 </table>
318
319 <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
320 <input type="hidden" name="type" value="[% HTML.escape(type) %]">
321 <input type="hidden" name="action" value="orders">
322 </form>