Funktionalität für Mindesthaltbarkeitsdatum hinzugefügt.
[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 my $print_post;
52
53 1;
54
55 # end of main
56
57 sub check_do_access {
58   $main::auth->assert($main::form->{type} . '_edit');
59 }
60
61 sub set_headings {
62   $main::lxdebug->enter_sub();
63
64   check_do_access();
65
66   my ($action) = @_;
67
68   my $form     = $main::form;
69   my $locale   = $main::locale;
70
71   if ($form->{type} eq 'purchase_delivery_order') {
72     $form->{vc}    = 'vendor';
73     $form->{title} = $action eq "edit" ? $locale->text('Edit Purchase Delivery Order') : $locale->text('Add Purchase Delivery Order');
74   } else {
75     $form->{vc}    = 'customer';
76     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
77   }
78
79   $form->{heading} = $locale->text('Delivery Order');
80
81   $main::lxdebug->leave_sub();
82 }
83
84 sub add {
85   $main::lxdebug->enter_sub();
86
87   check_do_access();
88
89   my $form     = $main::form;
90
91   set_headings("add");
92
93   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
94
95   order_links();
96   prepare_order();
97   display_form();
98
99   $main::lxdebug->leave_sub();
100 }
101
102 sub edit {
103   $main::lxdebug->enter_sub();
104
105   check_do_access();
106
107   my $form     = $main::form;
108
109   # show history button
110   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
111   #/show hhistory button
112
113   $form->{simple_save} = 0;
114
115   set_headings("edit");
116
117   # editing without stuff to edit? try adding it first
118   if ($form->{rowcount} && !$form->{print_and_save}) {
119 #     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
120 #     if (!$id) {
121
122       # reset rowcount
123       undef $form->{rowcount};
124       add();
125       $main::lxdebug->leave_sub();
126       return;
127 #     }
128   } elsif (!$form->{id}) {
129     add();
130     $main::lxdebug->leave_sub();
131     return;
132   }
133
134   my ($language_id, $printer_id);
135   if ($form->{print_and_save}) {
136     $form->{action}   = "dispatcher";
137     $form->{action_print} = "1";
138     $form->{resubmit} = 1;
139     $language_id      = $form->{language_id};
140     $printer_id       = $form->{printer_id};
141   }
142
143   set_headings("edit");
144
145   order_links();
146   prepare_order();
147
148   if ($form->{print_and_save}) {
149     $form->{language_id} = $language_id;
150     $form->{printer_id}  = $printer_id;
151   }
152
153   display_form();
154
155   $main::lxdebug->leave_sub();
156 }
157
158 sub order_links {
159   $main::lxdebug->enter_sub();
160
161   check_do_access();
162
163   my $form     = $main::form;
164   my %myconfig = %main::myconfig;
165
166   # get customer/vendor
167   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
168
169   # retrieve order/quotation
170   $form->{webdav}   = $main::webdav;
171   $form->{jsscript} = 1;
172
173   my $editing = $form->{id};
174
175   DO->retrieve('vc'  => $form->{vc},
176                'ids' => $form->{id});
177
178   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes));
179   $form->{shipto} = 1 if $form->{id};
180
181   # get customer / vendor
182   if ($form->{vc} eq 'vendor') {
183     IR->get_vendor(\%myconfig, \%$form);
184   } else {
185     IS->get_customer(\%myconfig, \%$form);
186     # OFFEN tritt bug 1284 auch bei vendor auf?
187     $form->{discount} = $form->{customer_discount};
188   }
189
190   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
191   $form->restore_vars(qw(taxincluded)) if $form->{id};
192   $form->restore_vars(qw(salesman_id)) if $editing;
193
194   if ($form->{"all_$form->{vc}"}) {
195     unless ($form->{"$form->{vc}_id"}) {
196       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
197     }
198   }
199
200   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
201   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
202
203   $form->{employee} = "$form->{employee}--$form->{employee_id}";
204
205   $main::lxdebug->leave_sub();
206 }
207
208 sub prepare_order {
209   $main::lxdebug->enter_sub();
210
211   check_do_access();
212
213   my $form     = $main::form;
214   my %myconfig = %main::myconfig;
215
216   $form->{formname} = $form->{type} unless $form->{formname};
217
218   my $i = 0;
219   foreach my $ref (@{ $form->{form_details} }) {
220     $form->{rowcount} = ++$i;
221
222     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
223   }
224   for my $i (1 .. $form->{rowcount}) {
225     if ($form->{id}) {
226       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
227     } else {
228       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
229     }
230     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
231     $dec           = length $dec;
232     my $decimalplaces = ($dec > 2) ? $dec : 2;
233
234     # copy reqdate from deliverydate for invoice -> order conversion
235     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
236
237     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
238
239     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
240     $dec_qty = length $dec_qty;
241     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
242   }
243
244   $main::lxdebug->leave_sub();
245 }
246
247 sub form_header {
248   $main::lxdebug->enter_sub();
249
250   check_do_access();
251
252   my $form     = $main::form;
253   my %myconfig = %main::myconfig;
254
255   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
256   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
257
258   # use JavaScript Calendar or not
259   $form->{jsscript} = 1;
260
261   #write Trigger
262   my $jsscript = Form->write_trigger(\%myconfig, "2", "transdate", "BL", "trigger1", "reqdate", "BL", "trigger2");
263
264   my @old_project_ids = ($form->{"globalproject_id"});
265   map({ push(@old_project_ids, $form->{"project_id_$_"})
266           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
267
268   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
269   $form->get_lists("contacts"       => "ALL_CONTACTS",
270                    "shipto"         => "ALL_SHIPTO",
271                    "projects"       => {
272                      "key"          => "ALL_PROJECTS",
273                      "all"          => 0,
274                      "old_id"       => \@old_project_ids
275                    },
276                    "employees"      => "ALL_EMPLOYEES",
277                    "salesmen"       => "ALL_SALESMEN",
278                    $vc              => "ALL_VC",
279                    "price_factors"  => "ALL_PRICE_FACTORS",
280                    "departments"    => "ALL_DEPARTMENTS",
281                    "business_types" => "ALL_BUSINESS_TYPES",
282     );
283
284   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
285   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
286
287   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
288
289   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
290   $form->{oldvcname}         =~ s/--.*//;
291
292   $form->{onload} = "";
293   if ($form->{resubmit}) {
294     if ($form->{format} eq "html") {
295       $form->{onload} = "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
296     }
297     # emulate click for resubmitting actions
298     $form->{onload} .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
299     $form->{onload} .= "document.do.submit();"
300   }
301
302   $form->header();
303   # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
304   $form->{department} .= '--' . $form->{department_id};
305
306   print $form->parse_html_template('do/form_header');
307
308   $main::lxdebug->leave_sub();
309 }
310
311 sub form_footer {
312   $main::lxdebug->enter_sub();
313
314   check_do_access();
315
316   my $form     = $main::form;
317
318   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
319
320   print $form->parse_html_template('do/form_footer');
321
322   $main::lxdebug->leave_sub();
323 }
324
325 sub update_delivery_order {
326   $main::lxdebug->enter_sub();
327
328   check_do_access();
329
330   my $form     = $main::form;
331   my %myconfig = %main::myconfig;
332
333   set_headings($form->{"id"} ? "edit" : "add");
334
335   $form->{update} = 1;
336
337   my $payment_id;
338   $payment_id = $form->{payment_id} if $form->{payment_id};
339
340   check_name($form->{vc});
341
342   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
343
344   # for pricegroups
345   my $i = $form->{rowcount};
346
347   if (   ($form->{"partnumber_$i"} eq "")
348       && ($form->{"description_$i"} eq "")
349       && ($form->{"partsgroup_$i"}  eq "")) {
350
351     check_form();
352
353   } else {
354
355     if ($form->{type} eq 'purchase_delivery_order') {
356       IR->retrieve_item(\%myconfig, $form);
357     } else {
358       IS->retrieve_item(\%myconfig, $form);
359     }
360
361     my $rows = scalar @{ $form->{item_list} };
362
363     if ($rows) {
364       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
365
366       if ($rows > 1) {
367
368         select_item();
369         exit;
370
371       } else {
372
373         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
374
375         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
376         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$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
555   # add sort and escape callback, this one we use for the add sub
556   $form->{callback} = $href .= "&sort=$form->{sort}";
557
558   # escape callback for href
559   my $callback = $form->escape($href);
560
561   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
562   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
563
564   my $idx            = 1;
565
566   foreach my $dord (@{ $form->{DO} }) {
567     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
568     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
569
570     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
571
572     $row->{ids}  = {
573       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
574                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
575       'valign'   => 'center',
576       'align'    => 'center',
577     };
578
579     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
580     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}";
581
582     $report->add_data($row);
583
584     $idx++;
585   }
586
587   $report->generate_with_headers();
588
589   $main::lxdebug->leave_sub();
590 }
591
592 sub save {
593   $main::lxdebug->enter_sub();
594
595   check_do_access();
596
597   my $form     = $main::form;
598   my %myconfig = %main::myconfig;
599   my $locale   = $main::locale;
600
601   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
602
603   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
604
605   $form->{donumber} =~ s/^\s*//g;
606   $form->{donumber} =~ s/\s*$//g;
607
608   my $msg = ucfirst $form->{vc};
609   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
610
611   # $locale->text('Customer missing!');
612   # $locale->text('Vendor missing!');
613
614   remove_emptied_rows();
615   validate_items();
616
617   # if the name changed get new values
618   if (check_name($form->{vc})) {
619     update();
620     exit;
621   }
622
623   $form->{id} = 0 if $form->{saveasnew};
624   # best case fix für bug 1079. Einkaufsrabatt wird nicht richtig
625   # aus Lieferantenauftrag -> Lieferschein -> Rechnung übernommen
626   # Tritt nur auf, wenn man direkt über Lieferschein -> speichern ->
627   # Workflow Rechnung geht (beim Aufruf über edit() i.O.)
628   # Gut. DO-save() speichert den Discount im DB-Format 0.12 für
629   # 12%, die Konvertierung wird leider in $form gemacht und daher
630   # wird die Maske mit dem falschen Rabatt wieder aufgebaut.
631   # Wie immer: backup_vars verwenden um nichts anderes kaputt zu
632   # machen. jan 03.03.2010
633   # nicht mehr notwendig da für bug 1284 der backend aufruf entsprechend
634   # geändert wurde
635   DO->save();
636   # saving the history
637   if(!exists $form->{addition}) {
638     $form->{snumbers} = qq|donumber_| . $form->{donumber};
639     $form->{addition} = "SAVED";
640     $form->save_history($form->dbconnect(\%myconfig));
641   }
642   # /saving the history
643
644   $form->{simple_save} = 1;
645   if(!$form->{print_and_save}) {
646     set_headings("edit");
647     update();
648     exit;
649   }
650   $main::lxdebug->leave_sub();
651 }
652
653 sub delete {
654   $main::lxdebug->enter_sub();
655
656   check_do_access();
657
658   my $form     = $main::form;
659   my $locale   = $main::locale;
660
661   map { delete $form->{$_} } qw(action header login password);
662   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
663
664   $form->{title} = $locale->text('Delete delivery order');
665   $form->header();
666
667   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
668
669   $main::lxdebug->leave_sub();
670 }
671
672 sub delete_delivery_order {
673   $main::lxdebug->enter_sub();
674
675   check_do_access();
676
677   my $form     = $main::form;
678   my %myconfig = %main::myconfig;
679   my $locale   = $main::locale;
680
681   if (DO->delete()) {
682     # saving the history
683     if(!exists $form->{addition}) {
684       $form->{snumbers} = qq|donumber_| . $form->{donumber};
685       $form->{addition} = "DELETED";
686       $form->save_history($form->dbconnect(\%myconfig));
687     }
688     # /saving the history
689
690     $form->info($locale->text('Delivery Order deleted!'));
691     exit();
692   }
693
694   $form->error($locale->text('Cannot delete delivery order!'));
695
696   $main::lxdebug->leave_sub();
697 }
698
699 sub invoice {
700   $main::lxdebug->enter_sub();
701
702   my $form     = $main::form;
703   my %myconfig = %main::myconfig;
704   my $locale   = $main::locale;
705
706   check_do_access();
707   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
708
709   $form->{convert_from_do_ids} = $form->{id};
710   $form->{deliverydate}        = $form->{transdate};
711   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
712   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
713   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
714
715   $form->{rowcount}--;
716
717   delete @{$form}{qw(id closed delivered)};
718
719   my ($script, $buysell);
720   if ($form->{type} eq 'purchase_delivery_order') {
721     $form->{title}  = $locale->text('Add Vendor Invoice');
722     $form->{script} = 'ir.pl';
723     $script         = "ir";
724     $buysell        = 'sell';
725
726   } else {
727     $form->{title}  = $locale->text('Add Sales Invoice');
728     $form->{script} = 'is.pl';
729     $script         = "is";
730     $buysell        = 'buy';
731   }
732
733   for my $i (1 .. $form->{rowcount}) {
734     # für bug 1284
735     if ($form->{discount}){ # Falls wir einen Kundenrabatt haben 
736       # und keinen anderen discount wert an $i ...
737       $form->{"discount_$i"} ||= $form->{discount}*100; # ... nehmen wir den kundenrabatt
738     }
739     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice basefactor);
740   }
741
742   $form->{type} = "invoice";
743
744   # locale messages
745   $main::locale = new Locale "$myconfig{countrycode}", "$script";
746   $locale = $main::locale;
747
748   require "bin/mozilla/$form->{script}";
749
750   my $currency = $form->{currency};
751   invoice_links();
752
753   $form->{currency}     = $currency;
754   $form->{exchangerate} = "";
755   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
756   $form->{exchangerate} = $form->{forex} if ($form->{forex});
757
758   prepare_invoice();
759
760   # format amounts
761   for my $i (1 .. $form->{rowcount}) {
762     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
763
764     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
765     $dec           = length $dec;
766     my $decimalplaces = ($dec > 2) ? $dec : 2;
767
768     # copy delivery date from reqdate for order -> invoice conversion
769     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
770       unless $form->{"deliverydate_$i"};
771
772     $form->{"sellprice_$i"} =
773       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
774                            $decimalplaces);
775
776     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
777     $dec_qty = length $dec_qty;
778     $form->{"qty_$i"} =
779       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
780
781   }
782
783   display_form();
784
785   $main::lxdebug->leave_sub();
786 }
787
788 sub invoice_multi {
789   $main::lxdebug->enter_sub();
790
791   my $form     = $main::form;
792   my %myconfig = %main::myconfig;
793   my $locale   = $main::locale;
794
795   check_do_access();
796   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
797
798   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
799
800   if (!scalar @do_ids) {
801     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
802   }
803
804   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
805
806   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
807     $form->show_generic_error($form->{vc} eq 'customer' ?
808                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
809                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
810                               'back_button' => 1);
811   }
812
813   my $source_type              = $form->{type};
814   $form->{convert_from_do_ids} = join ' ', @do_ids;
815   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
816   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
817   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
818   # $shell: perldoc perlunc; /delete EXPR
819   $form->{donumber}            = delete $form->{donumber_array};
820   $form->{deliverydate}        = $form->{transdate};
821   $form->{transdate}           = $form->current_date(\%myconfig);
822   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
823   $form->{type}                = "invoice";
824   $form->{closed}              = 0;
825   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
826
827   my ($script, $buysell);
828   if ($source_type eq 'purchase_delivery_order') {
829     $form->{title}  = $locale->text('Add Vendor Invoice');
830     $form->{script} = 'ir.pl';
831     $script         = "ir";
832     $buysell        = 'sell';
833
834   } else {
835     $form->{title}  = $locale->text('Add Sales Invoice');
836     $form->{script} = 'is.pl';
837     $script         = "is";
838     $buysell        = 'buy';
839   }
840
841   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
842
843   $form->{rowcount} = 0;
844   foreach my $ref (@{ $form->{form_details} }) {
845     $form->{rowcount}++;
846     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
847     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
848     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice discount lastcost);
849     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
850     # Anm.: Eine Änderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
851     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
852   }
853   delete $form->{form_details};
854
855   $locale = new Locale "$myconfig{countrycode}", "$script";
856
857   require "bin/mozilla/$form->{script}";
858
859   invoice_links();
860   prepare_invoice();
861   display_form();
862
863   $main::lxdebug->leave_sub();
864 }
865
866 sub save_as_new {
867   $main::lxdebug->enter_sub();
868
869   check_do_access();
870
871   my $form     = $main::form;
872
873   $form->{saveasnew} = 1;
874   $form->{closed}    = 0;
875   $form->{delivered} = 0;
876   map { delete $form->{$_} } qw(printed emailed queued);
877   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
878
879   # Let Lx-Office assign a new order number if the user hasn't changed the
880   # previous one. If it has been changed manually then use it as-is.
881   $form->{donumber} =~ s/^\s*//g;
882   $form->{donumber} =~ s/\s*$//g;
883   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
884     delete($form->{donumber});
885   }
886
887   save();
888
889   $main::lxdebug->leave_sub();
890 }
891
892 sub e_mail {
893   $main::lxdebug->enter_sub();
894
895   check_do_access();
896
897   my $form     = $main::form;
898
899   $form->{print_and_save} = 1;
900
901   $print_post = 1;
902
903   my $saved_form = save_form();
904
905   save();
906
907   restore_form($saved_form, 0, qw(id ordnumber quonumber));
908
909   edit_e_mail();
910
911   $main::lxdebug->leave_sub();
912 }
913
914 sub calculate_stock_in_out {
915   $main::lxdebug->enter_sub();
916
917   my $form     = $main::form;
918
919   my $i = shift;
920
921   if (!$form->{"id_${i}"}) {
922     $main::lxdebug->leave_sub();
923     return '';
924   }
925
926   my $all_units = AM->retrieve_all_units();
927
928   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
929   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
930
931   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
932
933   my $content  = $form->format_amount_units('amount'      => $sum * 1,
934                                             'part_unit'   => $form->{"partunit_$i"},
935                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
936                                             'conv_units'  => 'convertible_not_smaller',
937                                             'max_places'  => 2);
938   $content    .= qq| <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
939
940   $main::lxdebug->leave_sub();
941
942   return $content;
943 }
944
945 sub get_basic_bin_wh_info {
946   $main::lxdebug->enter_sub();
947
948   my $stock_info = shift;
949
950   my $form     = $main::form;
951
952   foreach my $sinfo (@{ $stock_info }) {
953     next unless ($sinfo->{bin_id});
954
955     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
956     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
957   }
958
959   $main::lxdebug->leave_sub();
960 }
961
962 sub stock_in_out_form {
963   $main::lxdebug->enter_sub();
964
965   my $form     = $main::form;
966
967   if ($form->{in_out} eq 'out') {
968     stock_out_form();
969   } else {
970     stock_in_form();
971   }
972
973   $main::lxdebug->leave_sub();
974 }
975
976 sub redo_stock_info {
977   $main::lxdebug->enter_sub();
978
979   my %params    = @_;
980
981   my $form     = $main::form;
982
983   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
984
985   if ($params{add_empty_row}) {
986     push @non_empty, {
987       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
988       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
989     };
990   }
991
992   @{ $params{stock_info} } = @non_empty;
993
994   $main::lxdebug->leave_sub();
995 }
996
997 sub update_stock_in {
998   $main::lxdebug->enter_sub();
999
1000   my $form     = $main::form;
1001   my %myconfig = %main::myconfig;
1002
1003   my $stock_info = [];
1004
1005   foreach my $i (1..$form->{rowcount}) {
1006     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1007     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1008   }
1009
1010   display_stock_in_form($stock_info);
1011
1012   $main::lxdebug->leave_sub();
1013 }
1014
1015 sub stock_in_form {
1016   $main::lxdebug->enter_sub();
1017
1018   my $form     = $main::form;
1019
1020   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1021
1022   display_stock_in_form($stock_info);
1023
1024   $main::lxdebug->leave_sub();
1025 }
1026
1027 sub display_stock_in_form {
1028   $main::lxdebug->enter_sub();
1029
1030   my $stock_info = shift;
1031
1032   my $form     = $main::form;
1033   my %myconfig = %main::myconfig;
1034   my $locale   = $main::locale;
1035
1036   $form->{jsscript} = 1;
1037
1038   $form->{title} = $locale->text('Stock');
1039
1040   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1041
1042   my $units      = AM->retrieve_units(\%myconfig, $form);
1043   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1044
1045   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1046                                      'bins'   => 'BINS' });
1047
1048   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1049
1050   get_basic_bin_wh_info($stock_info);
1051
1052   $form->header();
1053   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1054                                                          'STOCK_INFO' => $stock_info,
1055                                                          'PART_INFO'  => $part_info, });
1056
1057   $main::lxdebug->leave_sub();
1058 }
1059
1060 sub set_stock_in {
1061   $main::lxdebug->enter_sub();
1062
1063   my $form     = $main::form;
1064   my %myconfig = %main::myconfig;
1065
1066   my $stock_info = [];
1067
1068   foreach my $i (1..$form->{rowcount}) {
1069     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1070
1071     next if ($form->{"qty_$i"} <= 0);
1072
1073     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1074   }
1075
1076   $form->{stock} = YAML::Dump($stock_info);
1077
1078   $form->header();
1079   print $form->parse_html_template('do/set_stock_in_out');
1080
1081   $main::lxdebug->leave_sub();
1082 }
1083
1084 sub stock_out_form {
1085   $main::lxdebug->enter_sub();
1086
1087   my $form     = $main::form;
1088   my %myconfig = %main::myconfig;
1089   my $locale   = $main::locale;
1090
1091   $form->{title} = $locale->text('Release From Stock');
1092
1093   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1094
1095   my $units      = AM->retrieve_units(\%myconfig, $form);
1096   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1097
1098   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1099
1100   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1101
1102   if (!$form->{delivered}) {
1103     foreach my $row (@contents) {
1104       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1105                                                          'part_unit'   => $part_info->{unit},
1106                                                          'conv_units'  => 'convertible_not_smaller',
1107                                                          'max_places'  => 2);
1108
1109       foreach my $sinfo (@{ $stock_info }) {
1110         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1111                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1112                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1113                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1114
1115         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1116       }
1117     }
1118
1119   } else {
1120     get_basic_bin_wh_info($stock_info);
1121
1122     foreach my $sinfo (@{ $stock_info }) {
1123       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1124     }
1125   }
1126
1127   $form->header();
1128   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1129                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1130                                                           'PART_INFO'  => $part_info, });
1131
1132   $main::lxdebug->leave_sub();
1133 }
1134
1135 sub set_stock_out {
1136   $main::lxdebug->enter_sub();
1137
1138   my $form     = $main::form;
1139   my %myconfig = %main::myconfig;
1140   my $locale   = $main::locale;
1141
1142   my $stock_info = [];
1143
1144   foreach my $i (1 .. $form->{rowcount}) {
1145     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1146
1147     next if ($form->{"qty_$i"} <= 0);
1148
1149     push @{ $stock_info }, {
1150       'warehouse_id' => $form->{"warehouse_id_$i"},
1151       'bin_id'       => $form->{"bin_id_$i"},
1152       'chargenumber' => $form->{"chargenumber_$i"},
1153       'bestbefore'   => $form->{"bestbefore_$i"},
1154       'qty'          => $form->{"qty_$i"},
1155       'unit'         => $form->{"unit_$i"},
1156       'row'          => $i,
1157     };
1158   }
1159
1160   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1161                                                 'parts_id' => $form->{parts_id});
1162
1163   $form->{stock} = YAML::Dump($stock_info);
1164
1165   if (@errors) {
1166     $form->{ERRORS} = [];
1167     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1168     stock_in_out_form();
1169
1170   } else {
1171     $form->header();
1172     print $form->parse_html_template('do/set_stock_in_out');
1173   }
1174
1175   $main::lxdebug->leave_sub();
1176 }
1177
1178 sub transfer_in {
1179   $main::lxdebug->enter_sub();
1180
1181   my $form     = $main::form;
1182   my %myconfig = %main::myconfig;
1183   my $locale   = $main::locale;
1184
1185   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1186     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1187   }
1188
1189   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1190   my @all_requests;
1191
1192   if (@part_ids) {
1193     my $units         = AM->retrieve_units(\%myconfig, $form);
1194     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1195     my %request_map;
1196
1197     $form->{ERRORS}   = [];
1198
1199     foreach my $i (1 .. $form->{rowcount}) {
1200       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1201
1202       my $row_sum_base_qty = 0;
1203       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1204
1205       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1206         $request->{parts_id}  = $form->{"id_$i"};
1207         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1208
1209         push @all_requests, $request;
1210       }
1211
1212       next if (0 == $row_sum_base_qty);
1213
1214       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1215
1216 #      if ($do_base_qty != $row_sum_base_qty) {
1217 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1218 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1219 #      }
1220     }
1221
1222     if (@{ $form->{ERRORS} }) {
1223       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1224
1225       update();
1226       $main::lxdebug->leave_sub();
1227
1228       exit 0;
1229     }
1230   }
1231
1232   DO->transfer_in_out('direction' => 'in',
1233                       'requests'  => \@all_requests);
1234
1235   $form->{delivered} = 1;
1236
1237   save();
1238
1239   $main::lxdebug->leave_sub();
1240 }
1241
1242 sub transfer_out {
1243   $main::lxdebug->enter_sub();
1244
1245   my $form     = $main::form;
1246   my %myconfig = %main::myconfig;
1247   my $locale   = $main::locale;
1248
1249   if (DO->is_marked_as_delivered('id' => $form->{id})) {
1250     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1251   }
1252
1253   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1254   my @all_requests;
1255
1256   if (@part_ids) {
1257     my $units         = AM->retrieve_units(\%myconfig, $form);
1258     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1259     my %request_map;
1260
1261     $form->{ERRORS}   = [];
1262
1263     foreach my $i (1 .. $form->{rowcount}) {
1264       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1265
1266       my $row_sum_base_qty = 0;
1267       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1268
1269       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1270         $request->{parts_id} = $form->{"id_$i"};
1271         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1272
1273         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1274
1275         $request_map{$map_key}                 ||= $request;
1276         $request_map{$map_key}->{sum_base_qty} ||= 0;
1277         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1278         $row_sum_base_qty                       += $request->{base_qty};
1279
1280         push @all_requests, $request;
1281       }
1282
1283       next if (0 == $row_sum_base_qty);
1284
1285       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1286
1287 #      if ($do_base_qty != $row_sum_base_qty) {
1288 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1289 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1290 #      }
1291     }
1292
1293     if (%request_map) {
1294       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1295       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1296       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1297
1298       foreach my $inv (@contents) {
1299         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1300
1301         next unless ($request_map{$map_key});
1302
1303         my $request    = $request_map{$map_key};
1304         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1305       }
1306
1307       foreach my $request (values %request_map) {
1308         next if ($request->{ok});
1309
1310         my $pinfo = $part_info_map{$request->{parts_id}};
1311         my $binfo = $bin_info_map{$request->{bin_id}};
1312
1313         push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1314                                                  $pinfo->{description}, $binfo->{warehouse_description}, $binfo->{bin_description},
1315                                                  $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1316                                                  $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1317                                                  $form->format_amount_units('amount'      => $request->{sum_base_qty},
1318                                                                             'part_unit'   => $pinfo->{unit},
1319                                                                             'conv_units'  => 'convertible_not_smaller'));
1320       }
1321     }
1322
1323     if (@{ $form->{ERRORS} }) {
1324       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1325
1326       update();
1327       $main::lxdebug->leave_sub();
1328
1329       exit 0;
1330     }
1331   }
1332
1333   DO->transfer_in_out('direction' => 'out',
1334                       'requests'  => \@all_requests);
1335
1336   $form->{delivered} = 1;
1337
1338   save();
1339
1340   $main::lxdebug->leave_sub();
1341 }
1342
1343 sub mark_closed {
1344   $main::lxdebug->enter_sub();
1345
1346   my $form     = $main::form;
1347
1348   DO->close_orders('ids' => [ $form->{id} ]);
1349
1350   $form->{closed} = 1;
1351
1352   update();
1353
1354   $main::lxdebug->leave_sub();
1355 }
1356
1357
1358 sub yes {
1359   call_sub($main::form->{yes_nextsub});
1360 }
1361
1362 sub no {
1363   call_sub($main::form->{no_nextsub});
1364 }
1365
1366 sub update {
1367   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1368 }
1369
1370 sub dispatcher {
1371   my $form     = $main::form;
1372   my $locale   = $main::locale;
1373
1374   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_in mark_closed save_as_new invoice delete)) {
1375     if ($form->{"action_${action}"}) {
1376       call_sub($action);
1377       return;
1378     }
1379   }
1380
1381   $form->error($locale->text('No action defined.'));
1382 }