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