Merge branch 'b-3.6.1' into mebil
[kivitendo-erp.git] / templates / webpages / order / tabs / basic_data.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5 [%- USE P %]
6
7 [%- INCLUDE 'generic/set_longdescription.html' %]
8
9 <div id="ui-tabs-basic-data">
10   <table width="100%">
11     <tr valign="top">
12       <td>
13         <table width="100%">
14           <tr>
15             <th align="right">[%- SELF.cv == "customer" ? LxERP.t8('Customer') : LxERP.t8('Vendor') -%]</th>
16             [% SET cv_id = SELF.cv _ '_id' %]
17             <td>
18               [% P.customer_vendor.picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %]
19               [% P.button_tag("kivi.Order.show_vc_details_dialog()", LxERP.t8("Details (one letter abbreviation)")) %]
20               [% P.link_tag(SELF.url_for(controller='CustomerVendor', action='edit', 'id'=SELF.order.$cv_id, 'db'=SELF.cv), LxERP.t8('Edit'), target="_blank", title=LxERP.t8('Open in new window')) %]
21             </td>
22           </tr>
23
24           <tr id='cp_row' [%- IF !SELF.order.${SELF.cv}.contacts.size %]style='display:none'[%- END %]>
25             <th align="right">[% 'Contact Person' | $T8 %]</th>
26             <td>[% L.select_tag('order.cp_id',
27                                 SELF.order.${SELF.cv}.contacts,
28                                 default=SELF.order.cp_id,
29                                 title_key='full_name_dep',
30                                 value_key='cp_id',
31                                 with_empty=1,
32                                 style='width: 300px') %]</td>
33           </tr>
34
35           <tr>
36             <th align="right">[% 'Shipping Address' | $T8 %]</th>
37             <td>
38               <span id='shipto_selection' [%- IF !SELF.order.${SELF.cv}.shipto.size %]style='display:none'[%- END %]>
39                 [% shiptos = [ { shipto_id => "", displayable_id => LxERP.t8("No/individual shipping address") } ] ;
40                    FOREACH s = SELF.order.${SELF.cv}.shipto ;
41                      shiptos.push(s) ;
42                    END ;
43                    L.select_tag('order.shipto_id',
44                                  shiptos,
45                                  default=SELF.order.shipto_id,
46                                  title_key='displayable_id',
47                                  value_key='shipto_id',
48                                  with_empty=0,
49                                  style='width: 300px') %]
50               </span>
51               [% L.button_tag("kivi.Order.edit_custom_shipto()", LxERP.t8("Custom shipto")) %]
52             </td>
53           </tr>
54
55           [%- IF SELF.cv == "customer" %]
56           <tr id="billing_address_row"[% IF !SELF.order.customer.additional_billing_addresses.as_list.size %] style="display:none"[% END %]>
57             <th align="right">[% 'Custom Billing Address' | $T8 %]</th>
58             <td>
59               [% L.select_tag('order.billing_address_id',
60                                SELF.order.customer.additional_billing_addresses,
61                                default=SELF.order.billing_address_id,
62                                title_key='displayable_id',
63                                value_key='id',
64                                with_empty=1,
65                                style='width: 300px') %]
66             </td>
67           </tr>
68           [%- END %]
69
70           [%- PROCESS order/tabs/_business_info_row.html SELF=SELF %]
71
72           <tr>
73             <th align="right">[% 'Steuersatz' | $T8 %]</th>
74             <td>[% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %]</td>
75           </tr>
76
77           [% SET currency_id = SELF.order.currency_id || INSTANCE_CONF.get_currency_id  # use default currency for new order %]
78           <tr id="currency_settings">
79             <th align="right">[% 'Currency' | $T8 %]</th>
80             <td>[% L.select_tag('order.currency_id', SELF.all_currencies, default=currency_id, value_key='id', title_key='name') %]</td>
81           </tr>
82           <tr id="exchangerate_settings" [%- IF SELF.order.currency_id==INSTANCE_CONF.get_currency_id %]style='display:none'[%- END %]>
83             <th align="right">[% 'Exchangerate' | $T8 %]</th>
84             <td> 1 <span id="currency_name">[% SELF.order.currency.name %]</span> =
85               [% L.input_tag('order.exchangerate_as_null_number', SELF.order.exchangerate_as_null_number, size="15", class="reformat_number_as_null_number numeric") %]
86               [% INSTANCE_CONF.default_currency %]
87               [% L.hidden_tag('old_currency_id', currency_id) %]
88               [% L.hidden_tag('old_exchangerate', SELF.order.exchangerate_as_null_number) %]
89             </td>
90           </tr>
91
92 [%- IF SELF.all_languages.size %]
93           <tr>
94             <th align="right">[% 'Language' | $T8 %]</th>
95             <td>
96               [% L.select_tag('order.language_id', SELF.all_languages, default=SELF.order.language_id, title_key='description', with_empty=1, style='width:300px') %]
97             </td>
98           </tr>
99 [%- END %]
100
101 [%- IF SELF.all_departments.size %]
102           <tr>
103             <th align="right">[% 'Department' | $T8 %]</th>
104             <td>
105               [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, style='width:300px') %]
106             </td>
107           </tr>
108 [%- END %]
109
110           <tr>
111             <th align="right">[% 'Shipping Point' | $T8 %]</th>
112             <td>[% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, style='width: 300px') %]</td>
113           </tr>
114
115           <tr>
116             <th align="right">[% 'Ship via' | $T8 %]</th>
117             <td>[% L.input_tag('order.shipvia', SELF.order.shipvia, style='width: 300px') %]</td>
118           </tr>
119
120           <tr>
121             <th align="right">[% 'Transaction description' | $T8 %]</th>
122             <td>[% L.input_tag('order.transaction_description', SELF.order.transaction_description, 'data-validate'=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '', style='width: 300px') %]</td>
123           </tr>
124
125           <tr>
126             <th align="right">[% 'Project Number' | $T8 %]</th>
127             <td>[% P.project.picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %]</td>
128           </tr>
129
130         </table>
131       </td>
132
133       <td align="right">
134         <table>
135
136           <tr>
137             <td colspan="2" align="center">
138               [%- IF SELF.order.id %]
139                 <label for="order.delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
140                 [% L.yes_no_tag('order.delivered', SELF.order.delivered) %]
141                 <label for="order.closed">[% 'Closed' | $T8 %]</label>
142                 [% L.yes_no_tag('order.closed', SELF.order.closed) %]
143               [%- END %]
144             </td>
145           </tr>
146
147           <tr>
148             <th align="right">[% 'Employee' | $T8 %]</th>
149             <td>[% L.select_tag('order.employee_id',
150               SELF.all_employees,
151               default=(SELF.order.employee_id ? SELF.order.employee_id : SELF.current_employee_id),
152               title_key='safe_name') %]</td>
153           </tr>
154
155           [% IF SELF.cv == 'customer' %]
156           <tr>
157             <th align="right">[% 'Salesman' | $T8 %]</th>
158             <td>[% L.select_tag('order.salesman_id',
159               SELF.all_salesmen,
160               default=(SELF.order.salesman_id ? SELF.order.salesman_id : SELF.current_employee_id),
161               title_key='safe_name') %]</td>
162           </tr>
163           [% END %]
164
165           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
166           <tr>
167             <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
168             <td>
169               [%- IF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %]
170                 [% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]
171               [%- ELSIF SELF.order.id %]
172                 [% HTML.escape(SELF.order.ordnumber) %]
173                 [% L.hidden_tag("order.ordnumber", SELF.order.ordnumber) %]
174               [% ELSE %]
175                 [% LxERP.t8("will be set upon saving") %]
176               [%- END %]
177             </td>
178           </tr>
179           [%- END -%]
180
181           [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
182             [%- SET quo_nr_txt = 'Quotation Number' -%]
183           [%- ELSE -%]
184             [%- SET quo_nr_txt = 'RFQ Number' -%]
185           [%- END -%]
186           <tr>
187             <th width="70%" align="right" nowrap>[% quo_nr_txt | $T8 %]</th>
188             <td>
189               [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
190                 [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %]
191               [%- ELSIF INSTANCE_CONF.get_sales_purchase_record_numbers_changeable %]
192                 [% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11, onchange='kivi.Order.set_number_in_title(this)') %]
193               [%- ELSIF SELF.order.id %]
194                 [% HTML.escape(SELF.order.quonumber) %]
195                 [% L.hidden_tag("order.quonumber", SELF.order.quonumber) %]
196               [% ELSE %]
197                 [% LxERP.t8("will be set upon saving") %]
198               [%- END %]
199             </td>
200           </tr>
201
202           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
203           <tr>
204             <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
205             <td>[% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, size = 11) %]</td>
206           </tr>
207           [%- END -%]
208
209           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
210             [%- SET transdate_txt = 'Order Date' -%]
211           [%- ELSIF SELF.type == "sales_quotation" -%]
212             [%- SET transdate_txt = 'Quotation Date' -%]
213           [%- ELSE -%]
214             [%- SET transdate_txt = 'RFQ Date' -%]
215           [%- END -%]
216           <tr>
217             <th width="70%" align="right" nowrap>[% transdate_txt | $T8 %]</th>
218             <td>[% L.date_tag('order.transdate_as_date', SELF.order.transdate_as_date) %]</td>
219           </tr>
220
221           <tr>
222             <th width="70%" align="right" nowrap>[% 'Tax point' | $T8 %]</th>
223             <td>[% L.date_tag('order.tax_point_as_date', SELF.order.tax_point_as_date, class="recalc") %]</td>
224           </tr>
225
226           [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
227             [%- SET reqdate_txt = 'Reqdate'; SET reqdate_class = 'recalc' -%]
228           [%- ELSIF SELF.type == "sales_quotation" -%]
229             [%- SET reqdate_txt = 'Valid until'; SET reqdate_class = '' -%]
230           [%- ELSE -%]
231             [%- SET reqdate_txt = 'Required by'; SET reqdate_class = 'recalc' -%]
232           [%- END -%]
233           <tr>
234             <th width="70%" align="right" nowrap>[% reqdate_txt | $T8 %]</th>
235             <td>[% L.date_tag('order.reqdate_as_date', SELF.order.reqdate_as_date, class=reqdate_class) %]</td>
236           </tr>
237
238           [%- IF SELF.type == "sales_quotation" -%]
239           <tr>
240             <th width="70%" align="right" nowrap>[% 'Order probability' | $T8 %]</th>
241             <td>[%- L.select_tag('order.order_probability', SELF.order_probabilities, title='title', default=SELF.order.order_probability) %]%</td>
242           </tr>
243           <tr>
244             <th width="70%" align="right" nowrap>[% 'Expected billing date' | $T8 %]</th>
245             <td>[%- L.date_tag('order.expected_billing_date_as_date', SELF.order.expected_billing_date_as_date) %]</td>
246           </tr>
247           [%- END %]
248
249           <tr>
250             <th width="70%" align="right" nowrap>[% 'Insert Date' | $T8 %]</th>
251             <td>[% SELF.order.itime_as_date %]</td>
252           </tr>
253
254         </table>
255
256       </td>
257     </tr>
258   </table>
259
260   [%- PROCESS order/tabs/_item_input.html SELF=SELF %]
261
262   [% L.button_tag('kivi.Order.open_multi_items_dialog()', LxERP.t8('Add multiple items')) %]
263
264   <table width="100%">
265     <tr>
266       <td>
267         [%- IF SELF.positions_scrollbar_height -%]
268           [%- SET scroll_style = 'style="overflow-y: auto; height:' _ SELF.positions_scrollbar_height _ 'vh;"' -%]
269         [%- ELSE -%]
270           [%- SET scroll_style = '' -%]
271         [%- END -%]
272         <div id="row_table_scroll_id" [%- scroll_style -%]>
273           <table id="row_table_id" width="100%">
274             <thead>
275               <tr class="listheading">
276                 <th class="listheading" style='text-align:center' nowrap width="1">
277                   [%- IF MYCONFIG.show_form_details %]
278                     [%- L.img_tag(src="image/collapse.svg", alt=LxERP.t8('Hide all details'), title=LxERP.t8('Hide all details'), id='expand_all', "data-expanded"="1") %]
279                   [%- ELSE %]
280                     [%- L.img_tag(src="image/expand.svg", alt=LxERP.t8('Show all details'), title=LxERP.t8('Show all details'), id='expand_all') %]
281                   [%- END %]
282                 </th>
283                 <th class="listheading" nowrap width="3" >[%- 'position'     | $T8 %] </th>
284                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></th>
285                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/close.png" alt="[%- LxERP.t8('delete item') %]"></th>
286                 [%- IF SELF.show_update_button -%]
287                 <th class="listheading" style='text-align:center' nowrap width="1">
288                   [%- L.img_tag(src="image/rotate_cw.svg",
289                                 alt=LxERP.t8('Update from master data'),
290                                 title= LxERP.t8('Update from master data'),
291                                 onclick="if (!confirm('" _ LxERP.t8("Are you sure to update all positions from master data?") _ "')) return false; kivi.Order.update_all_rows_from_master_data();",
292                                 id='update_from_master') %]
293                 </th>
294                 [%- END %]
295                 <th id="partnumber_header_id"   class="listheading" nowrap width="15"><a href='#' onClick='javascript:kivi.Order.reorder_items("partnumber")'> [%- 'Partnumber'  | $T8 %]</a></th>
296                 [%- IF SELF.search_cvpartnumber -%]
297                 <th id="cvpartnumber_header_id" class="listheading" nowrap width="15"><a href='#' onClick='javascript:kivi.Order.reorder_items("cvpartnumber")' > [%- SELF.cv == "customer" ? LxERP.t8('Customer Part Number') : LxERP.t8('Model') %]</a></th>
298                 [%- END -%]
299                 <th id="partclass_header_id"    class="listheading" nowrap width="2">[%- 'Type'  | $T8 %]</th>
300                 <th id="description_header_id"  class="listheading" nowrap           ><a href='#' onClick='javascript:kivi.Order.reorder_items("description")'>[%- 'Description' | $T8 %]</a></th>
301                 [%- IF (SELF.type == "sales_order" || SELF.type == "purchase_order") -%]
302                 <th id="shipped_qty_header_id"  class="listheading" nowrap width="5" ><a href='#' onClick='javascript:kivi.Order.reorder_items("shipped_qty")'>[%- 'Delivered'   | $T8 %]</a></th>
303                 [%- END -%]
304                 <th id="qty_header_id"          class="listheading" nowrap width="5" ><a href='#' onClick='javascript:kivi.Order.reorder_items("qty")'>        [%- 'Qty'         | $T8 %]</a></th>
305                 <th class="listheading" nowrap width="5" >[%- 'Price Factor' | $T8 %] </th>
306                 <th class="listheading" nowrap width="5" >[%- 'Unit'         | $T8 %] </th>
307                 <th class="listheading" nowrap width="5" >[%- 'Price Source' | $T8 %] </th>
308                 <th id="sellprice_header_id"   class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("sellprice")'> [%- 'Price'       | $T8 %]</a></th>
309                 <th id="discount_header_id"    class="listheading" nowrap width="15" ><a href='#' onClick='javascript:kivi.Order.reorder_items("discount")'>  [%- 'Discount'    | $T8 %]</a></th>
310                 <th class="listheading" nowrap width="10">[%- 'Extended'     | $T8 %] </th>
311               </tr>
312             </thead>
313
314             [%- FOREACH item = SELF.order.items_sorted %]
315               [%- PROCESS order/tabs/_row.html ITEM=item ID=(item.id||item.new_fake_id)  -%]
316             [%- END %]
317
318           </table>
319         </div>
320
321       </td>
322     </tr>
323
324     <tr>
325     </tr>
326
327     <tr>
328       <td colspan="100%" width="100%">
329         <table width="100%">
330           <tr>
331             <td>
332               <table>
333                 <tr>
334                   <th align="left">[% 'Notes' | $T8 %]</th>
335                   <th align="left">[% 'Internal Notes' | $T8 %]</th>
336                 </tr>
337                 <tr valign="top">
338                   <td>
339                     [% L.textarea_tag('order.notes', SELF.order.notes, wrap="soft", style="width: 350px; height: 150px", class="texteditor") %]
340                   </td>
341                   <td>
342                     [% L.textarea_tag('order.intnotes', SELF.order.intnotes, wrap="soft", style="width: 350px; height: 150px") %]
343                   </td>
344                 </tr>
345               </table>
346             </td>
347
348             <td>
349               <table>
350                 <tr>
351                   <th align="right">[% 'Payment Terms' | $T8 %]</th>
352                   <td>[% L.select_tag('order.payment_id',
353                                       SELF.all_payment_terms,
354                                       default = SELF.order.payment_id,
355                                       with_empty = 1,
356                                       title_key = 'description',
357                                       style = 'width: 250px') %]</td>
358                 </tr>
359                 <tr>
360                   <th align="right">[% 'Delivery Terms' | $T8 %]</th>
361                   <td>[% L.select_tag('order.delivery_term_id',
362                                       SELF.all_delivery_terms,
363                                       default = SELF.order.delivery_term_id,
364                                       with_empty = 1,
365                                       title_key = 'description',
366                                       style = 'width: 250px') %]</td>
367                 </tr>
368                 [%- IF SELF.type == "sales_order" %]
369                 <tr>
370                   <th align="right">[%- 'Periodic Invoices' | $T8 %]</th>
371                   <td>[% L.button_tag('kivi.Order.show_periodic_invoices_config_dialog()', LxERP.t8('Configure')) %]
372                     (<span id='periodic_invoices_status'>[%- SELF.periodic_invoices_status -%]</span>)
373                     <a href="doc/html/ch03.html#features.periodic-invoices.variables" target="_blank">?</a>
374                   </td>
375                 </tr>
376                 [%- END %]
377               </table>
378             </td>
379
380             [%- IF (SELF.type == "sales_order" || SELF.type == "sales_quotation") -%]
381             [%- SET marge_class = (SELF.order.marge_total < 0) ? 'plus0' : '' -%]
382             <td>
383               <table>
384                 <tr>
385                   <th  align="left">[% 'Ertrag' | $T8 %]</th>
386                   <td align="right">
387                     [%- L.div_tag(SELF.order.marge_total_as_number, id='marge_total_id', class=marge_class) %]
388                   </td>
389                 </tr>
390                 <tr>
391                   <th  align="left">[% 'Ertrag prozentual' | $T8 %]</th>
392                   <td align="right">
393                     [%- L.div_tag(LxERP.format_amount(SELF.order.marge_percent, 2), id='marge_percent_id', class=marge_class) %]
394                   </td>
395                   <td>[%- L.div_tag('%', id='marge_percent_sign_id', class=marge_class) %]</td>
396                 </tr>
397               </table>
398             </td>
399             [%- END %]
400
401             <td align="right">
402               <table>
403                 <tr id="taxincluded_row_id" [%- IF !SELF.taxes.size %]style="display:none"[%- END %]>
404                   <td align=right colspan="2">
405                     <label for="order.taxincluded"><b>[% 'Tax Included' | $T8 %]</b></label>
406                     [% L.yes_no_tag('order.taxincluded', SELF.order.taxincluded, class='recalc') %]
407                   </td>
408                 </tr>
409
410                 <tr id="subtotal_row_id" [%- IF SELF.order.taxincluded %]style="display:none"[%- END %]>
411                   <th align="right">[%- 'Subtotal' | $T8 %]</th>
412                   <td align="right">
413                     [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
414                   </td>
415                 </tr>
416                 [%- FOREACH tax = SELF.taxes %]
417                   [%- PROCESS order/tabs/_tax_row.html TAX=tax TAXINCLUDED=SELF.order.taxincluded %]
418                 [%- END %]
419                 <tr id="amount_row_id">
420                   <th align="right">[%- 'Total' | $T8 %]</th>
421                   <td align="right">
422                     [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
423                   </td>
424                 </tr>
425               </table>
426             </td>
427
428           </tr>
429         </table>
430       </td>
431     </tr>
432
433   </table>
434
435 </div>
436
437 [% L.sortable_element('#row_table_id') %]