Merge branch 'master' into after-262
[kivitendo-erp.git] / bin / mozilla / do.pl
1 #=====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger, Accounting
9 # Copyright (c) 1998-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #
16 # This program is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2 of the License, or
19 # (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #======================================================================
29 #
30 # Delivery orders
31 #======================================================================
32
33 use List::Util qw(max sum);
34 use POSIX qw(strftime);
35 use YAML;
36
37 use SL::DO;
38 use SL::IR;
39 use SL::IS;
40 use SL::ReportGenerator;
41 use SL::WH;
42
43 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
45 require "bin/mozilla/invoice_io.pl";
46 require "bin/mozilla/io.pl";
47 require "bin/mozilla/reportgenerator.pl";
48
49 use strict;
50
51 1;
52
53 # end of main
54
55 sub check_do_access {
56   $main::auth->assert($main::form->{type} . '_edit');
57 }
58
59 sub set_headings {
60   $main::lxdebug->enter_sub();
61
62   check_do_access();
63
64   my ($action) = @_;
65
66   my $form     = $main::form;
67   my $locale   = $main::locale;
68
69   if ($form->{type} eq 'purchase_delivery_order') {
70     $form->{vc}    = 'vendor';
71     $form->{title} = $action eq "edit" ? $locale->text('Edit Purchase Delivery Order') : $locale->text('Add Purchase Delivery Order');
72   } else {
73     $form->{vc}    = 'customer';
74     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
75   }
76
77   $form->{heading} = $locale->text('Delivery Order');
78
79   $main::lxdebug->leave_sub();
80 }
81
82 sub add {
83   $main::lxdebug->enter_sub();
84
85   check_do_access();
86
87   my $form     = $main::form;
88
89   set_headings("add");
90
91   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
92
93   order_links();
94   prepare_order();
95   display_form();
96
97   $main::lxdebug->leave_sub();
98 }
99
100 sub edit {
101   $main::lxdebug->enter_sub();
102
103   check_do_access();
104
105   my $form     = $main::form;
106
107   # show history button
108   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
109   #/show hhistory button
110
111   $form->{simple_save} = 0;
112
113   set_headings("edit");
114
115   # editing without stuff to edit? try adding it first
116   if ($form->{rowcount} && !$form->{print_and_save}) {
117 #     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
118 #     if (!$id) {
119
120       # reset rowcount
121       undef $form->{rowcount};
122       add();
123       $main::lxdebug->leave_sub();
124       return;
125 #     }
126   } elsif (!$form->{id}) {
127     add();
128     $main::lxdebug->leave_sub();
129     return;
130   }
131
132   my ($language_id, $printer_id);
133   if ($form->{print_and_save}) {
134     $form->{action}   = "dispatcher";
135     $form->{action_print} = "1";
136     $form->{resubmit} = 1;
137     $language_id      = $form->{language_id};
138     $printer_id       = $form->{printer_id};
139   }
140
141   set_headings("edit");
142
143   order_links();
144   prepare_order();
145
146   if ($form->{print_and_save}) {
147     $form->{language_id} = $language_id;
148     $form->{printer_id}  = $printer_id;
149   }
150
151   display_form();
152
153   $main::lxdebug->leave_sub();
154 }
155
156 sub order_links {
157   $main::lxdebug->enter_sub();
158
159   check_do_access();
160
161   my $form     = $main::form;
162   my %myconfig = %main::myconfig;
163
164   # get customer/vendor
165   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
166
167   # retrieve order/quotation
168   $form->{webdav}   = $::lx_office_conf{system}->{webdav};
169   $form->{jsscript} = 1;
170
171   my $editing = $form->{id};
172
173   DO->retrieve('vc'  => $form->{vc},
174                'ids' => $form->{id});
175
176   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes));
177   $form->{shipto} = 1 if $form->{id};
178
179   # get customer / vendor
180   if ($form->{vc} eq 'vendor') {
181     IR->get_vendor(\%myconfig, \%$form);
182     $form->{discount} = $form->{vendor_discount};
183   } else {
184     IS->get_customer(\%myconfig, \%$form);
185     $form->{discount} = $form->{customer_discount};
186   }
187
188   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
189   $form->restore_vars(qw(taxincluded)) if $form->{id};
190   $form->restore_vars(qw(salesman_id)) if $editing;
191
192   if ($form->{"all_$form->{vc}"}) {
193     unless ($form->{"$form->{vc}_id"}) {
194       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
195     }
196   }
197
198   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
199   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
200
201   $form->{employee} = "$form->{employee}--$form->{employee_id}";
202
203   $main::lxdebug->leave_sub();
204 }
205
206 sub prepare_order {
207   $main::lxdebug->enter_sub();
208
209   check_do_access();
210
211   my $form     = $main::form;
212   my %myconfig = %main::myconfig;
213
214   $form->{formname} = $form->{type} unless $form->{formname};
215
216   my $i = 0;
217   foreach my $ref (@{ $form->{form_details} }) {
218     $form->{rowcount} = ++$i;
219
220     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
221   }
222   for my $i (1 .. $form->{rowcount}) {
223     if ($form->{id}) {
224       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
225     } else {
226       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
227     }
228     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
229     $dec           = length $dec;
230     my $decimalplaces = ($dec > 2) ? $dec : 2;
231
232     # copy reqdate from deliverydate for invoice -> order conversion
233     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
234
235     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
236     $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
237
238     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
239     $dec_qty = length $dec_qty;
240     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
241   }
242
243   $main::lxdebug->leave_sub();
244 }
245
246 sub form_header {
247   $main::lxdebug->enter_sub();
248
249   check_do_access();
250
251   my $form     = $main::form;
252   my %myconfig = %main::myconfig;
253
254   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
255   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
256
257   # use JavaScript Calendar or not
258   $form->{jsscript} = 1;
259
260   #write Trigger
261   my $jsscript = Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1", "reqdate", "BL", "trigger2");
262
263   my @old_project_ids = ($form->{"globalproject_id"});
264   map({ push(@old_project_ids, $form->{"project_id_$_"})
265           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
266
267   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
268   $form->get_lists("contacts"       => "ALL_CONTACTS",
269                    "shipto"         => "ALL_SHIPTO",
270                    "projects"       => {
271                      "key"          => "ALL_PROJECTS",
272                      "all"          => 0,
273                      "old_id"       => \@old_project_ids
274                    },
275                    "employees"      => "ALL_EMPLOYEES",
276                    "salesmen"       => "ALL_SALESMEN",
277                    $vc              => "ALL_VC",
278                    "price_factors"  => "ALL_PRICE_FACTORS",
279                    "departments"    => "ALL_DEPARTMENTS",
280                    "business_types" => "ALL_BUSINESS_TYPES",
281     );
282
283   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
284   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
285
286   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
287
288   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
289   $form->{oldvcname}         =~ s/--.*//;
290
291   $form->{onload} = "";
292   if ($form->{resubmit}) {
293     if ($form->{format} eq "html") {
294       $form->{onload} = "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
295     }
296     # emulate click for resubmitting actions
297     $form->{onload} .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
298     $form->{onload} .= "document.do.submit();"
299   }
300
301   $form->header();
302   # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
303   $form->{department} .= '--' . $form->{department_id};
304
305   print $form->parse_html_template('do/form_header');
306
307   $main::lxdebug->leave_sub();
308 }
309
310 sub form_footer {
311   $main::lxdebug->enter_sub();
312
313   check_do_access();
314
315   my $form     = $main::form;
316
317   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
318
319   print $form->parse_html_template('do/form_footer');
320
321   $main::lxdebug->leave_sub();
322 }
323
324 sub update_delivery_order {
325   $main::lxdebug->enter_sub();
326
327   check_do_access();
328
329   my $form     = $main::form;
330   my %myconfig = %main::myconfig;
331
332   set_headings($form->{"id"} ? "edit" : "add");
333
334   $form->{update} = 1;
335
336   my $payment_id;
337   $payment_id = $form->{payment_id} if $form->{payment_id};
338
339   check_name($form->{vc});
340
341   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
342
343   # for pricegroups
344   my $i = $form->{rowcount};
345
346   if (   ($form->{"partnumber_$i"} eq "")
347       && ($form->{"description_$i"} eq "")
348       && ($form->{"partsgroup_$i"}  eq "")) {
349
350     check_form();
351
352   } else {
353
354     if ($form->{type} eq 'purchase_delivery_order') {
355       IR->retrieve_item(\%myconfig, $form);
356     } else {
357       IS->retrieve_item(\%myconfig, $form);
358     }
359
360     my $rows = scalar @{ $form->{item_list} };
361
362     if ($rows) {
363       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
364
365       if ($rows > 1) {
366
367         select_item();
368         ::end_of_request();
369
370       } else {
371
372         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
373
374         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
375         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
376         $form->{"lastcost_$i"}          = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
377         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
378       }
379
380       display_form();
381
382     } else {
383
384       # ok, so this is a new part
385       # ask if it is a part or service item
386
387       if (   $form->{"partsgroup_$i"}
388           && ($form->{"partsnumber_$i"} eq "")
389           && ($form->{"description_$i"} eq "")) {
390         $form->{rowcount}--;
391         $form->{"discount_$i"} = "";
392         display_form();
393
394       } else {
395         $form->{"id_$i"}   = 0;
396         new_item();
397       }
398     }
399   }
400
401   $main::lxdebug->leave_sub();
402 }
403
404 sub search {
405   $main::lxdebug->enter_sub();
406
407   check_do_access();
408
409   my $form     = $main::form;
410   my %myconfig = %main::myconfig;
411   my $locale   = $main::locale;
412
413   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
414
415   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
416                                        "all" => 1 },
417                    "employees"    => "ALL_EMPLOYEES",
418                    "salesmen"     => "ALL_SALESMEN",
419                    "$form->{vc}s" => "ALL_VC");
420
421   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
422   $form->{jsscript}          = 1;
423   $form->{title}             = $locale->text('Delivery Orders');
424
425   $form->header();
426
427   print $form->parse_html_template('do/search');
428
429   $main::lxdebug->leave_sub();
430 }
431
432 sub orders {
433   $main::lxdebug->enter_sub();
434
435   check_do_access();
436
437   my $form     = $main::form;
438   my %myconfig = %main::myconfig;
439   my $locale   = $main::locale;
440   my $cgi      = $main::cgi;
441
442   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
443
444   report_generator_set_default_sort('transdate', 1);
445
446   DO->transactions();
447
448   $form->{rowcount} = scalar @{ $form->{DO} };
449
450   my @columns = qw(
451     ids                     transdate
452     id                      donumber
453     ordnumber
454     name                    employee
455     shipvia                 globalprojectnumber
456     transaction_description
457     open                    delivered
458   );
459
460   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
461   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
462
463   $form->{title}       = $locale->text('Delivery Orders');
464
465   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
466
467   my $report = SL::ReportGenerator->new(\%myconfig, $form);
468
469   my @hidden_variables = map { "l_${_}" } @columns;
470   push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber
471                                           transaction_description transdatefrom transdateto type vc employee_id salesman_id project_id);
472
473   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
474
475   my %column_defs = (
476     'ids'                     => { 'text' => '', },
477     'transdate'               => { 'text' => $locale->text('Date'), },
478     'id'                      => { 'text' => $locale->text('ID'), },
479     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
480     'ordnumber'               => { 'text' => $locale->text('Order'), },
481     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
482     'employee'                => { 'text' => $locale->text('Employee'), },
483     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
484     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
485     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
486     'open'                    => { 'text' => $locale->text('Open'), },
487     'delivered'               => { 'text' => $locale->text('Delivered'), },
488   );
489
490   foreach my $name (qw(id transdate donumber ordnumber name employee shipvia transaction_description)) {
491     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
492     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
493   }
494
495   $form->{"l_type"} = "Y";
496   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
497
498   $column_defs{ids}->{visible} = 'HTML';
499
500   $report->set_columns(%column_defs);
501   $report->set_column_order(@columns);
502
503   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
504
505   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
506
507   my @options;
508   if ($form->{customer}) {
509     push @options, $locale->text('Customer') . " : $form->{customer}";
510   }
511   if ($form->{vendor}) {
512     push @options, $locale->text('Vendor') . " : $form->{vendor}";
513   }
514   if ($form->{department}) {
515     my ($department) = split /--/, $form->{department};
516     push @options, $locale->text('Department') . " : $department";
517   }
518   if ($form->{donumber}) {
519     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
520   }
521   if ($form->{ordnumber}) {
522     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
523   }
524   if ($form->{transaction_description}) {
525     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
526   }
527   if ($form->{transdatefrom}) {
528     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
529   }
530   if ($form->{transdateto}) {
531     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
532   }
533   if ($form->{open}) {
534     push @options, $locale->text('Open');
535   }
536   if ($form->{closed}) {
537     push @options, $locale->text('Closed');
538   }
539   if ($form->{delivered}) {
540     push @options, $locale->text('Delivered');
541   }
542   if ($form->{notdelivered}) {
543     push @options, $locale->text('Not delivered');
544   }
545
546   $report->set_options('top_info_text'        => join("\n", @options),
547                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
548                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
549                        'output_format'        => 'HTML',
550                        'title'                => $form->{title},
551                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
552     );
553   $report->set_options_from_form();
554   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
555
556   # add sort and escape callback, this one we use for the add sub
557   $form->{callback} = $href .= "&sort=$form->{sort}";
558
559   # escape callback for href
560   my $callback = $form->escape($href);
561
562   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
563   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
564
565   my $idx            = 1;
566
567   foreach my $dord (@{ $form->{DO} }) {
568     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
569     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
570
571     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
572
573     $row->{ids}  = {
574       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
575                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
576       'valign'   => 'center',
577       'align'    => 'center',
578     };
579
580     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
581     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}";
582
583     $report->add_data($row);
584
585     $idx++;
586   }
587
588   $report->generate_with_headers();
589
590   $main::lxdebug->leave_sub();
591 }
592
593 sub save {
594   $main::lxdebug->enter_sub();
595
596   check_do_access();
597
598   my $form     = $main::form;
599   my %myconfig = %main::myconfig;
600   my $locale   = $main::locale;
601
602   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
603
604   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
605
606   $form->{donumber} =~ s/^\s*//g;
607   $form->{donumber} =~ s/\s*$//g;
608
609   my $msg = ucfirst $form->{vc};
610   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
611
612   # $locale->text('Customer missing!');
613   # $locale->text('Vendor missing!');
614
615   remove_emptied_rows();
616   validate_items();
617
618   # if the name changed get new values
619   if (check_name($form->{vc})) {
620     update();
621     ::end_of_request();
622   }
623
624   $form->{id} = 0 if $form->{saveasnew};
625   # best case fix für bug 1079. Einkaufsrabatt wird nicht richtig
626   # aus Lieferantenauftrag -> Lieferschein -> Rechnung Ã¼bernommen
627   # Tritt nur auf, wenn man direkt Ã¼ber Lieferschein -> speichern ->
628   # Workflow Rechnung geht (beim Aufruf Ã¼ber edit() i.O.)
629   # Gut. DO-save() speichert den Discount im DB-Format 0.12 für
630   # 12%, die Konvertierung wird leider in $form gemacht und daher
631   # wird die Maske mit dem falschen Rabatt wieder aufgebaut.
632   # Wie immer: backup_vars verwenden um nichts anderes kaputt zu
633   # machen. jan 03.03.2010
634   # nicht mehr notwendig da für bug 1284 der backend aufruf entsprechend
635   # geändert wurde
636   DO->save();
637   # saving the history
638   if(!exists $form->{addition}) {
639     $form->{snumbers} = qq|donumber_| . $form->{donumber};
640     $form->{addition} = "SAVED";
641     $form->save_history;
642   }
643   # /saving the history
644
645   $form->{simple_save} = 1;
646   if(!$form->{print_and_save}) {
647     set_headings("edit");
648     update();
649     ::end_of_request();
650   }
651   $main::lxdebug->leave_sub();
652 }
653
654 sub delete {
655   $main::lxdebug->enter_sub();
656
657   check_do_access();
658
659   my $form     = $main::form;
660   my $locale   = $main::locale;
661
662   map { delete $form->{$_} } qw(action header login password);
663   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
664
665   $form->{title} = $locale->text('Delete delivery order');
666   $form->header();
667
668   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
669
670   $main::lxdebug->leave_sub();
671 }
672
673 sub delete_delivery_order {
674   $main::lxdebug->enter_sub();
675
676   check_do_access();
677
678   my $form     = $main::form;
679   my %myconfig = %main::myconfig;
680   my $locale   = $main::locale;
681
682   if (DO->delete()) {
683     # saving the history
684     if(!exists $form->{addition}) {
685       $form->{snumbers} = qq|donumber_| . $form->{donumber};
686       $form->{addition} = "DELETED";
687       $form->save_history;
688     }
689     # /saving the history
690
691     $form->info($locale->text('Delivery Order deleted!'));
692     ::end_of_request();
693   }
694
695   $form->error($locale->text('Cannot delete delivery order!'));
696
697   $main::lxdebug->leave_sub();
698 }
699
700 sub invoice {
701   $main::lxdebug->enter_sub();
702
703   my $form     = $main::form;
704   my %myconfig = %main::myconfig;
705   my $locale   = $main::locale;
706
707   check_do_access();
708   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
709
710   $form->{convert_from_do_ids} = $form->{id};
711   $form->{deliverydate}        = $form->{transdate};
712   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
713   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
714   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
715
716   $form->{rowcount}--;
717
718   delete @{$form}{qw(id closed delivered)};
719
720   my ($script, $buysell);
721   if ($form->{type} eq 'purchase_delivery_order') {
722     $form->{title}  = $locale->text('Add Vendor Invoice');
723     $form->{script} = 'ir.pl';
724     $script         = "ir";
725     $buysell        = 'sell';
726
727   } else {
728     $form->{title}  = $locale->text('Add Sales Invoice');
729     $form->{script} = 'is.pl';
730     $script         = "is";
731     $buysell        = 'buy';
732   }
733
734   for my $i (1 .. $form->{rowcount}) {
735     # für bug 1284
736     if ($form->{discount}){ # Falls wir einen Lieferanten-/Kundenrabatt haben
737       # und keinen anderen discount wert an $i ...
738       $form->{"discount_$i"} ||= $form->{discount}*100; # ... nehmen wir diesen Rabatt
739     }
740     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
741   }
742
743   $form->{type} = "invoice";
744
745   # locale messages
746   $main::locale = new Locale "$myconfig{countrycode}", "$script";
747   $locale = $main::locale;
748
749   require "bin/mozilla/$form->{script}";
750
751   my $currency = $form->{currency};
752   invoice_links();
753
754   if ($form->{ordnumber}) {
755     require SL::DB::Order;
756     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
757       $order->load;
758       $form->{orddate} = $order->transdate_as_date;
759       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
760     }
761   }
762
763   $form->{currency}     = $currency;
764   $form->{exchangerate} = "";
765   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
766   $form->{exchangerate} = $form->{forex} if ($form->{forex});
767
768   prepare_invoice();
769
770   # format amounts
771   for my $i (1 .. $form->{rowcount}) {
772     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
773
774     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
775     $dec           = length $dec;
776     my $decimalplaces = ($dec > 2) ? $dec : 2;
777
778     # copy delivery date from reqdate for order -> invoice conversion
779     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
780       unless $form->{"deliverydate_$i"};
781
782
783     $form->{"sellprice_$i"} =
784       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
785                            $decimalplaces);
786
787     $form->{"lastcost_$i"} =
788       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
789                            $decimalplaces);
790
791     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
792     $dec_qty = length $dec_qty;
793     $form->{"qty_$i"} =
794       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
795
796   }
797
798   display_form();
799
800   $main::lxdebug->leave_sub();
801 }
802
803 sub invoice_multi {
804   $main::lxdebug->enter_sub();
805
806   my $form     = $main::form;
807   my %myconfig = %main::myconfig;
808   my $locale   = $main::locale;
809
810   check_do_access();
811   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
812
813   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
814
815   if (!scalar @do_ids) {
816     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
817   }
818
819   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
820
821   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
822     $form->show_generic_error($form->{vc} eq 'customer' ?
823                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
824                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
825                               'back_button' => 1);
826   }
827
828   my $source_type              = $form->{type};
829   $form->{convert_from_do_ids} = join ' ', @do_ids;
830   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
831   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
832   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
833   # $shell: perldoc perlunc; /delete EXPR
834   $form->{donumber}            = delete $form->{donumber_array};
835   $form->{deliverydate}        = $form->{transdate};
836   $form->{transdate}           = $form->current_date(\%myconfig);
837   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
838   $form->{type}                = "invoice";
839   $form->{closed}              = 0;
840   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
841
842   my ($script, $buysell);
843   if ($source_type eq 'purchase_delivery_order') {
844     $form->{title}  = $locale->text('Add Vendor Invoice');
845     $form->{script} = 'ir.pl';
846     $script         = "ir";
847     $buysell        = 'sell';
848
849   } else {
850     $form->{title}  = $locale->text('Add Sales Invoice');
851     $form->{script} = 'is.pl';
852     $script         = "is";
853     $buysell        = 'buy';
854   }
855
856   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
857
858   # get vendor or customer discount
859   my $vc_discount;
860   my $saved_form = save_form();
861   if ($form->{vc} eq 'vendor') {
862     IR->get_vendor(\%myconfig, \%$form);
863     $vc_discount = $form->{vendor_discount};
864   } else {
865     IS->get_customer(\%myconfig, \%$form);
866     $vc_discount = $form->parse_amount(\%myconfig, $form->{customer_discount});
867   }
868   restore_form($saved_form);
869
870   $form->{rowcount} = 0;
871   foreach my $ref (@{ $form->{form_details} }) {
872     $form->{rowcount}++;
873     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
874     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
875     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
876
877     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
878       # und keinen anderen discount wert an $i ...
879       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
880     }
881
882     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
883     # Anm.: Eine Ã„nderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
884     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
885
886     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
887   }
888   delete $form->{form_details};
889
890   $locale = new Locale "$myconfig{countrycode}", "$script";
891
892   require "bin/mozilla/$form->{script}";
893
894   invoice_links();
895   prepare_invoice();
896   display_form();
897
898   $main::lxdebug->leave_sub();
899 }
900
901 sub save_as_new {
902   $main::lxdebug->enter_sub();
903
904   check_do_access();
905
906   my $form     = $main::form;
907
908   $form->{saveasnew} = 1;
909   $form->{closed}    = 0;
910   $form->{delivered} = 0;
911   map { delete $form->{$_} } qw(printed emailed queued);
912   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
913
914   # Let Lx-Office assign a new order number if the user hasn't changed the
915   # previous one. If it has been changed manually then use it as-is.
916   $form->{donumber} =~ s/^\s*//g;
917   $form->{donumber} =~ s/\s*$//g;
918   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
919     delete($form->{donumber});
920   }
921
922   save();
923
924   $main::lxdebug->leave_sub();
925 }
926
927 sub e_mail {
928   $main::lxdebug->enter_sub();
929
930   check_do_access();
931
932   my $form     = $main::form;
933
934   $form->{print_and_save} = 1;
935
936   my $saved_form = save_form();
937
938   save();
939
940   restore_form($saved_form, 0, qw(id ordnumber quonumber));
941
942   edit_e_mail();
943
944   $main::lxdebug->leave_sub();
945 }
946
947 sub calculate_stock_in_out {
948   $main::lxdebug->enter_sub();
949
950   my $form     = $main::form;
951
952   my $i = shift;
953
954   if (!$form->{"id_${i}"}) {
955     $main::lxdebug->leave_sub();
956     return '';
957   }
958
959   my $all_units = AM->retrieve_all_units();
960
961   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
962   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
963
964   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
965
966   my $content  = $form->format_amount_units('amount'      => $sum * 1,
967                                             'part_unit'   => $form->{"partunit_$i"},
968                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
969                                             'conv_units'  => 'convertible_not_smaller',
970                                             'max_places'  => 2);
971   $content     = qq|<span id="stock_in_out_qty_display_${i}">${content}</span> <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
972
973   $main::lxdebug->leave_sub();
974
975   return $content;
976 }
977
978 sub get_basic_bin_wh_info {
979   $main::lxdebug->enter_sub();
980
981   my $stock_info = shift;
982
983   my $form     = $main::form;
984
985   foreach my $sinfo (@{ $stock_info }) {
986     next unless ($sinfo->{bin_id});
987
988     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
989     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
990   }
991
992   $main::lxdebug->leave_sub();
993 }
994
995 sub stock_in_out_form {
996   $main::lxdebug->enter_sub();
997
998   my $form     = $main::form;
999
1000   if ($form->{in_out} eq 'out') {
1001     stock_out_form();
1002   } else {
1003     stock_in_form();
1004   }
1005
1006   $main::lxdebug->leave_sub();
1007 }
1008
1009 sub redo_stock_info {
1010   $main::lxdebug->enter_sub();
1011
1012   my %params    = @_;
1013
1014   my $form     = $main::form;
1015
1016   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
1017
1018   if ($params{add_empty_row}) {
1019     push @non_empty, {
1020       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
1021       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
1022     };
1023   }
1024
1025   @{ $params{stock_info} } = @non_empty;
1026
1027   $main::lxdebug->leave_sub();
1028 }
1029
1030 sub update_stock_in {
1031   $main::lxdebug->enter_sub();
1032
1033   my $form     = $main::form;
1034   my %myconfig = %main::myconfig;
1035
1036   my $stock_info = [];
1037
1038   foreach my $i (1..$form->{rowcount}) {
1039     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1040     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1041   }
1042
1043   display_stock_in_form($stock_info);
1044
1045   $main::lxdebug->leave_sub();
1046 }
1047
1048 sub stock_in_form {
1049   $main::lxdebug->enter_sub();
1050
1051   my $form     = $main::form;
1052
1053   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1054
1055   display_stock_in_form($stock_info);
1056
1057   $main::lxdebug->leave_sub();
1058 }
1059
1060 sub display_stock_in_form {
1061   $main::lxdebug->enter_sub();
1062
1063   my $stock_info = shift;
1064
1065   my $form     = $main::form;
1066   my %myconfig = %main::myconfig;
1067   my $locale   = $main::locale;
1068
1069   $form->{jsscript} = 1;
1070
1071   $form->{title} = $locale->text('Stock');
1072
1073   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1074
1075   my $units      = AM->retrieve_units(\%myconfig, $form);
1076   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
1077   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
1078
1079   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1080                                      'bins'   => 'BINS' });
1081
1082   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1083
1084   get_basic_bin_wh_info($stock_info);
1085
1086   $form->header();
1087   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1088                                                          'STOCK_INFO' => $stock_info,
1089                                                          'PART_INFO'  => $part_info, });
1090
1091   $main::lxdebug->leave_sub();
1092 }
1093
1094 sub _stock_in_out_set_qty_display {
1095   my $stock_info       = shift;
1096   my $form             = $::form;
1097   my $all_units        = AM->retrieve_all_units();
1098   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1099   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
1100                                                     part_unit   => $form->{partunit},
1101                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
1102                                                     conv_units  => 'convertible_not_smaller',
1103                                                     max_places  => 2);
1104 }
1105
1106 sub set_stock_in {
1107   $main::lxdebug->enter_sub();
1108
1109   my $form     = $main::form;
1110   my %myconfig = %main::myconfig;
1111
1112   my $stock_info = [];
1113
1114   foreach my $i (1..$form->{rowcount}) {
1115     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1116
1117     next if ($form->{"qty_$i"} <= 0);
1118
1119     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1120   }
1121
1122   $form->{stock} = YAML::Dump($stock_info);
1123
1124   _stock_in_out_set_qty_display($stock_info);
1125
1126   $form->header();
1127   print $form->parse_html_template('do/set_stock_in_out');
1128
1129   $main::lxdebug->leave_sub();
1130 }
1131
1132 sub stock_out_form {
1133   $main::lxdebug->enter_sub();
1134
1135   my $form     = $main::form;
1136   my %myconfig = %main::myconfig;
1137   my $locale   = $main::locale;
1138
1139   $form->{title} = $locale->text('Release From Stock');
1140
1141   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1142
1143   my $units      = AM->retrieve_units(\%myconfig, $form);
1144   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1145
1146   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1147
1148   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1149
1150   if (!$form->{delivered}) {
1151     foreach my $row (@contents) {
1152       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1153                                                          'part_unit'   => $part_info->{unit},
1154                                                          'conv_units'  => 'convertible_not_smaller',
1155                                                          'max_places'  => 2);
1156
1157       foreach my $sinfo (@{ $stock_info }) {
1158         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1159                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1160                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1161                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1162
1163         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1164       }
1165     }
1166
1167   } else {
1168     get_basic_bin_wh_info($stock_info);
1169
1170     foreach my $sinfo (@{ $stock_info }) {
1171       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1172     }
1173   }
1174
1175   $form->header();
1176   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1177                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1178                                                           'PART_INFO'  => $part_info, });
1179
1180   $main::lxdebug->leave_sub();
1181 }
1182
1183 sub set_stock_out {
1184   $main::lxdebug->enter_sub();
1185
1186   my $form     = $main::form;
1187   my %myconfig = %main::myconfig;
1188   my $locale   = $main::locale;
1189
1190   my $stock_info = [];
1191
1192   foreach my $i (1 .. $form->{rowcount}) {
1193     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1194
1195     next if ($form->{"qty_$i"} <= 0);
1196
1197     push @{ $stock_info }, {
1198       'warehouse_id' => $form->{"warehouse_id_$i"},
1199       'bin_id'       => $form->{"bin_id_$i"},
1200       'chargenumber' => $form->{"chargenumber_$i"},
1201       'bestbefore'   => $form->{"bestbefore_$i"},
1202       'qty'          => $form->{"qty_$i"},
1203       'unit'         => $form->{"unit_$i"},
1204       'row'          => $i,
1205     };
1206   }
1207
1208   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1209                                                 'parts_id' => $form->{parts_id});
1210
1211   $form->{stock} = YAML::Dump($stock_info);
1212
1213   if (@errors) {
1214     $form->{ERRORS} = [];
1215     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1216     stock_in_out_form();
1217
1218   } else {
1219     _stock_in_out_set_qty_display($stock_info);
1220
1221     $form->header();
1222     print $form->parse_html_template('do/set_stock_in_out');
1223   }
1224
1225   $main::lxdebug->leave_sub();
1226 }
1227
1228 sub transfer_in {
1229   $main::lxdebug->enter_sub();
1230
1231   my $form     = $main::form;
1232   my %myconfig = %main::myconfig;
1233   my $locale   = $main::locale;
1234
1235   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1236     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1237   }
1238
1239   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1240   my @all_requests;
1241
1242   if (@part_ids) {
1243     my $units         = AM->retrieve_units(\%myconfig, $form);
1244     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1245     my %request_map;
1246
1247     $form->{ERRORS}   = [];
1248
1249     foreach my $i (1 .. $form->{rowcount}) {
1250       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1251
1252       my $row_sum_base_qty = 0;
1253       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1254
1255       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1256         $request->{parts_id}  = $form->{"id_$i"};
1257         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1258
1259         push @all_requests, $request;
1260       }
1261
1262       next if (0 == $row_sum_base_qty);
1263
1264       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1265
1266 #      if ($do_base_qty != $row_sum_base_qty) {
1267 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1268 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1269 #      }
1270     }
1271
1272     if (@{ $form->{ERRORS} }) {
1273       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1274
1275       update();
1276       $main::lxdebug->leave_sub();
1277
1278       ::end_of_request();
1279     }
1280   }
1281
1282   DO->transfer_in_out('direction' => 'in',
1283                       'requests'  => \@all_requests);
1284
1285   $form->{delivered} = 1;
1286
1287   save();
1288
1289   $main::lxdebug->leave_sub();
1290 }
1291
1292 sub transfer_out {
1293   $main::lxdebug->enter_sub();
1294
1295   my $form     = $main::form;
1296   my %myconfig = %main::myconfig;
1297   my $locale   = $main::locale;
1298
1299   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1300     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1301   }
1302
1303   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1304   my @all_requests;
1305
1306   if (@part_ids) {
1307     my $units         = AM->retrieve_units(\%myconfig, $form);
1308     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1309     my %request_map;
1310
1311     $form->{ERRORS}   = [];
1312
1313     foreach my $i (1 .. $form->{rowcount}) {
1314       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1315
1316       my $row_sum_base_qty = 0;
1317       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1318
1319       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1320         $request->{parts_id} = $form->{"id_$i"};
1321         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1322         $request->{project_id} = $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id};
1323
1324         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1325
1326         $request_map{$map_key}                 ||= $request;
1327         $request_map{$map_key}->{sum_base_qty} ||= 0;
1328         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1329         $row_sum_base_qty                       += $request->{base_qty};
1330
1331         push @all_requests, $request;
1332       }
1333
1334       next if (0 == $row_sum_base_qty);
1335
1336       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1337
1338 #      if ($do_base_qty != $row_sum_base_qty) {
1339 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1340 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1341 #      }
1342     }
1343
1344     if (%request_map) {
1345       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1346       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1347       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1348
1349       foreach my $inv (@contents) {
1350         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1351
1352         next unless ($request_map{$map_key});
1353
1354         my $request    = $request_map{$map_key};
1355         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1356       }
1357
1358       foreach my $request (values %request_map) {
1359         next if ($request->{ok});
1360
1361         my $pinfo = $part_info_map{$request->{parts_id}};
1362         my $binfo = $bin_info_map{$request->{bin_id}};
1363
1364         if ($::lx_office_conf{system}->{show_best_before}) {
1365             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1366                                                      $pinfo->{description},
1367                                                      $binfo->{warehouse_description},
1368                                                      $binfo->{bin_description},
1369                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1370                                                      $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1371                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1372                                                                                 'part_unit'   => $pinfo->{unit},
1373                                                                                 'conv_units'  => 'convertible_not_smaller'));
1374         } else {
1375             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1376                                                      $pinfo->{description},
1377                                                      $binfo->{warehouse_description},
1378                                                      $binfo->{bin_description},
1379                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1380                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1381                                                                                 'part_unit'   => $pinfo->{unit},
1382                                                                                 'conv_units'  => 'convertible_not_smaller'));
1383         }
1384       }
1385     }
1386
1387     if (@{ $form->{ERRORS} }) {
1388       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1389
1390       update();
1391       $main::lxdebug->leave_sub();
1392
1393       ::end_of_request();
1394     }
1395   }
1396   DO->transfer_in_out('direction' => 'out',
1397                       'requests'  => \@all_requests);
1398
1399   $form->{delivered} = 1;
1400
1401   save();
1402
1403   $main::lxdebug->leave_sub();
1404 }
1405
1406 sub mark_closed {
1407   $main::lxdebug->enter_sub();
1408
1409   my $form     = $main::form;
1410
1411   DO->close_orders('ids' => [ $form->{id} ]);
1412
1413   $form->{closed} = 1;
1414
1415   update();
1416
1417   $main::lxdebug->leave_sub();
1418 }
1419
1420
1421 sub yes {
1422   call_sub($main::form->{yes_nextsub});
1423 }
1424
1425 sub no {
1426   call_sub($main::form->{no_nextsub});
1427 }
1428
1429 sub update {
1430   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1431 }
1432
1433 sub dispatcher {
1434   my $form     = $main::form;
1435   my $locale   = $main::locale;
1436
1437   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_in mark_closed save_as_new invoice delete)) {
1438     if ($form->{"action_${action}"}) {
1439       call_sub($action);
1440       return;
1441     }
1442   }
1443
1444   $form->error($locale->text('No action defined.'));
1445 }