4 [%- USE L %][%- USE P -%]
5 <h1>[% HTML.escape(title) %]</h1>
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" %]
13 <form method="post" action="oe.pl" id="form">
20 <th align="right">[% HTML.escape(vclabel) %]</th>
21 <td>[% L.input_tag(vc, $vcdefault, style=style, class="initial_focus") %]</td>
24 <th align="right" nowrap>[% 'Contact Person' | $T8 %]</th>
25 <td>[% L.input_tag("cp_name", '', style=style) %]</td>
27 [%- IF ALL_DEPARTMENTS.size %]
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>
34 <th align="right">[% HTML.escape(ordlabel) %]</th>
35 <td>[% L.input_tag(ordnrname, "", style=style) %]</td>
36 <th align="right">[% 'Status' | $T8 %]</th>
37 <td colspan=3>[% L.select_tag('order_status_id', ALL_ORDER_STATUSES, default = order_status_id, title_key = 'name', with_empty = 1, style=style) %]</td>
40 [% IF type == "purchase_order_confirmation" %]
42 <th align="right">[% LxERP.t8("Vendor Confirmation Number") %]</th>
43 <td>[% L.input_tag("vendor_confirmation_number", '', style=style) %]</td>
48 <th align="right">[% LxERP.t8("Customer Order Number") %]</th>
49 <td>[% L.input_tag("cusordnumber", '', style=style) %]</td>
53 <th align="right">[% 'Employee' | $T8 %]</th>
54 <td>[% L.select_tag('employee_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style=style) %]</td>
57 <th align="right">[% 'Salesman' | $T8 %]</th>
58 <td>[% L.select_tag('salesman_id', ALL_EMPLOYEES, title_key='safe_name', with_empty=1, style=style) %]</td>
61 <th align="right">[% 'Steuersatz' | $T8 %]</th>
62 <td>[% L.select_tag('taxzone_id', ALL_TAXZONES, with_empty=1, title_key='description', style=style) %]</td>
65 <th align="right">[% 'Shipping Point' | $T8 %]</th>
66 <td>[% L.input_tag('shippingpoint', '', style=style) %]</td>
69 <th align=right nowarp>[% 'Name (Shipping)' | $T8 %]</th>
70 <td>[% L.input_tag("shiptoname", "", style=style) %]</td>
73 <th align=right nowarp>[% 'Department 1 (Shipping)' | $T8 %]</th>
74 <td>[% L.input_tag("shiptodepartment_1", "", style=style) %]</td>
77 <th align=right nowarp>[% 'Department 2 (Shipping)' | $T8 %]</th>
78 <td>[% L.input_tag("shiptodepartment_2", "", style=style) %]</td>
81 <th align=right nowarp>[% 'Street (Shipping)' | $T8 %]</th>
82 <td>[% L.input_tag("shiptostreet", "", style=style) %]</td>
85 <th align=right nowarp>[% 'Zipcode (Shipping)' | $T8 %]</th>
86 <td>[% L.input_tag("shiptozipcode", "", style=style) %]</td>
89 <th align=right nowarp>[% 'City (Shipping)' | $T8 %]</th>
90 <td>[% L.input_tag("shiptocity", "", style=style) %]</td>
93 <th align=right nowarp>[% 'Country (Shipping)' | $T8 %]</th>
94 <td>[% L.input_tag("shiptocountry", "", style=style) %]</td>
97 <th align="right">[% 'Transaction description' | $T8 %]</th>
98 <td>[% L.input_tag("transaction_description", "", style=style) %]</td>
99 <th align="right">[% 'Part Description' | $T8 %]</th>
100 <td>[% L.input_tag("parts_description", "", style=style) %]</td>
103 <th align="right">[% 'Project' | $T8 %]</th>
104 <td>[% P.project.picker("project_id", '', active="both", valid="both", style=style) %]</td>
105 <th align="right">[% 'Part Number' | $T8 %]</th>
106 <td>[% L.input_tag("parts_partnumber", "", style=style) %]</td>
108 [%- UNLESS ALL_BUSINESS_TYPES.size == 0 %]
110 <th align="right" nowrap>[% vctypelabel %]</th>
112 [% L.select_tag('business_id', ALL_BUSINESS_TYPES, title_key = 'description', with_empty = 1, style=style) %]
117 <th align="right">[% 'Internal Notes' | $T8 %]</th>
118 <td>[% L.input_tag('intnotes', '', style=style) %]</td>
121 <th align="right">[% 'Phone Notes' | $T8 %]</th>
122 <td>[% L.input_tag('phone_notes', '', style=style) %]</td>
124 [%- IF type == 'sales_order' %]
126 <th align="right">[% 'Full Text' | $T8 %]</th>
127 <td>[% L.input_tag('fulltext', '', style=style) %]</td>
131 <th align="right">[% IF type == 'purchase_order_confirmation' %][% 'Confirmation Date' | $T8 %][% ELSIF is_order %][% 'Order Date' | $T8 %][% ELSE %][% 'Quotation Date' | $T8 %][% END %] [% 'From' | $T8 %]</th>
133 [% L.date_tag('transdatefrom') %]
135 [% L.date_tag('transdateto') %]
139 <th align="right">[% IF is_order %][% 'Delivery Date' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %] [% 'From' | $T8 %]</th>
141 [% L.date_tag('reqdatefrom') %]
143 [% L.date_tag('reqdateto') %]
147 [%- IF type == 'sales_order' %]
149 <th align="right">[% 'Insert Date' | $T8 %] [% 'From' | $T8 %]</th>
151 [% L.date_tag('insertdatefrom') %]
153 [% L.date_tag('insertdateto') %]
158 [%- IF type == 'sales_quotation' %]
160 <th align="right">[% 'Expected billing date' | $T8 %] [% 'From' | $T8 %]</th>
162 [% L.date_tag('expected_billing_date_from', '') %]
164 [% L.date_tag('expected_billing_date_to', '') %]
168 <th align="right">[% 'Order probability' | $T8 %]</th>
170 [% L.select_tag('order_probability_op', [[ 'ge', '>=' ], [ 'le', '<=' ]]) %] [%-# '> make emacs happy %]
171 [% L.select_tag('order_probability_value', ORDER_PROBABILITIES, title='title', with_empty=1) %]
176 [%- IF CT_CUSTOM_VARIABLES.size %]
179 <td colspan=4 align=left><b>[% 'Custom variables for module' | $T8 %]: [%'Customers and vendors' | $T8 %]</b></td>
181 [% CT_CUSTOM_VARIABLES_FILTER_CODE %]
185 <th align="right">[% 'Include in Report' | $T8 %]</th>
190 <input type="checkbox" name="open" value="1" id="open" checked>
191 <label for="open">[% 'Open' | $T8 %]</label>
194 <input type="checkbox" name="closed" value="1" id="closed">
195 <label for="closed">[% 'Closed' | $T8 %]</label>
198 [%- IF type == 'sales_order' OR type == 'purchase_order' %]
201 <input name="notdelivered" id="notdelivered" class="checkbox" type="checkbox" value="1" checked>
202 <label for="notdelivered">[% 'Not delivered' | $T8 %]</label>
205 <input name="delivered" id="delivered" class="checkbox" type="checkbox" value="1" checked>
206 <label for="delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
210 [%- IF type == 'sales_order' %]
213 [% L.checkbox_tag("periodic_invoices_active", label => LxERP.t8("Periodic invoices active")) %]
216 [% L.checkbox_tag("periodic_invoices_inactive", label => LxERP.t8("Periodic invoices inactive")) %]
222 <input name="l_id" id="l_id" class="checkbox" type="checkbox" value="Y">
223 <label for="l_id">[% 'ID' | $T8 %]</label>
226 <input name="l_[% HTML.escape(ordnrname) %]" id="l_[% HTML.escape(ordnrname) %]" class="checkbox" type="checkbox" value="Y" checked>
227 <label for="l_[% HTML.escape(ordnrname) %]">[% HTML.escape(ordlabel) %]</label>
231 <input name="l_cusordnumber" id="l_cusordnumber" class="checkbox" type="checkbox" value="Y" checked>
232 <label for="l_cusordnumber">[% LxERP.t8("Customer Order Number") %]</label>
238 <input name="l_transdate" id="l_transdate" class="checkbox" type="checkbox" value="Y" checked>
239 <label for="l_transdate">[% 'Date' | $T8 %]</label>
242 <input name="l_reqdate" id="l_reqdate" class="checkbox" type="checkbox" value="Y" checked>
243 <label for="l_reqdate">[% IF is_order %][% 'Required by' | $T8 %][% ELSE %][% 'Valid until' | $T8 %][% END %]</label>
245 [%- IF type == 'sales_order' %]
247 <input name="l_insertdate" id="l_insertdate" class="checkbox" type="checkbox" value="Y">
248 <label for="l_insertdate">[% 'Insert Date' | $T8 %]</label>
251 [% IF type == "purchase_order_confirmation" %]
253 <input name="l_vendor_confirmation_number" id="l_vendor_confirmation_number" class="checkbox" type="checkbox" value="Y" checked>
254 <label for="l_vendor_confirmation_number">[% LxERP.t8("Vendor Confirmation Number") %]</label>
260 <input name="l_name" id="l_name" class="checkbox" type="checkbox" value="Y" checked>
261 <label for="l_name">[% HTML.escape(vclabel) %]</label>
264 <input name="l_employee" id="l_employee" class="checkbox" type="checkbox" value="Y" checked>
265 <label for="l_employee">[% 'Employee' | $T8 %]</label>
268 <input name="l_shipvia" id="l_shipvia" class="checkbox" type="checkbox" value="Y">
269 <label for="l_shipvia">[% 'Ship via' | $T8 %]</label>
274 <input name="l_customernumber" id="l_customernumber" class="checkbox" type="checkbox" value="Y">
275 <label for="l_customernumber">[% 'Customer Number' | $T8 %]</label>
277 <td>[%- L.checkbox_tag('l_taxzone', label => LxERP.t8('Steuersatz')) %]</td>
278 <td>[%- L.checkbox_tag('l_shippingpoint', label => LxERP.t8('Shipping Point')) %]</td>
282 <input name="l_netamount" id="l_netamount" class="checkbox" type="checkbox" value="Y">
283 <label for="l_netamount">[% 'Amount' | $T8 %]</label>
286 <input name="l_tax" id="l_tax" class="checkbox" type="checkbox" value="Y">
287 <label for="l_tax">[% 'Tax' | $T8 %]</label>
290 <input name="l_amount" id="l_amount" class="checkbox" type="checkbox" value="Y" checked>
291 <label for="l_amount">[% 'Total' | $T8 %]</label>
296 <input name="l_marge_total" id="l_marge_total" class="checkbox" type="checkbox" value="Y">
297 <label for="l_marge_total">[% 'Ertrag' | $T8 %]</label>
300 <input name="l_marge_percent" id="l_marge_percent" class="checkbox" type="checkbox" value="Y">
301 <label for="l_marge_percent">[% 'Ertrag prozentual' | $T8 %]</label>
304 <input name="l_payment_terms" id="l_payment_terms" class="checkbox" type="checkbox" value="Y">
305 <label for="l_payment_terms">[% 'Payment Terms' | $T8 %]</label>
310 <input name="l_globalprojectnumber" id="l_globalprojectnumber" class="checkbox" type="checkbox" value="Y">
311 <label for="l_globalprojectnumber">[% 'Project Number' | $T8 %]</label>
314 <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 %]>
315 <label for="l_transaction_description">[% 'Transaction description' | $T8 %]</label>
318 [%- L.checkbox_tag('l_department', label => LxERP.t8('Department')) %]
324 <input name="l_subtotal" id="l_subtotal" class="checkbox" type="checkbox" value="Y">
325 <label for="l_subtotal">[% 'Subtotal' | $T8 %]</label>
328 <input name="l_salesman" id="l_salesman" class="checkbox" type="checkbox" value="Y">
329 <label for="l_salesman">[% 'Salesman' | $T8 %]</label>
332 <input name="l_intnotes" id="l_intnotes" class="checkbox" type="checkbox" value="Y">
333 <label for="l_intnotes">[% 'Internal Notes' | $T8 %]</label>
336 [% IF type == 'sales_quotation' %]
339 <input name="l_order_probability_expected_billing_date" id="l_order_probability_expected_billing_date" class="checkbox" type="checkbox" value="Y">
340 <label for="l_order_probability_expected_billing_date">[% 'Order probability & expected billing date' | $T8 %]</label>
346 <input name="l_remaining_amount" id="l_remaining_amount" class="checkbox" type="checkbox" value="Y">
347 <label for="l_remaining_amount">[% 'Remaining Amount' | $T8 %]</label>
350 <input name="l_remaining_netamount" id="l_remaining_netamount" class="checkbox" type="checkbox" value="Y">
351 <label for="l_remaining_netamount">[% 'Remaining Net Amount' | $T8 %]</label>
354 <input name="l_order_status" id="l_order_status" class="checkbox" type="checkbox" value="Y">
355 <label for="l_order_status">[% 'Status' | $T8 %]</label>
360 <input name="l_items" id="l_items" class="checkbox" type="checkbox" value="Y">
361 <label for="l_items">[% 'Positions' | $T8 %]</label>
365 <td colspan=4 align=left><b>[% HTML.escape(vclabel) %]</b></td>
369 <input name="l_vcnumber" id="l_vcnumber" class="checkbox" type="checkbox" value="Y">
370 <label for="l_vcnumber">[% HTML.escape(vcnumberlabel) %]</label>
373 <input name="l_country" id="l_country" class="checkbox" type="checkbox" value="Y">
374 <label for="l_country">[% 'Country' | $T8 %]</label>
377 <input name="l_ustid" id="l_ustid" class="checkbox" type="checkbox" value="Y">
378 <label for="l_ustid">[% 'USt-IdNr.' | $T8 %]</label>
382 <td colspan=4 align=left><b>[% 'Shipping Address' | $T8 %]</b></td>
386 <input name="l_shiptoname" id="l_shiptoname" type="checkbox" value="Y">
387 <label for="l_shiptoname">[% 'Name' | $T8 %]</label>
390 <input name="l_shiptodepartment_1" id="l_shiptodepartment_1" type="checkbox" value="Y">
391 <label for="l_shiptodepartment_1">[% 'Department 1' | $T8 %]</label>
394 <input name="l_shiptodepartment_2" id="l_shiptodepartment_2" type="checkbox" value="Y">
395 <label for="l_shiptodepartment_2">[% 'Department 2' | $T8 %]</label>
400 <input name="l_shiptostreet" id="l_shiptostreet" type="checkbox" value="Y">
401 <label for="l_shiptostreet">[% 'Street' | $T8 %]</label>
404 <input name="l_shiptozipcode" id="l_shiptozipcode" type="checkbox" value="Y">
405 <label for="l_shiptozipcode">[% 'Zipcode' | $T8 %]</label>
408 <input name="l_shiptocity" id="l_shiptocity" type="checkbox" value="Y">
409 <label for="l_shiptocity">[% 'City' | $T8 %]</label>
414 <input name="l_shiptocountry" id="l_shiptocountry" type="checkbox" value="Y">
415 <label for="l_shiptocountry">[% 'Country' | $T8 %]</label>
419 [% CT_CUSTOM_VARIABLES_INCLUSION_CODE %]
429 <input type="hidden" name="vc" value="[% HTML.escape(vc) %]">
430 <input type="hidden" name="type" value="[% HTML.escape(type) %]">
431 <input type="hidden" name="action" value="orders">