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