Erfassungsdatum bei Auträgen.
[kivitendo-erp.git] / templates / webpages / oe / search.html
1 [%- USE HTML %]
2 [%- USE T8 %]
3 [%- USE LxERP %]
4 [%- USE L %]
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
11 <form method="post" action="oe.pl">
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
130     [%- IF type == 'sales_order' %]
131     <tr>
132      <th align="right">[% 'Insert Date' | $T8 %] [% 'From' | $T8 %]</th>
133      <td>
134        [% L.date_tag('insertdatefrom') %]
135      </td>
136      <th align="right">[% 'Bis' | $T8 %]</th>
137      <td>
138        [% L.date_tag('insertdateto') %]
139      </td>
140     </tr>
141     [%- END %]
142
143 [%- IF type == 'sales_quotation' %]
144     <tr>
145      <th align="right">[% 'Expected billing date' | $T8 %] [% 'From' | $T8 %]</th>
146      <td>
147       [% L.date_tag('expected_billing_date_from', '' 'BL') %]
148      </td>
149      <th align="right">[% 'Expected billing date' | $T8 %] [% 'Bis' | $T8 %]</th>
150      <td>
151       [% L.date_tag('expected_billing_date_to', '' 'BL') %]
152      </td>
153     </tr>
154     <tr>
155      <th align="right">[% 'Order probability' | $T8 %]</th>
156      <td colspan="3">
157       [% L.select_tag('order_probability_op', [[ 'ge', '>=' ], [ 'le', '<=' ]]) %]
158       [% L.select_tag('order_probability_value', ORDER_PROBABILITIES, title='title', with_empty=1) %]
159      </td>
160     </tr>
161 [%- END %]
162     <tr>
163      <th align="right">[% 'Include in Report' | $T8 %]</th>
164      <td colspan="5">
165       <table>
166        <tr>
167         <td>
168          <input type="checkbox" name="open" value="1" id="open" checked>
169          <label for="open">[% 'Open' | $T8 %]</label>
170         </td>
171         <td>
172          <input type="checkbox" name="closed" value="1" id="closed">
173          <label for="closed">[% 'Closed' | $T8 %]</label>
174         </td>
175        </tr>
176 [%- IF type == 'sales_order' OR type == 'purchase_order' %]
177        <tr>
178         <td>
179          <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
180          <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
181         </td>
182         <td>
183          <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
184          <label for="delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
185         </td>
186        </tr>
187 [%- END %]
188 [%- IF type == 'sales_order' %]
189        <tr>
190         <td>
191          [% L.checkbox_tag("periodic_invoices_active", label => LxERP.t8("Periodic invoices active")) %]
192         </td>
193         <td>
194          [% L.checkbox_tag("periodic_invoices_inactive", label => LxERP.t8("Periodic invoices inactive")) %]
195         </td>
196        </tr>
197 [%- END %]
198        <tr>
199         <td>
200          <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
201          <label for="l_id">[% 'ID' | $T8 %]</label>
202         </td>
203         <td>
204          <input name="l_[% HTML.escape(ordnrname) %]" id="l_[% HTML.escape(ordnrname) %]" class="checkbox" type="checkbox" value="Y" checked>
205          <label for="l_[% HTML.escape(ordnrname) %]">[% HTML.escape(ordlabel) %]</label>
206         </td>
207 [% IF is_order %]
208         <td>
209          <input name="l_cusordnumber" id="l_cusordnumber" class="checkbox" type="checkbox" value="Y" checked>
210          <label for="l_cusordnumber">[% LxERP.t8("Customer Order Number") %]</label>
211         </td>
212 [% END %]
213        </tr>
214        <tr>
215         <td>
216          <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
217          <label for="l_transdate">[% 'Date' | $T8 %]</label>
218         </td>
219         <td>
220          <input name="l_reqdate" id="l_reqdate" class="checkbox" type="checkbox" value="Y" checked>
221          <label for="l_reqdate">[% IF is_order %][% 'Required by' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %]</label>
222         </td>
223         [%- IF type == 'sales_order' %]
224         <td>
225           <input name="l_insertdate" id="l_insertdate" class="checkbox" type="checkbox" value="Y">
226           <label for="l_insertdate">[% 'Insert Date' | $T8 %]</label>
227         </td>
228         [%- END %]
229        </tr>
230        <tr>
231         <td>
232          <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
233          <label for="l_name">[% HTML.escape(vclabel) %]
234         </td>
235         <td>
236          <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
237          <label for="l_employee">[% 'Employee' | $T8 %]</label>
238         </td>
239         <td>
240          <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
241          <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
242         </td>
243        </tr>
244        <tr>
245         <td>
246          <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
247          <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
248         </td>
249         <td>[%- L.checkbox_tag('l_taxzone',       label => LxERP.t8('Steuersatz'))     %]</td>
250         <td>[%- L.checkbox_tag('l_shippingpoint', label => LxERP.t8('Shipping Point')) %]</td>
251        </tr>
252        <tr>
253         <td>
254          <input name="l_netamount" id="l_netamount" class="checkbox" type="checkbox" value="Y">
255          <label for="l_netamount">[% 'Amount' | $T8 %]</label>
256         </td>
257         <td>
258          <input name="l_tax" id="l_tax" class="checkbox" type="checkbox" value="Y">
259          <label for="l_tax">[% 'Tax' | $T8 %]</label>
260         </td>
261         <td>
262          <input name="l_amount" id="l_amount" class="checkbox" type="checkbox" value="Y" checked>
263          <label for="l_amount">[% 'Total' | $T8 %]</label>
264         </td>
265        </tr>
266        <tr>
267         <td>
268          <input name="l_marge_total" id="l_marge_total" class="checkbox" type="checkbox" value="Y">
269          <label for="l_marge_total">[% 'Ertrag' | $T8 %]</label>
270         </td>
271         <td>
272          <input name="l_marge_percent" id="l_marge_percent" class="checkbox" type="checkbox" value="Y">
273          <label for="l_marge_percent">[% 'Ertrag prozentual' | $T8 %]</label>
274         </td>
275        </tr>
276        <tr>
277         <td>
278          <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
279          <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
280         </td>
281         <td>
282          <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 %]>
283          <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
284         </td>
285        </tr>
286        <tr>
287         <td>
288          <input name="l_subtotal" id="l_subtotal" class="checkbox" type="checkbox" value="Y">
289          <label for="l_subtotal">[% 'Subtotal' | $T8 %]</label>
290         </td>
291         <td>
292          <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
293          <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
294         </td>
295        </tr>
296 [% IF type == 'sales_quotation' %]
297        <tr>
298         <td colspan="2">
299          <input name="l_order_probability_expected_billing_date" id="l_order_probability_expected_billing_date" class="checkbox" type="checkbox" value="Y">
300          <label for="l_order_probability_expected_billing_date">[% 'Order probability & expected billing date' | $T8 %]</label>
301         </td>
302        </tr>
303 [%- END %]
304        <tr>
305         <td>
306          <input name="l_remaining_amount" id="l_remaining_amount" class="checkbox" type="checkbox" value="Y">
307          <label for="l_remaining_amount">[% 'Remaining Amount' | $T8 %]</label>
308         </td>
309         <td>
310          <input name="l_remaining_netamount" id="l_remaining_netamount" class="checkbox" type="checkbox" value="Y">
311          <label for="l_remaining_netamount">[% 'Remaining Net Amount' | $T8 %]</label>
312         </td>
313        </tr>
314        <tr>
315         <td colspan=4 align=left><b>[% HTML.escape(vclabel) %]</td>
316        </tr>
317        <tr>
318         <td>
319          <input name="l_vcnumber" id="l_vcnumber" class="checkbox" type="checkbox" value="Y">
320          <label for="l_vcnumber">[% HTML.escape(vcnumberlabel) %]</label>
321         </td>
322         <td>
323          <input name="l_country" id="l_country" class="checkbox" type="checkbox" value="Y">
324          <label for="l_country">[% 'Country' | $T8 %]</label>
325         </td>
326         <td>
327          <input name="l_ustid"  id="l_ustid" class="checkbox" type="checkbox" value="Y">
328          <label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label>
329         </td>
330        </tr>
331 [%- IF type == 'sales_order' %]
332        <tr><td colspan="3"><hr></td></tr>
333 [%- END %]
334       </table>
335      </td>
336     </tr>
337    </table>
338   </td>
339  </tr>
340 </table>
341
342 <br>
343 <input type="hidden" name="nextsub" value="orders">
344 <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
345 <input type="hidden" name="type" value="[% HTML.escape(type) %]">
346 <input class="submit" type="submit" name="action" value="[% 'Continue' | $T8 %]">
347 </form>