Auftrags-Controller: longdescription
[kivitendo-erp.git] / templates / webpages / order / tabs / basic_data.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE L %]
5
6 [%- INCLUDE 'generic/set_longdescription.html' %]
7
8 <div id="ui-tabs-basic-data">
9   <table width="100%">
10     <tr valign="top">
11       <td>
12         <table width="100%">
13           <tr>
14             <th align="right">[% SELF.cv | $T8 %]</th>
15             [% SET cv_id = SELF.cv _ '_id' %]
16             <td>[% L.customer_vendor_picker("order.${SELF.cv}" _ '_id', SELF.order.$cv_id, type=SELF.cv, style='width: 300px') %]</td>
17           </tr>
18
19           <tr id='cp_row' [%- IF !SELF.order.${SELF.cv}.contacts.size %]style='display:none'[%- END %]>
20             <th align="right">[% 'Contact Person' | $T8 %]</th>
21             <td>[% L.select_tag('order.cp_id',
22                                 SELF.order.${SELF.cv}.contacts,
23                                 default=SELF.order.cp_id,
24                                 title_key='full_name_dep',
25                                 value_key='cp_id',
26                                 with_empty=1,
27                                 style='width: 300px') %]</td>
28           </tr>
29
30           <tr id='shipto_row' [%- IF !SELF.order.${SELF.cv}.shipto.size %]style='display:none'[%- END %]>
31             <th align="right">[% 'Shipping Address' | $T8 %]</th>
32             <td>[% L.select_tag('order.shipto_id',
33                                 SELF.order.${SELF.cv}.shipto,
34                                 default=SELF.order.shipto_id,
35                                 title_key='displayable_id',
36                                 value_key='shipto_id',
37                                 with_empty=1,
38                                 style='width: 300px') %]</td>
39           </tr>
40
41           <tr>
42             <th align="right">[% 'Steuersatz' | $T8 %]</th>
43             <td>[% L.select_tag('order.taxzone_id', SELF.all_taxzones, default=SELF.order.taxzone_id, title_key='description', style='width: 300px', class='recalc') %]</td>
44           </tr>
45
46 [%- IF SELF.all_departments.size %]
47           <tr>
48             <th align="right">[% 'Department' | $T8 %]</th>
49             <td>
50               [% L.select_tag('order.department_id', SELF.all_departments, default=SELF.order.department_id, title_key='description', with_empty=1, style='width:300px') %]
51             </td>
52           </tr>
53 [%- END %]
54
55           <tr>
56             <th align="right">[% 'Shipping Point' | $T8 %]</th>
57             <td>[% L.input_tag('order.shippingpoint', SELF.order.shippingpoint, style='width: 300px') %]</td>
58           </tr>
59
60           <tr>
61             <th align="right">[% 'Ship via' | $T8 %]</th>
62             <td>[% L.input_tag('order.shipvia', SELF.order.shipvia, style='width: 300px') %]</td>
63           </tr>
64
65           <tr>
66             <th align="right">[% 'Transaction description' | $T8 %]</th>
67             <td>[% L.input_tag('order.transaction_description', SELF.order.transaction_description, style='width: 300px') %]</td>
68           </tr>
69
70           <tr>
71             <th align="right">[% 'Project Number' | $T8 %]</th>
72             <td>[% L.project_picker('order.globalproject_id', SELF.order.globalproject_id, style='width: 300px') %]</td>
73           </tr>
74
75         </table>
76       </td>
77
78       <td align="right">
79         <table>
80
81           <tr>
82             <td colspan="2" align="center">
83               [%- IF SELF.order.id %]
84                 <label for="order.delivered">[% 'Delivery Order(s) for full qty created' | $T8 %]</label>
85                 [% L.yes_no_tag('order.delivered', SELF.order.delivered) %]
86                 <label for="order.closed">[% 'Closed' | $T8 %]</label>
87                 [% L.yes_no_tag('order.closed', SELF.order.closed) %]
88               [%- END %]
89             </td>
90           </tr>
91
92           <tr>
93             <th align="right">[% 'Employee' | $T8 %]</th>
94             <td>[% L.select_tag('order.employee_id',
95               SELF.all_employees,
96               default=(SELF.order.employee_id ? SELF.order.employee_id : SELF.current_employee_id),
97               title_key='safe_name') %]</td>
98           </tr>
99
100           [% IF SELF.cv == 'customer' %]
101           <tr>
102             <th align="right">[% 'Salesman' | $T8 %]</th>
103             <td>[% L.select_tag('order.salesman_id',
104               SELF.all_salesmen,
105               default=(SELF.order.salesman_id ? SELF.order.salesman_id : SELF.current_employee_id),
106               title_key='safe_name') %]</td>
107           </tr>
108           [% END %]
109
110           <tr>
111             <th width="70%" align="right" nowrap>[% 'Order Number' | $T8 %]</th>
112             <td>[% L.input_tag('order.ordnumber', SELF.order.ordnumber, size = 11) %]</td>
113           </tr>
114
115           <tr>
116             <th width="70%" align="right" nowrap>[% 'Quotation Number' | $T8 %]</th>
117             <td>[% L.input_tag('order.quonumber', SELF.order.quonumber, size = 11) %]</td>
118           </tr>
119
120           <tr>
121             <th width="70%" align="right" nowrap>[% 'Customer Order Number' | $T8 %]</th>
122             <td>[% L.input_tag('order.cusordnumber', SELF.order.cusordnumber, size = 11) %]</td>
123           </tr>
124
125           <tr>
126             <th width="70%" align="right" nowrap>[% 'Order Date' | $T8 %]</th>
127             <td>[% L.date_tag('order.transdate', SELF.order.transdate) %]</td>
128           </tr>
129
130           <tr>
131             <th width="70%" align="right" nowrap>[% 'Reqdate' | $T8 %]</th>
132             <td>[% L.date_tag('order.reqdate', SELF.order.reqdate) %]</td>
133           </tr>
134
135           <tr>
136             <th width="70%" align="right" nowrap>[% 'Insert Date' | $T8 %]</th>
137             <td>[% SELF.order.itime_as_date %]</td>
138           </tr>
139
140         </table>
141
142       </td>
143     </tr>
144   </table>
145
146   [%- PROCESS order/tabs/_item_input.html %]
147
148   [% L.button_tag('show_multi_items_dialog()', LxERP.t8('Add multiple parts')) %]</td>
149
150   <table width="100%">
151     <tr>
152       <td>
153
154         <div id="row_table_scroll_id" style="overflow-y: auto; height: 25vh">
155           <table id="row_table_id" width="100%">
156             <thead>
157               <tr class="listheading">
158                 <th class="listheading" style='display:none'></th>
159                 <th class="listheading" nowrap width="3" >[%- 'position'     | $T8 %] </th>
160                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/updown.png" alt="[%- LxERP.t8('reorder item') %]"></th>
161                 <th class="listheading" style='text-align:center' nowrap width="1"><img src="image/close.png" alt="[%- LxERP.t8('delete item') %]"></th>
162                 <th id="partnumber_header_id"  class="listheading" nowrap width="15"><a href='#' onClick='javascript:reorder_items("partnumber")'> [%- 'Partnumber'  | $T8 %]</a></th>
163                 <th id="description_header_id" class="listheading" nowrap           ><a href='#' onClick='javascript:reorder_items("description")'>[%- 'Description' | $T8 %]</a></th>
164                 <th id="qty_header_id"         class="listheading" nowrap width="5" ><a href='#' onClick='javascript:reorder_items("qty")'>        [%- 'Qty'         | $T8 %]</a></th>
165                 <th class="listheading" nowrap width="5" >[%- 'Price Factor' | $T8 %] </th>
166                 <th class="listheading" nowrap width="5" >[%- 'Unit'         | $T8 %] </th>
167                 <th class="listheading" nowrap width="5" >[%- 'Price Source' | $T8 %] </th>
168                 <th id="sellprice_header_id"   class="listheading" nowrap width="15" ><a href='#' onClick='javascript:reorder_items("sellprice")'> [%- 'Price'       | $T8 %]</a></th>
169                 <th id="discount_header_id"    class="listheading" nowrap width="15" ><a href='#' onClick='javascript:reorder_items("discount")'>  [%- 'Discount'    | $T8 %]</a></th>
170                 <th class="listheading" nowrap width="10">[%- 'Extended'     | $T8 %] </th>
171               </tr>
172             </thead>
173
174             [%- FOREACH item = SELF.order.items_sorted %]
175               [%- PROCESS order/tabs/_row.html ITEM=item ID=item.id %]
176             [%- END %]
177
178           </table>
179         </div>
180
181       </td>
182     </tr>
183
184     <tr>
185     </tr>
186
187     <tr>
188       <td colspan="100%" width="100%">
189         <table width="100%">
190           <tr>
191             <td>
192               <table>
193                 <tr>
194                   <th align="left">[% 'Notes' | $T8 %]</th>
195                   <th align="left">[% 'Internal Notes' | $T8 %]</th>
196                 </tr>
197                 <tr valign="top">
198                   <td>
199                     [% L.textarea_tag('order.notes', SELF.order.notes, wrap="soft", style="width: 350px; height: 150px", class="texteditor") %]
200                   </td>
201                   <td>
202                     [% L.textarea_tag('order.intnotes', SELF.order.intnotes, wrap="soft", style="width: 350px; height: 150px") %]
203                   </td>
204                 </tr>
205               </table>
206             </td>
207
208             <td>
209               <table>
210                 <tr>
211                   <th align="right">[% 'Payment Terms' | $T8 %]</th>
212                   <td>[% L.select_tag('order.payment_id',
213                                       SELF.all_payment_terms,
214                                       default = SELF.order.payment_id,
215                                       with_empty = 1,
216                                       title_key = 'description',
217                                       style = 'width: 250px') %]</td>
218                 </tr>
219                 <tr>
220                   <th align="right">[% 'Delivery Terms' | $T8 %]</th>
221                   <td>[% L.select_tag('order.delivery_term_id',
222                                       SELF.all_delivery_terms,
223                                       default = SELF.order.delivery_term_id,
224                                       with_empty = 1,
225                                       title_key = 'description',
226                                       style = 'width: 250px') %]</td>
227                 </tr>
228               </table>
229             </td>
230
231             <td align="right">
232               <table>
233                 <tr id="taxincluded_row_id" [%- IF !SELF.taxes.size %]style="display:none"[%- END %]>
234                   <td align=right colspan="2">
235                     <label for="order.taxincluded"><b>[% 'Tax Included' | $T8 %]</b></label>
236                     [% L.yes_no_tag('order.taxincluded', SELF.order.taxincluded, class='recalc') %]
237                   </td>
238                 </tr>
239
240                 <tr id="subtotal_row_id" [%- IF SELF.order.taxincluded %]style="display:none"[%- END %]>
241                   <th align="right">[%- 'Subtotal' | $T8 %]</th>
242                   <td align="right">
243                     [%- L.div_tag(SELF.order.netamount_as_number, id='netamount_id') %]
244                   </td>
245                 </tr>
246                 [%- FOREACH tax = SELF.taxes %]
247                   [%- PROCESS order/tabs/_tax_row.html TAX=tax TAXINCLUDED=SELF.order.taxincluded %]
248                 [%- END %]
249                 <tr id="amount_row_id">
250                   <th align="right">[%- 'Total' | $T8 %]</th>
251                   <td align="right">
252                     [%- L.div_tag(SELF.order.amount_as_number, id='amount_id') %]
253                   </td>
254                 </tr>
255               </table>
256             </td>
257
258           </tr>
259         </table>
260       </td>
261     </tr>
262
263   </table>
264
265 </div>
266
267
268 [% L.sortable_element('#row_table_id') %]
269
270 <script type='text/javascript'>
271 function reload_cv_dependend_selections() {
272   var data = $('#order_form').serialize();
273   data += '&action=Order/customer_vendor_changed';
274
275   $.post("controller.pl", data, kivi.eval_json_result);
276 }
277
278 function unit_change(event) {
279   var row = $(event.target).parents("tbody").first();
280   var item_id_dom = $(row).find('[name="orderitem_ids[+]"]');
281   var sellprice_dom = $(row).find('[name="order.orderitems[].sellprice_as_number"]');
282   var select_elt = $(row).find('[name="order.orderitems[].unit"]');
283
284   var oldval = $(select_elt).data('oldval');
285   $(select_elt).data('oldval', $(select_elt).val());
286
287   var data = $('#order_form').serialize();
288   data += '&action=Order/unit_changed';
289   data += '&item_id=' + item_id_dom.val();
290   data += '&old_unit=' + oldval;
291   data += '&sellprice_dom_id=' + sellprice_dom.attr('id');
292
293   $.post("controller.pl", data, kivi.eval_json_result);
294 }
295
296 function update_sellprice(item_id, price_str) {
297   var row = $('#item_' + item_id).parents("tbody").first();
298   var price_elt = $(row).find('[name="order.orderitems[].sellprice_as_number"]');
299   var html_elt  = $(row).find('[name="sellprice_text"]');
300   price_elt.val(price_str);
301   html_elt.html(price_str);
302 }
303
304 function add_item() {
305   if ($('#add_item_parts_id').val() == '') return;
306   if (!check_cv()) return;
307
308   $('#row_table_id thead a img').remove();
309
310   var data = $('#order_form').serialize();
311   data += '&action=Order/add_item';
312
313   $.post("controller.pl", data, kivi.eval_json_result);
314 }
315
316 function show_multi_items_dialog() {
317   if (!check_cv()) return;
318
319   $('#row_table_id thead a img').remove();
320
321   kivi.popup_dialog({
322     url: 'controller.pl?action=Order/show_multi_items_dialog',
323     data: { type: $('#type').val(),
324             callback: 'Order/add_multi_items',
325             callback_data_id: 'order_form' },
326     id: 'jq_multi_items_dialog',
327     dialog: {
328       title: kivi.t8('Add multiple items'),
329       width:  800,
330       height: 500
331     }
332   });
333   return true;
334 }
335
336 function close_multi_items_dialog() {
337   $('#jq_multi_items_dialog').dialog('close');
338 };
339
340 function delete_order_item_row(clicked) {
341   var row = $(clicked).parents("tbody").first();
342   $(row).remove();
343
344   renumber_positions();
345   recalc_amounts_and_taxes();
346 }
347
348 function price_chooser_item_row(clicked) {
349   var row = $(clicked).parents("tbody").first();
350   var item_id_dom = $(row).find('[name="orderitem_ids[+]"]');
351
352   var data = $('#order_form').serialize();
353   data += '&action=Order/price_popup';
354   data += '&item_id=' + item_id_dom.val();
355
356   $.post("controller.pl", data, kivi.eval_json_result);
357 }
358
359 function update_price_source(item_id, source, descr, price_str) {
360   var row = $('#item_' + item_id).parents("tbody").first();
361   var source_elt = $(row).find('[name="order.orderitems[].active_price_source"]');
362   var button_elt = $(row).find('[name="price_chooser_button"]');
363
364   button_elt.val(button_elt.val().replace(/.*\|/, descr + " |"));
365   source_elt.val(source);
366
367   var editable_div_elt = $(row).find('[name="editable_price"]');
368   var not_editable_div_elt = $(row).find('[name="not_editable_price"]');
369   if ([%- AUTH.assert('edit_prices', 1) %] == 1 && source == '') {
370     // editable
371     $(editable_div_elt).show();
372     $(not_editable_div_elt).hide();
373     $(editable_div_elt).find(':input').prop("disabled", false);
374     $(not_editable_div_elt).find(':input').prop("disabled", true);
375   } else {
376     // not editable
377     $(editable_div_elt).hide();
378     $(not_editable_div_elt).show();
379     $(editable_div_elt).find(':input').prop("disabled", true);
380     $(not_editable_div_elt).find(':input').prop("disabled", false);
381   }
382
383   if (price_str) {
384     var price_elt = $(row).find('[name="order.orderitems[].sellprice_as_number"]');
385     var html_elt  = $(row).find('[name="sellprice_text"]');
386     price_elt.val(price_str);
387     html_elt.html(price_str);
388     recalc_amounts_and_taxes();
389   }
390
391   kivi.io.close_dialog();
392 }
393
394 function update_discount_source(item_id, source, descr, discount_str) {
395   var row = $('#item_' + item_id).parents("tbody").first();
396   var source_elt = $(row).find('[name="order.orderitems[].active_discount_source"]');
397   var button_elt = $(row).find('[name="price_chooser_button"]');
398
399   button_elt.val(button_elt.val().replace(/\|.*/, "| " + descr));
400   source_elt.val(source);
401
402   var editable_div_elt = $(row).find('[name="editable_discount"]');
403   var not_editable_div_elt = $(row).find('[name="not_editable_discount"]');
404   if ([%- AUTH.assert('edit_prices', 1) %] == 1 && source == '') {
405     // editable
406     $(editable_div_elt).show();
407     $(not_editable_div_elt).hide();
408     $(editable_div_elt).find(':input').prop("disabled", false);
409     $(not_editable_div_elt).find(':input').prop("disabled", true);
410   } else {
411     // not editable
412     $(editable_div_elt).hide();
413     $(not_editable_div_elt).show();
414     $(editable_div_elt).find(':input').prop("disabled", true);
415     $(not_editable_div_elt).find(':input').prop("disabled", false);
416   }
417
418   if (discount_str) {
419     var discount_elt = $(row).find('[name="order.orderitems[].discount_as_percent"]');
420     var html_elt     = $(row).find('[name="discount_text"]');
421     discount_elt.val(discount_str);
422     html_elt.html(discount_str);
423     recalc_amounts_and_taxes();
424   }
425
426   kivi.io.close_dialog();
427 }
428
429 function reformat_number(event) {
430   $(event.target).val(kivi.format_amount(kivi.parse_amount($(event.target).val()), -2));
431 }
432
433 function recalc_amounts_and_taxes() {
434   var data = $('#order_form').serialize();
435   data += '&action=Order/recalc_amounts_and_taxes';
436
437   $.post("controller.pl", data, kivi.eval_json_result);
438 }
439
440 function redisplay_linetotals(data) {
441   $('.row_entry [name="linetotal"]').each(function(idx, elt) {
442     $(elt).html(data[idx]);
443   });
444 }
445
446 function row_table_scroll_down() {
447   $('#row_table_scroll_id').scrollTop($('#row_table_scroll_id')[0].scrollHeight);
448 }
449
450 function row_set_keyboard_events_by_id(item_id) {
451   var row = $('#item_' + item_id).parents("tbody").first();
452
453   row_set_keyboard_events(row);
454 }
455
456 function row_set_keyboard_events(rows) {
457   $(rows).keydown(function(event) {
458     if(event.keyCode == 40 && event.shiftKey == true) {
459       // shift arrow down
460       event.preventDefault();
461       var row = $(event.target).parents(".row_entry").first();
462       $(row).children().not(':first').show();
463       return false;
464     }
465     if(event.keyCode == 38 && event.shiftKey == true) {
466       // shift arrow up
467       event.preventDefault();
468       var row = $(event.target).parents(".row_entry").first();
469       $(row).children().not(':first').hide();
470       return false;
471     }
472   });
473
474   $(rows).dblclick(function(event) {
475       event.preventDefault();
476       var row = $(event.target).parents(".row_entry").first();
477       $(row).children().not(':first').toggle();
478       return false;
479   });
480 }
481
482 function set_unit_change_with_oldval_by_id(item_id) {
483   var row = $('#item_' + item_id).parents("tbody").first();
484   var select_elt = $(row).find('[name="order.orderitems[].unit"]');
485
486   set_unit_change_with_oldval(select_elt);
487 }
488
489 function set_unit_change_with_oldval(selects) {
490   selects.each(function(idx,elt) {
491     $(elt).data('oldval', $(elt).val());
492   });
493
494   selects.change(unit_change);
495 }
496
497 var email_dialog;
498
499 function show_email_dialog(html) {
500   var id            = 'jqueryui_popup_dialog';
501   var dialog_params = {
502     id:     id,
503     width:  800,
504     height: 500,
505     modal:  true,
506     close: function(event, ui) {
507       email_dialog.remove();
508     },
509   };
510
511   $('#' + id).remove();
512
513   email_dialog = $('<div style="display:none" id="' + id + '"></div>').appendTo('body');
514   email_dialog.html(html);
515   email_dialog.dialog(dialog_params);
516
517   $('.cancel').click(close_email_dialog);
518
519   return true;
520 }
521
522 close_email_dialog = function() {
523   email_dialog.dialog("close");
524 }
525
526 function renumber_positions() {
527   $('.row_entry [name="position"]').each(function(idx, elt) {
528     $(elt).html(idx+1);
529   });
530 }
531
532 function reorder_items(order_by) {
533   var dir = $('#' + order_by + '_header_id a img').attr("data-sort-dir");
534   $('#row_table_id thead a img').remove();
535
536   var src;
537   if (dir == "1") {
538     dir = "0";
539     src = "image/up.png";
540   } else {
541     dir = "1";
542     src = "image/down.png";
543   };
544
545   $('#' + order_by + '_header_id a').append('<img border=0 data-sort-dir=' + dir + ' src=' + src + ' alt="[%- LxERP.t8('sort items') %]">');
546
547   var data = $('#order_form').serialize();
548   data += '&action=Order/reorder_items';
549   data += '&order_by=' + order_by;
550   data += '&sort_dir=' + dir;
551
552   $.post("controller.pl", data, kivi.eval_json_result);
553 }
554
555 function redisplay_items(data) {
556   var old_rows = $('.row_entry').detach();
557   var new_rows = [];
558   $(data).each(function(idx, elt) {
559     new_rows.push(old_rows[elt.old_pos - 1]);
560   });
561   $(new_rows).appendTo($('#row_table_id'));
562   renumber_positions();
563 }
564
565 function show_longdescription_dialog(clicked) {
566   var row = $(clicked).parents("tbody").first();
567   var position = $(row).find('[name="position"]').html();
568   var partnumber = $(row).find('[name="partnumber"]').html();
569   var description_elt = $(row).find('[name="order.orderitems[].description"]');
570   var description = description_elt.val();
571   var longdescription_elt = $(row).find('[name="order.orderitems[].longdescription"]');
572   var longdescription;
573
574   if (!longdescription_elt.length) {
575     var data = 'action=Order/get_item_longdescription';
576     data += '&type=' + $('#type').val();
577     data += '&item_id=' + $(row).find('[name="order.orderitems[+].id"]').val();
578     data += '&parts_id=' + $(row).find('[name="order.orderitems[].parts_id"]').val();
579     $.ajax({
580       url: 'controller.pl',
581       data: data,
582       method: "GET",
583       async: false,
584       dataType: 'text',
585       success: function(val){
586         longdescription = val;
587       }
588     });
589   } else {
590     longdescription = longdescription_elt.val();
591   }
592
593   var params = { runningnumber: position,
594                  partnumber: partnumber,
595                  description: description,
596                  default_longdescription: longdescription,
597                  set_function: function(val){
598                    longdescription_elt.remove();
599                    $('<input type="hidden" name="order.orderitems[].longdescription">').insertAfter(description_elt).val(val);
600                  }
601                };
602
603   kivi.SalesPurchase.edit_longdescription_with_params(params);
604 }
605
606 $(function(){
607   $('#order_[%- cv_id %]').change(reload_cv_dependend_selections);
608   [%- IF SELF.cv == 'customer' %]
609     $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_sellprice_as_number').val(kivi.format_amount(o.sellprice, -2)) });
610   [%- ELSE %]
611     $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_sellprice_as_number').val(kivi.format_amount(o.lastcost, -2)) });
612   [%- END %]
613   $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_description').val(o.description) });
614   $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_unit').val(o.unit) });
615   $('.add_item_input').keydown(function(event) {
616     if(event.keyCode == 13) {
617       event.preventDefault();
618       add_item();
619       return false;
620     }
621   });
622   row_set_keyboard_events($('.row_entry'));
623   $('.recalc').change(recalc_amounts_and_taxes);
624   $('.reformat_number').change(reformat_number);
625
626   set_unit_change_with_oldval($('.unitselect'));
627 });
628
629 $('#row_table_id').on('sortstop', function(event, ui) {
630   $('#row_table_id thead a img').remove();
631   renumber_positions();
632 });
633 </script>