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