Auftrags-Controller: Mehrfach-Artikelauswahl mit Mengeneingabe.
[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 add_item() {
276   if ($('#add_item_parts_id').val() == '') return;
277   if (!check_cv()) return;
278
279   var data = $('#order_form').serialize();
280   data += '&action=Order/add_item';
281
282   $.post("controller.pl", data, kivi.eval_json_result);
283 }
284
285 function show_multi_items_dialog() {
286   if (!check_cv()) return;
287
288   kivi.popup_dialog({
289     url: 'controller.pl?action=Order/show_multi_items_dialog',
290     data: { type: $('#type').val(),
291             callback: 'Order/add_multi_items',
292             callback_data_id: 'order_form' },
293     id: 'jq_multi_items_dialog',
294     dialog: {
295       title: kivi.t8('Add multiple items'),
296       width:  800,
297       height: 500
298     }
299   });
300   return true;
301 }
302
303 function close_multi_items_dialog() {
304   $('#jq_multi_items_dialog').dialog('close');
305 };
306
307 function delete_order_item_row(clicked) {
308   var row = $(clicked).parents("tbody").first();
309   $(row).remove();
310
311   recalc_amounts_and_taxes();
312 }
313
314 function price_chooser_item_row(clicked) {
315   var row = $(clicked).parents("tbody").first();
316   var item_id_dom = $(row).find('[name="orderitem_ids[+]"]');
317
318   var data = $('#order_form').serialize();
319   data += '&action=Order/price_popup';
320   data += '&item_id=' + item_id_dom.val();
321
322   $.post("controller.pl", data, kivi.eval_json_result);
323 }
324
325 function update_price_source(item_id, source, descr, price_str) {
326   var row = $('#item_' + item_id).parents("tbody").first();
327   var source_elt = $(row).find('[name="order.orderitems[].active_price_source"]');
328   var button_elt = $(row).find('[name="price_chooser_button"]');
329
330   button_elt.val(button_elt.val().replace(/.*\|/, descr + " |"));
331   source_elt.val(source);
332
333   var editable_div_elt = $(row).find('[name="editable_price"]');
334   var not_editable_div_elt = $(row).find('[name="not_editable_price"]');
335   if ([%- AUTH.assert('edit_prices', 1) %] == 1 && source == '') {
336     // editable
337     $(editable_div_elt).show();
338     $(not_editable_div_elt).hide();
339     $(editable_div_elt).find(':input').prop("disabled", false);
340     $(not_editable_div_elt).find(':input').prop("disabled", true);
341   } else {
342     // not editable
343     $(editable_div_elt).hide();
344     $(not_editable_div_elt).show();
345     $(editable_div_elt).find(':input').prop("disabled", true);
346     $(not_editable_div_elt).find(':input').prop("disabled", false);
347   }
348
349   if (price_str) {
350     var price_elt = $(row).find('[name="order.orderitems[].sellprice_as_number"]');
351     var html_elt  = $(row).find('[name="sellprice_text"]');
352     price_elt.val(price_str);
353     html_elt.html(price_str);
354     recalc_amounts_and_taxes();
355   }
356
357   kivi.io.close_dialog();
358 }
359
360 function update_discount_source(item_id, source, descr, discount_str) {
361   var row = $('#item_' + item_id).parents("tbody").first();
362   var source_elt = $(row).find('[name="order.orderitems[].active_discount_source"]');
363   var button_elt = $(row).find('[name="price_chooser_button"]');
364
365   button_elt.val(button_elt.val().replace(/\|.*/, "| " + descr));
366   source_elt.val(source);
367
368   var editable_div_elt = $(row).find('[name="editable_discount"]');
369   var not_editable_div_elt = $(row).find('[name="not_editable_discount"]');
370   if ([%- AUTH.assert('edit_prices', 1) %] == 1 && source == '') {
371     // editable
372     $(editable_div_elt).show();
373     $(not_editable_div_elt).hide();
374     $(editable_div_elt).find(':input').prop("disabled", false);
375     $(not_editable_div_elt).find(':input').prop("disabled", true);
376   } else {
377     // not editable
378     $(editable_div_elt).hide();
379     $(not_editable_div_elt).show();
380     $(editable_div_elt).find(':input').prop("disabled", true);
381     $(not_editable_div_elt).find(':input').prop("disabled", false);
382   }
383
384   if (discount_str) {
385     var discount_elt = $(row).find('[name="order.orderitems[].discount_as_percent"]');
386     var html_elt     = $(row).find('[name="discount_text"]');
387     discount_elt.val(discount_str);
388     html_elt.html(discount_str);
389     recalc_amounts_and_taxes();
390   }
391
392   kivi.io.close_dialog();
393 }
394
395 function reformat_number(event) {
396   $(event.target).val(kivi.format_amount(kivi.parse_amount($(event.target).val()), -2));
397 }
398
399 function recalc_amounts_and_taxes() {
400   var data = $('#order_form').serialize();
401   data += '&action=Order/recalc_amounts_and_taxes';
402
403   $.post("controller.pl", data, kivi.eval_json_result);
404 }
405
406 function redisplay_linetotals(data) {
407   $('.row_entry [name="linetotal"]').each(function(idx, elt) {
408     $(elt).html(data[idx]);
409   });
410 }
411
412 function row_table_scroll_down() {
413   $('#row_table_scroll_id').scrollTop($('#row_table_scroll_id')[0].scrollHeight);
414 }
415
416 function row_set_keyboard_events_by_id(item_id) {
417   var row = $('#item_' + item_id).parents("tbody").first();
418
419   row_set_keyboard_events(row);
420 }
421
422 function row_set_keyboard_events(rows) {
423   $(rows).keydown(function(event) {
424     if(event.keyCode == 40 && event.shiftKey == true) {
425       // shift arrow down
426       event.preventDefault();
427       var row = $(event.target).parents(".row_entry").first();
428       $(row).children().not(':first').show();
429       return false;
430     }
431     if(event.keyCode == 38 && event.shiftKey == true) {
432       // shift arrow up
433       event.preventDefault();
434       var row = $(event.target).parents(".row_entry").first();
435       $(row).children().not(':first').hide();
436       return false;
437     }
438   });
439
440   $(rows).dblclick(function(event) {
441       event.preventDefault();
442       var row = $(event.target).parents(".row_entry").first();
443       $(row).children().not(':first').toggle();
444       return false;
445   });
446 }
447
448 var email_dialog;
449
450 function show_email_dialog(html) {
451   var id            = 'jqueryui_popup_dialog';
452   var dialog_params = {
453     id:     id,
454     width:  800,
455     height: 500,
456     modal:  true,
457     close: function(event, ui) {
458       email_dialog.remove();
459     },
460   };
461
462   $('#' + id).remove();
463
464   email_dialog = $('<div style="display:none" id="' + id + '"></div>').appendTo('body');
465   email_dialog.html(html);
466   email_dialog.dialog(dialog_params);
467
468   $('.cancel').click(close_email_dialog);
469
470   return true;
471 }
472
473 close_email_dialog = function() {
474   email_dialog.dialog("close");
475 }
476
477
478 $(function(){
479   $('#order_[%- cv_id %]').change(reload_cv_dependend_selections);
480   [%- IF SELF.cv == 'customer' %]
481     $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_sellprice_as_number').val(kivi.format_amount(o.sellprice, -2)) });
482   [%- ELSE %]
483     $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_sellprice_as_number').val(kivi.format_amount(o.lastcost, -2)) });
484   [%- END %]
485   $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_description').val(o.description) });
486   $('#add_item_parts_id').on('set_item:PartPicker', function(e,o) { $('#add_item_unit').val(o.unit) });
487   $('.add_item_input').keydown(function(event) {
488     if(event.keyCode == 13) {
489       event.preventDefault();
490       add_item();
491       return false;
492     }
493   });
494   row_set_keyboard_events($('.row_entry'));
495   $('.recalc').change(recalc_amounts_and_taxes);
496   $('.reformat_number').change(reformat_number);
497 });
498
499 </script>