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