Merge branch 'master' of github.com:kivitendo/kivitendo-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 require "bin/mozilla/arap.pl";
44 require "bin/mozilla/common.pl";
45 require "bin/mozilla/invoice_io.pl";
46 require "bin/mozilla/io.pl";
47 require "bin/mozilla/reportgenerator.pl";
48
49 use strict;
50
51 1;
52
53 # end of main
54
55 sub check_do_access {
56   $main::auth->assert($main::form->{type} . '_edit');
57 }
58
59 sub set_headings {
60   $main::lxdebug->enter_sub();
61
62   check_do_access();
63
64   my ($action) = @_;
65
66   my $form     = $main::form;
67   my $locale   = $main::locale;
68
69   if ($form->{type} eq 'purchase_delivery_order') {
70     $form->{vc}    = 'vendor';
71     $form->{title} = $action eq "edit" ? $locale->text('Edit Purchase Delivery Order') : $locale->text('Add Purchase Delivery Order');
72   } else {
73     $form->{vc}    = 'customer';
74     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
75   }
76
77   $form->{heading} = $locale->text('Delivery Order');
78
79   $main::lxdebug->leave_sub();
80 }
81
82 sub add {
83   $main::lxdebug->enter_sub();
84
85   check_do_access();
86
87   my $form     = $main::form;
88
89   set_headings("add");
90
91   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
92
93   order_links();
94   prepare_order();
95   display_form();
96
97   $main::lxdebug->leave_sub();
98 }
99
100 sub edit {
101   $main::lxdebug->enter_sub();
102
103   check_do_access();
104
105   my $form     = $main::form;
106
107   # show history button
108   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
109   #/show hhistory button
110
111   $form->{simple_save} = 0;
112
113   set_headings("edit");
114
115   # editing without stuff to edit? try adding it first
116   if ($form->{rowcount} && !$form->{print_and_save}) {
117 #     map { $id++ if $form->{"multi_id_$_"} } (1 .. $form->{rowcount});
118 #     if (!$id) {
119
120       # reset rowcount
121       undef $form->{rowcount};
122       add();
123       $main::lxdebug->leave_sub();
124       return;
125 #     }
126   } elsif (!$form->{id}) {
127     add();
128     $main::lxdebug->leave_sub();
129     return;
130   }
131
132   my ($language_id, $printer_id);
133   if ($form->{print_and_save}) {
134     $form->{action}   = "dispatcher";
135     $form->{action_print} = "1";
136     $form->{resubmit} = 1;
137     $language_id      = $form->{language_id};
138     $printer_id       = $form->{printer_id};
139   }
140
141   set_headings("edit");
142
143   order_links();
144   prepare_order();
145
146   if ($form->{print_and_save}) {
147     $form->{language_id} = $language_id;
148     $form->{printer_id}  = $printer_id;
149   }
150
151   display_form();
152
153   $main::lxdebug->leave_sub();
154 }
155
156 sub order_links {
157   $main::lxdebug->enter_sub();
158
159   check_do_access();
160
161   my $form     = $main::form;
162   my %myconfig = %main::myconfig;
163
164   # get customer/vendor
165   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
166
167   # retrieve order/quotation
168   $form->{webdav}   = $::instance_conf->get_webdav;
169
170   my $editing = $form->{id};
171
172   DO->retrieve('vc'  => $form->{vc},
173                'ids' => $form->{id});
174
175   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes currency));
176   $form->{shipto} = 1 if $form->{id} || $form->{convert_from_oe_ids};
177
178   # get customer / vendor
179   if ($form->{vc} eq 'vendor') {
180     IR->get_vendor(\%myconfig, \%$form);
181     $form->{discount} = $form->{vendor_discount};
182   } else {
183     IS->get_customer(\%myconfig, \%$form);
184     $form->{discount} = $form->{customer_discount};
185   }
186
187   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
188   $form->restore_vars(qw(currency)) if ($form->{id} || $form->{convert_from_oe_ids});
189   $form->restore_vars(qw(taxincluded)) if $form->{id};
190   $form->restore_vars(qw(salesman_id)) if $editing;
191
192   if ($form->{"all_$form->{vc}"}) {
193     unless ($form->{"$form->{vc}_id"}) {
194       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
195     }
196   }
197
198   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
199   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
200
201   $form->{employee} = "$form->{employee}--$form->{employee_id}";
202
203   $main::lxdebug->leave_sub();
204 }
205
206 sub prepare_order {
207   $main::lxdebug->enter_sub();
208
209   check_do_access();
210
211   my $form     = $main::form;
212   my %myconfig = %main::myconfig;
213
214   $form->{formname} = $form->{type} unless $form->{formname};
215
216   my $i = 0;
217   foreach my $ref (@{ $form->{form_details} }) {
218     $form->{rowcount} = ++$i;
219
220     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
221   }
222   for my $i (1 .. $form->{rowcount}) {
223     if ($form->{id}) {
224       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
225     } else {
226       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
227     }
228     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
229     $dec           = length $dec;
230     my $decimalplaces = ($dec > 2) ? $dec : 2;
231
232     # copy reqdate from deliverydate for invoice -> order conversion
233     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
234
235     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
236     $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
237
238     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
239     $dec_qty = length $dec_qty;
240     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
241   }
242
243   $main::lxdebug->leave_sub();
244 }
245
246 sub form_header {
247   $main::lxdebug->enter_sub();
248
249   check_do_access();
250
251   my $form     = $main::form;
252   my %myconfig = %main::myconfig;
253
254   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
255   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
256
257   my @old_project_ids = ($form->{"globalproject_id"});
258   map({ push(@old_project_ids, $form->{"project_id_$_"})
259           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
260
261   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
262   $form->get_lists("projects"       => {
263                      "key"          => "ALL_PROJECTS",
264                      "all"          => 0,
265                      "old_id"       => \@old_project_ids
266                    },
267                    $vc              => "ALL_VC",
268                    "price_factors"  => "ALL_PRICE_FACTORS",
269                    "departments"    => "ALL_DEPARTMENTS",
270                    "business_types" => "ALL_BUSINESS_TYPES",
271     );
272
273   $::form->{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
274   $::form->{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
275   $::form->{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all(query => [
276     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
277   ]);
278   $::form->{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all(query => [
279     or => [
280       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
281       and      => [
282         cp_cv_id => undef,
283         cp_id    => $::form->{cp_id} * 1
284       ]
285     ]
286   ]);
287
288   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
289   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
290
291   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
292
293   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
294   $form->{oldvcname}         =~ s/--.*//;
295
296   if ($form->{resubmit}) {
297     my $dispatch_to_popup = '';
298     if ($form->{format} eq "html") {
299       $dispatch_to_popup .= "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
300     }
301     # emulate click for resubmitting actions
302     $dispatch_to_popup .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
303     $dispatch_to_popup .= "document.do.submit();";
304     $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup})");
305   }
306
307   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
308   $follow_up_vc                   =~ s/--\d*\s*$//;
309
310   $form->{follow_up_trans_info} = $form->{donumber} .'('. $follow_up_vc .')';
311
312   $form->header();
313   # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
314   # und Erweiterung für Bug 1760:
315   # Das war leider nur ein Teil-Fix, da das Verhalten den 'Erneuern'-Knopf
316   # nicht überlebt. Konsequent jetzt auf L umgestellt
317   #   $ perldoc SL::Template::Plugin::L
318   # Daher entsprechend nur die Anpassung in form_header
319   # und in DO.pm gemacht. 4 Testfälle:
320   # department_id speichern                 | i.O.
321   # department_id lesen                     | i.O.
322   # department leer überlebt erneuern       | i.O.
323   # department nicht leer überlebt erneuern | i.O.
324   # $main::lxdebug->message(0, 'ABTEILUNGS ID in form?' . $form->{department_id});
325   print $form->parse_html_template('do/form_header');
326
327   $main::lxdebug->leave_sub();
328 }
329
330 sub form_footer {
331   $main::lxdebug->enter_sub();
332
333   check_do_access();
334
335   my $form     = $main::form;
336
337   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
338
339   print $form->parse_html_template('do/form_footer',
340     {transfer_default         => ($::instance_conf->get_transfer_default)});
341
342   $main::lxdebug->leave_sub();
343 }
344
345 sub update_delivery_order {
346   $main::lxdebug->enter_sub();
347
348   check_do_access();
349
350   my $form     = $main::form;
351   my %myconfig = %main::myconfig;
352
353   set_headings($form->{"id"} ? "edit" : "add");
354
355   $form->{update} = 1;
356
357   my $payment_id;
358   $payment_id = $form->{payment_id} if $form->{payment_id};
359
360   check_name($form->{vc});
361   $form->{discount} =  $form->{"$form->{vc}_discount"} if defined $form->{"$form->{vc}_discount"};
362   # Problem: Wenn man ohne Erneuern einen Kunden/Lieferanten
363   # wechselt, wird der entsprechende Kunden/ Lieferantenrabatt
364   # nicht übernommen. Grundproblem: In Commit 82574e78
365   # hab ich aus discount customer_discount und vendor_discount
366   # gemacht und entsprechend an den Oberflächen richtig hin-
367   # geschoben. Die damals bessere Lösung wäre gewesen:
368   # In den Templates nur die hidden für form-discount wieder ein-
369   # setzen dann wäre die Verrenkung jetzt nicht notwendig.
370   # TODO: Ggf. Bugfix 1284, 1575 und 817 wieder zusammenführen
371   # Testfälle: Kunden mit Rabatt 0 -> Rabatt 20 i.O.
372   #            Kunde mit Rabatt 20 -> Rabatt 0  i.O.
373   #            Kunde mit Rabatt 20 -> Rabatt 5,5 i.O.
374   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
375
376   # for pricegroups
377   my $i = $form->{rowcount};
378
379   if (   ($form->{"partnumber_$i"} eq "")
380       && ($form->{"description_$i"} eq "")
381       && ($form->{"partsgroup_$i"}  eq "")) {
382
383     check_form();
384
385   } else {
386
387     my $mode;
388     if ($form->{type} eq 'purchase_delivery_order') {
389       IR->retrieve_item(\%myconfig, $form);
390       $mode = 'IR';
391     } else {
392       IS->retrieve_item(\%myconfig, $form);
393       $mode = 'IS';
394     }
395
396     my $rows = scalar @{ $form->{item_list} };
397
398     if ($rows) {
399       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
400
401       if ($rows > 1) {
402
403         select_item(mode => $mode);
404         ::end_of_request();
405
406       } else {
407
408         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
409
410         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
411         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
412         $form->{"lastcost_$i"}          = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
413         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
414       }
415
416       display_form();
417
418     } else {
419
420       # ok, so this is a new part
421       # ask if it is a part or service item
422
423       if (   $form->{"partsgroup_$i"}
424           && ($form->{"partsnumber_$i"} eq "")
425           && ($form->{"description_$i"} eq "")) {
426         $form->{rowcount}--;
427         $form->{"discount_$i"} = "";
428         $form->{"not_discountable_$i"} = "";
429         display_form();
430
431       } else {
432         $form->{"id_$i"}   = 0;
433         new_item();
434       }
435     }
436   }
437
438   $main::lxdebug->leave_sub();
439 }
440
441 sub search {
442   $main::lxdebug->enter_sub();
443
444   check_do_access();
445
446   my $form     = $main::form;
447   my %myconfig = %main::myconfig;
448   my $locale   = $main::locale;
449
450   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
451
452   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
453                                        "all" => 1 },
454                    "departments"  => "ALL_DEPARTMENTS",
455                    "$form->{vc}s" => "ALL_VC");
456   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
457
458   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
459   $form->{title}             = $locale->text('Delivery Orders');
460
461   $form->header();
462
463   print $form->parse_html_template('do/search');
464
465   $main::lxdebug->leave_sub();
466 }
467
468 sub orders {
469   $main::lxdebug->enter_sub();
470
471   check_do_access();
472
473   my $form     = $main::form;
474   my %myconfig = %main::myconfig;
475   my $locale   = $main::locale;
476   my $cgi      = $::request->{cgi};
477
478   $form->{department_id} = (split /--/, $form->{department})[-1];
479   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
480
481   report_generator_set_default_sort('transdate', 1);
482
483   DO->transactions();
484
485   $form->{rowcount} = scalar @{ $form->{DO} };
486
487   my @columns = qw(
488     ids                     transdate               reqdate
489     id                      donumber
490     ordnumber               customernumber
491     name                    employee  salesman
492     shipvia                 globalprojectnumber
493     transaction_description department
494     open                    delivered
495   );
496
497   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
498   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
499
500   $form->{title}       = $locale->text('Delivery Orders');
501
502   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
503
504   my $report = SL::ReportGenerator->new(\%myconfig, $form);
505
506   my @hidden_variables = map { "l_${_}" } @columns;
507   push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber
508                                           transaction_description transdatefrom transdateto type vc employee_id salesman_id project_id);
509
510   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
511
512   my %column_defs = (
513     'ids'                     => { 'text' => '', },
514     'transdate'               => { 'text' => $locale->text('Date'), },
515     'reqdate'                 => { 'text' => $locale->text('Reqdate'), },
516     'id'                      => { 'text' => $locale->text('ID'), },
517     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
518     'ordnumber'               => { 'text' => $locale->text('Order'), },
519     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
520     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
521     'employee'                => { 'text' => $locale->text('Employee'), },
522     'salesman'                => { 'text' => $locale->text('Salesman'), },
523     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
524     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
525     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
526     'open'                    => { 'text' => $locale->text('Open'), },
527     'delivered'               => { 'text' => $locale->text('Delivered'), },
528     'department'              => { 'text' => $locale->text('Department'), },
529   );
530
531   foreach my $name (qw(id transdate reqdate donumber ordnumber name employee salesman shipvia transaction_description department)) {
532     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
533     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
534   }
535
536   $form->{"l_type"} = "Y";
537   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
538
539   $column_defs{ids}->{visible} = 'HTML';
540
541   $report->set_columns(%column_defs);
542   $report->set_column_order(@columns);
543
544   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
545
546   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
547
548   my @options;
549   if ($form->{customer}) {
550     push @options, $locale->text('Customer') . " : $form->{customer}";
551   }
552   if ($form->{vendor}) {
553     push @options, $locale->text('Vendor') . " : $form->{vendor}";
554   }
555   if ($form->{department}) {
556     my ($department) = split /--/, $form->{department};
557     push @options, $locale->text('Department') . " : $department";
558   }
559   if ($form->{donumber}) {
560     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
561   }
562   if ($form->{ordnumber}) {
563     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
564   }
565   if ($form->{transaction_description}) {
566     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
567   }
568   if ($form->{transdatefrom}) {
569     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
570   }
571   if ($form->{transdateto}) {
572     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
573   }
574   if ($form->{open}) {
575     push @options, $locale->text('Open');
576   }
577   if ($form->{closed}) {
578     push @options, $locale->text('Closed');
579   }
580   if ($form->{delivered}) {
581     push @options, $locale->text('Delivered');
582   }
583   if ($form->{notdelivered}) {
584     push @options, $locale->text('Not delivered');
585   }
586
587   $report->set_options('top_info_text'        => join("\n", @options),
588                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
589                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
590                        'output_format'        => 'HTML',
591                        'title'                => $form->{title},
592                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
593     );
594   $report->set_options_from_form();
595   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
596
597   # add sort and escape callback, this one we use for the add sub
598   $form->{callback} = $href .= "&sort=$form->{sort}";
599
600   # escape callback for href
601   my $callback = $form->escape($href);
602
603   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
604   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
605
606   my $idx            = 1;
607
608   foreach my $dord (@{ $form->{DO} }) {
609     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
610     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
611
612     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
613
614     $row->{ids}  = {
615       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
616                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
617       'valign'   => 'center',
618       'align'    => 'center',
619     };
620
621     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
622     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}" if $dord->{oe_id};
623     $report->add_data($row);
624
625     $idx++;
626   }
627
628   $report->generate_with_headers();
629
630   $main::lxdebug->leave_sub();
631 }
632
633 sub save {
634   $main::lxdebug->enter_sub();
635
636   my (%params) = @_;
637
638   check_do_access();
639
640   my $form     = $main::form;
641   my %myconfig = %main::myconfig;
642   my $locale   = $main::locale;
643
644   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
645
646   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
647
648   $form->{donumber} =~ s/^\s*//g;
649   $form->{donumber} =~ s/\s*$//g;
650
651   my $msg = ucfirst $form->{vc};
652   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
653
654   # $locale->text('Customer missing!');
655   # $locale->text('Vendor missing!');
656
657   remove_emptied_rows();
658   validate_items();
659
660   # if the name changed get new values
661   if (check_name($form->{vc})) {
662     update();
663     ::end_of_request();
664   }
665
666   $form->{id} = 0 if $form->{saveasnew};
667
668   DO->save();
669   # saving the history
670   if(!exists $form->{addition}) {
671     $form->{snumbers} = qq|donumber_| . $form->{donumber};
672     $form->{addition} = "SAVED";
673     $form->save_history;
674   }
675   # /saving the history
676
677   $form->{simple_save} = 1;
678   if (!$params{no_redirect} && !$form->{print_and_save}) {
679     set_headings("edit");
680     update();
681     ::end_of_request();
682   }
683   $main::lxdebug->leave_sub();
684 }
685
686 sub delete {
687   $main::lxdebug->enter_sub();
688
689   check_do_access();
690
691   my $form     = $main::form;
692   my $locale   = $main::locale;
693
694   map { delete $form->{$_} } qw(action header login password);
695   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
696
697   $form->{title} = $locale->text('Delete delivery order');
698   $form->header();
699
700   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
701
702   $main::lxdebug->leave_sub();
703 }
704
705 sub delete_delivery_order {
706   $main::lxdebug->enter_sub();
707
708   check_do_access();
709
710   my $form     = $main::form;
711   my %myconfig = %main::myconfig;
712   my $locale   = $main::locale;
713
714   if (DO->delete()) {
715     # saving the history
716     if(!exists $form->{addition}) {
717       $form->{snumbers} = qq|donumber_| . $form->{donumber};
718       $form->{addition} = "DELETED";
719       $form->save_history;
720     }
721     # /saving the history
722
723     $form->info($locale->text('Delivery Order deleted!'));
724     ::end_of_request();
725   }
726
727   $form->error($locale->text('Cannot delete delivery order!'));
728
729   $main::lxdebug->leave_sub();
730 }
731
732 sub invoice {
733   $main::lxdebug->enter_sub();
734
735   my $form     = $main::form;
736   my %myconfig = %main::myconfig;
737   my $locale   = $main::locale;
738
739   check_do_access();
740   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
741
742   $form->{convert_from_do_ids} = $form->{id};
743   $form->{deliverydate}        = $form->{transdate};
744   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
745   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
746   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
747
748   $form->{rowcount}--;
749
750   delete @{$form}{qw(id closed delivered)};
751
752   my ($script, $buysell);
753   if ($form->{type} eq 'purchase_delivery_order') {
754     $form->{title}  = $locale->text('Add Vendor Invoice');
755     $form->{script} = 'ir.pl';
756     $script         = "ir";
757     $buysell        = 'sell';
758
759   } else {
760     $form->{title}  = $locale->text('Add Sales Invoice');
761     $form->{script} = 'is.pl';
762     $script         = "is";
763     $buysell        = 'buy';
764   }
765
766   for my $i (1 .. $form->{rowcount}) {
767     # für bug 1284
768     unless ($form->{"ordnumber"}) {
769       if ($form->{discount}) { # Falls wir einen Lieferanten-/Kundenrabatt haben
770         # und rabattfähig sind, dann
771         unless ($form->{"not_discountable_$i"}) {
772           $form->{"discount_$i"} = $form->{discount}*100; # ... nehmen wir diesen Rabatt
773         }
774       }
775     }
776     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
777   }
778
779   $form->{type} = "invoice";
780
781   # locale messages
782   $main::locale = new Locale "$myconfig{countrycode}", "$script";
783   $locale = $main::locale;
784
785   require "bin/mozilla/$form->{script}";
786
787   my $currency = $form->{currency};
788   $form->{shipto} = 1 if $form->{convert_from_do_ids};
789   invoice_links();
790
791   if ($form->{ordnumber}) {
792     require SL::DB::Order;
793     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
794       $order->load;
795       $form->{orddate} = $order->transdate_as_date;
796       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
797     }
798   }
799
800   $form->{currency}     = $currency;
801   $form->{exchangerate} = "";
802   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
803   $form->{exchangerate} = $form->{forex} if ($form->{forex});
804
805   prepare_invoice();
806
807   # format amounts
808   for my $i (1 .. $form->{rowcount}) {
809     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
810
811     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
812     $dec           = length $dec;
813     my $decimalplaces = ($dec > 2) ? $dec : 2;
814
815     # copy delivery date from reqdate for order -> invoice conversion
816     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
817       unless $form->{"deliverydate_$i"};
818
819
820     $form->{"sellprice_$i"} =
821       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
822                            $decimalplaces);
823
824     $form->{"lastcost_$i"} =
825       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
826                            $decimalplaces);
827
828     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
829     $dec_qty = length $dec_qty;
830     $form->{"qty_$i"} =
831       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
832
833   }
834
835   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
836   for my $i (1 .. $form->{rowcount}) {
837     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
838   }
839   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
840   set_pricegroup($_) for 1 .. $form->{rowcount};
841
842   display_form();
843
844   $main::lxdebug->leave_sub();
845 }
846
847 sub invoice_multi {
848   $main::lxdebug->enter_sub();
849
850   my $form     = $main::form;
851   my %myconfig = %main::myconfig;
852   my $locale   = $main::locale;
853
854   check_do_access();
855   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
856
857   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
858
859   if (!scalar @do_ids) {
860     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
861   }
862
863   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
864
865   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
866     $form->show_generic_error($form->{vc} eq 'customer' ?
867                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
868                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
869                               'back_button' => 1);
870   }
871
872   my $source_type              = $form->{type};
873   $form->{convert_from_do_ids} = join ' ', @do_ids;
874   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
875   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
876   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
877   # $shell: perldoc perlunc; /delete EXPR
878   $form->{donumber}            = delete $form->{donumber_array};
879   $form->{deliverydate}        = $form->{transdate};
880   $form->{transdate}           = $form->current_date(\%myconfig);
881   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
882   $form->{type}                = "invoice";
883   $form->{closed}              = 0;
884   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
885
886   my ($script, $buysell);
887   if ($source_type eq 'purchase_delivery_order') {
888     $form->{title}  = $locale->text('Add Vendor Invoice');
889     $form->{script} = 'ir.pl';
890     $script         = "ir";
891     $buysell        = 'sell';
892
893   } else {
894     $form->{title}  = $locale->text('Add Sales Invoice');
895     $form->{script} = 'is.pl';
896     $script         = "is";
897     $buysell        = 'buy';
898   }
899
900   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
901
902   # get vendor or customer discount
903   my $vc_discount;
904   my $saved_form = save_form();
905   if ($form->{vc} eq 'vendor') {
906     IR->get_vendor(\%myconfig, \%$form);
907     $vc_discount = $form->{vendor_discount};
908   } else {
909     IS->get_customer(\%myconfig, \%$form);
910     $vc_discount = $form->{customer_discount};
911   }
912   restore_form($saved_form);
913
914   $form->{rowcount} = 0;
915   foreach my $ref (@{ $form->{form_details} }) {
916     $form->{rowcount}++;
917     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
918     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
919     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
920
921     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
922       # und keinen anderen discount wert an $i ...
923       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
924     }
925
926     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
927     # Anm.: Eine Änderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
928     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
929
930     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
931   }
932   delete $form->{form_details};
933
934   $locale = new Locale "$myconfig{countrycode}", "$script";
935
936   require "bin/mozilla/$form->{script}";
937
938   invoice_links();
939   prepare_invoice();
940
941   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
942   for my $i (1 .. $form->{rowcount}) {
943     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
944   }
945   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
946   set_pricegroup($_) for 1 .. $form->{rowcount};
947
948   display_form();
949
950   $main::lxdebug->leave_sub();
951 }
952
953 sub save_as_new {
954   $main::lxdebug->enter_sub();
955
956   check_do_access();
957
958   my $form     = $main::form;
959
960   $form->{saveasnew} = 1;
961   $form->{closed}    = 0;
962   $form->{delivered} = 0;
963   map { delete $form->{$_} } qw(printed emailed queued);
964   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
965
966   # Let kivitendo assign a new order number if the user hasn't changed the
967   # previous one. If it has been changed manually then use it as-is.
968   $form->{donumber} =~ s/^\s*//g;
969   $form->{donumber} =~ s/\s*$//g;
970   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
971     delete($form->{donumber});
972   }
973
974   save();
975
976   $main::lxdebug->leave_sub();
977 }
978
979 sub e_mail {
980   $main::lxdebug->enter_sub();
981
982   check_do_access();
983
984   my $form     = $main::form;
985
986   $form->{print_and_save} = 1;
987
988   my $saved_form = save_form();
989
990   save();
991
992   restore_form($saved_form, 0, qw(id ordnumber quonumber));
993
994   edit_e_mail();
995
996   $main::lxdebug->leave_sub();
997 }
998
999 sub calculate_stock_in_out {
1000   $main::lxdebug->enter_sub();
1001
1002   my $form     = $main::form;
1003
1004   my $i = shift;
1005
1006   if (!$form->{"id_${i}"}) {
1007     $main::lxdebug->leave_sub();
1008     return '';
1009   }
1010
1011   my $all_units = AM->retrieve_all_units();
1012
1013   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
1014   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
1015
1016   my $do_qty   = AM->sum_with_unit($::form->{"qty_$i"}, $::form->{"unit_$i"});
1017   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
1018   my $matches  = $do_qty == $sum;
1019
1020   my $content  = $form->format_amount_units('amount'      => $sum * 1,
1021                                             'part_unit'   => $form->{"partunit_$i"},
1022                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
1023                                             'conv_units'  => 'convertible_not_smaller',
1024                                             'max_places'  => 2);
1025   $content     = qq|<span id="stock_in_out_qty_display_${i}">${content}</span><input type=hidden id='stock_in_out_qty_matches_$i' value='$matches'> <input type="button" onclick="open_stock_in_out_window('${in_out}', $i);" value="?">|;
1026
1027   $main::lxdebug->leave_sub();
1028
1029   return $content;
1030 }
1031
1032 sub get_basic_bin_wh_info {
1033   $main::lxdebug->enter_sub();
1034
1035   my $stock_info = shift;
1036
1037   my $form     = $main::form;
1038
1039   foreach my $sinfo (@{ $stock_info }) {
1040     next unless ($sinfo->{bin_id});
1041
1042     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
1043     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
1044   }
1045
1046   $main::lxdebug->leave_sub();
1047 }
1048
1049 sub stock_in_out_form {
1050   $main::lxdebug->enter_sub();
1051
1052   my $form     = $main::form;
1053
1054   if ($form->{in_out} eq 'out') {
1055     stock_out_form();
1056   } else {
1057     stock_in_form();
1058   }
1059
1060   $main::lxdebug->leave_sub();
1061 }
1062
1063 sub redo_stock_info {
1064   $main::lxdebug->enter_sub();
1065
1066   my %params    = @_;
1067
1068   my $form     = $main::form;
1069
1070   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
1071
1072   if ($params{add_empty_row}) {
1073     push @non_empty, {
1074       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
1075       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
1076     };
1077   }
1078
1079   @{ $params{stock_info} } = @non_empty;
1080
1081   $main::lxdebug->leave_sub();
1082 }
1083
1084 sub update_stock_in {
1085   $main::lxdebug->enter_sub();
1086
1087   my $form     = $main::form;
1088   my %myconfig = %main::myconfig;
1089
1090   my $stock_info = [];
1091
1092   foreach my $i (1..$form->{rowcount}) {
1093     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1094     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1095   }
1096
1097   display_stock_in_form($stock_info);
1098
1099   $main::lxdebug->leave_sub();
1100 }
1101
1102 sub stock_in_form {
1103   $main::lxdebug->enter_sub();
1104
1105   my $form     = $main::form;
1106
1107   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1108
1109   display_stock_in_form($stock_info);
1110
1111   $main::lxdebug->leave_sub();
1112 }
1113
1114 sub display_stock_in_form {
1115   $main::lxdebug->enter_sub();
1116
1117   my $stock_info = shift;
1118
1119   my $form     = $main::form;
1120   my %myconfig = %main::myconfig;
1121   my $locale   = $main::locale;
1122
1123   $form->{title} = $locale->text('Stock');
1124
1125   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1126
1127   # Standardlagerplatz für Standard-Auslagern verwenden, falls keiner für die Ware explizit definiert wurde
1128   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
1129     $part_info->{warehouse_id} ||= $::instance_conf->get_default_warehouse_id;
1130     $part_info->{bin_id}       ||= $::instance_conf->get_default_bin_id;
1131   }
1132
1133   my $units      = AM->retrieve_units(\%myconfig, $form);
1134   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
1135   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
1136
1137   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1138                                      'bins'   => 'BINS' });
1139
1140   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1141
1142   get_basic_bin_wh_info($stock_info);
1143
1144   $form->header(no_layout => 1);
1145   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1146                                                          'STOCK_INFO' => $stock_info,
1147                                                          'PART_INFO'  => $part_info, });
1148
1149   $main::lxdebug->leave_sub();
1150 }
1151
1152 sub _stock_in_out_set_qty_display {
1153   my $stock_info       = shift;
1154   my $form             = $::form;
1155   my $all_units        = AM->retrieve_all_units();
1156   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1157   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
1158                                                     part_unit   => $form->{partunit},
1159                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
1160                                                     conv_units  => 'convertible_not_smaller',
1161                                                     max_places  => 2);
1162 }
1163
1164 sub set_stock_in {
1165   $main::lxdebug->enter_sub();
1166
1167   my $form     = $main::form;
1168   my %myconfig = %main::myconfig;
1169
1170   my $stock_info = [];
1171
1172   foreach my $i (1..$form->{rowcount}) {
1173     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1174
1175     next if ($form->{"qty_$i"} <= 0);
1176
1177     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1178   }
1179
1180   $form->{stock} = YAML::Dump($stock_info);
1181
1182   _stock_in_out_set_qty_display($stock_info);
1183
1184   my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1185   my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1186
1187   $form->header();
1188   print $form->parse_html_template('do/set_stock_in_out', {
1189     qty_matches => $do_qty == $transfer_qty,
1190   });
1191
1192   $main::lxdebug->leave_sub();
1193 }
1194
1195 sub stock_out_form {
1196   $main::lxdebug->enter_sub();
1197
1198   my $form     = $main::form;
1199   my %myconfig = %main::myconfig;
1200   my $locale   = $main::locale;
1201
1202   $form->{title} = $locale->text('Release From Stock');
1203
1204   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1205
1206   my $units      = AM->retrieve_units(\%myconfig, $form);
1207   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1208
1209   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1210
1211   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1212
1213   if (!$form->{delivered}) {
1214     foreach my $row (@contents) {
1215       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1216                                                          'part_unit'   => $part_info->{unit},
1217                                                          'conv_units'  => 'convertible_not_smaller',
1218                                                          'max_places'  => 2);
1219
1220       foreach my $sinfo (@{ $stock_info }) {
1221         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1222                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1223                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1224                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1225
1226         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1227       }
1228     }
1229
1230   } else {
1231     get_basic_bin_wh_info($stock_info);
1232
1233     foreach my $sinfo (@{ $stock_info }) {
1234       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1235     }
1236   }
1237
1238   $form->header(no_layout => 1);
1239   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1240                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1241                                                           'PART_INFO'  => $part_info, });
1242
1243   $main::lxdebug->leave_sub();
1244 }
1245
1246 sub set_stock_out {
1247   $main::lxdebug->enter_sub();
1248
1249   my $form     = $main::form;
1250   my %myconfig = %main::myconfig;
1251   my $locale   = $main::locale;
1252
1253   my $stock_info = [];
1254
1255   foreach my $i (1 .. $form->{rowcount}) {
1256     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1257
1258     next if ($form->{"qty_$i"} <= 0);
1259
1260     push @{ $stock_info }, {
1261       'warehouse_id' => $form->{"warehouse_id_$i"},
1262       'bin_id'       => $form->{"bin_id_$i"},
1263       'chargenumber' => $form->{"chargenumber_$i"},
1264       'bestbefore'   => $form->{"bestbefore_$i"},
1265       'qty'          => $form->{"qty_$i"},
1266       'unit'         => $form->{"unit_$i"},
1267       'row'          => $i,
1268     };
1269   }
1270
1271   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1272                                                 'parts_id' => $form->{parts_id});
1273
1274   $form->{stock} = YAML::Dump($stock_info);
1275
1276   if (@errors) {
1277     $form->{ERRORS} = [];
1278     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1279     stock_in_out_form();
1280
1281   } else {
1282     _stock_in_out_set_qty_display($stock_info);
1283
1284     my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1285     my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1286
1287     $form->header();
1288     print $form->parse_html_template('do/set_stock_in_out', {
1289       qty_matches => $do_qty == $transfer_qty,
1290     });
1291   }
1292
1293   $main::lxdebug->leave_sub();
1294 }
1295
1296 sub transfer_in {
1297   $main::lxdebug->enter_sub();
1298
1299   my $form     = $main::form;
1300   my %myconfig = %main::myconfig;
1301   my $locale   = $main::locale;
1302
1303   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1304     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1305   }
1306
1307   save(no_redirect => 1);
1308
1309   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1310   my @all_requests;
1311
1312   if (@part_ids) {
1313     my $units         = AM->retrieve_units(\%myconfig, $form);
1314     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1315     my %request_map;
1316
1317     $form->{ERRORS}   = [];
1318
1319     foreach my $i (1 .. $form->{rowcount}) {
1320       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1321
1322       my $row_sum_base_qty = 0;
1323       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1324
1325       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1326         $request->{parts_id}  = $form->{"id_$i"};
1327         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1328
1329         push @all_requests, $request;
1330       }
1331
1332       next if (0 == $row_sum_base_qty);
1333
1334       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1335
1336 #      if ($do_base_qty != $row_sum_base_qty) {
1337 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1338 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1339 #      }
1340     }
1341
1342     if (@{ $form->{ERRORS} }) {
1343       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1344
1345       set_headings('edit');
1346       update();
1347       $main::lxdebug->leave_sub();
1348
1349       ::end_of_request();
1350     }
1351   }
1352
1353   DO->transfer_in_out('direction' => 'in',
1354                       'requests'  => \@all_requests);
1355
1356   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1357
1358   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id});
1359   $form->redirect;
1360
1361   $main::lxdebug->leave_sub();
1362 }
1363
1364 sub transfer_out {
1365   $main::lxdebug->enter_sub();
1366
1367   my $form     = $main::form;
1368   my %myconfig = %main::myconfig;
1369   my $locale   = $main::locale;
1370
1371   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1372     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1373   }
1374
1375   save(no_redirect => 1);
1376
1377   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1378   my @all_requests;
1379
1380   if (@part_ids) {
1381     my $units         = AM->retrieve_units(\%myconfig, $form);
1382     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1383     my %request_map;
1384
1385     $form->{ERRORS}   = [];
1386
1387     foreach my $i (1 .. $form->{rowcount}) {
1388       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1389
1390       my $row_sum_base_qty = 0;
1391       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1392
1393       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1394         $request->{parts_id} = $form->{"id_$i"};
1395         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1396         $request->{project_id} = $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id};
1397
1398         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1399
1400         $request_map{$map_key}                 ||= $request;
1401         $request_map{$map_key}->{sum_base_qty} ||= 0;
1402         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1403         $row_sum_base_qty                       += $request->{base_qty};
1404
1405         push @all_requests, $request;
1406       }
1407
1408       next if (0 == $row_sum_base_qty);
1409
1410       my $do_base_qty = $form->{"qty_$i"} * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1411
1412 #      if ($do_base_qty != $row_sum_base_qty) {
1413 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1414 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1415 #      }
1416     }
1417
1418     if (%request_map) {
1419       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1420       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1421       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1422
1423       foreach my $inv (@contents) {
1424         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1425
1426         next unless ($request_map{$map_key});
1427
1428         my $request    = $request_map{$map_key};
1429         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1430       }
1431
1432       foreach my $request (values %request_map) {
1433         next if ($request->{ok});
1434
1435         my $pinfo = $part_info_map{$request->{parts_id}};
1436         my $binfo = $bin_info_map{$request->{bin_id}};
1437
1438         if ($::instance_conf->get_show_bestbefore) {
1439             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1440                                                      $pinfo->{description},
1441                                                      $binfo->{warehouse_description},
1442                                                      $binfo->{bin_description},
1443                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1444                                                      $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1445                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1446                                                                                 'part_unit'   => $pinfo->{unit},
1447                                                                                 'conv_units'  => 'convertible_not_smaller'));
1448         } else {
1449             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1450                                                      $pinfo->{description},
1451                                                      $binfo->{warehouse_description},
1452                                                      $binfo->{bin_description},
1453                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1454                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1455                                                                                 'part_unit'   => $pinfo->{unit},
1456                                                                                 'conv_units'  => 'convertible_not_smaller'));
1457         }
1458       }
1459     }
1460
1461     if (@{ $form->{ERRORS} }) {
1462       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1463
1464       set_headings('edit');
1465       update();
1466       $main::lxdebug->leave_sub();
1467
1468       ::end_of_request();
1469     }
1470   }
1471   DO->transfer_in_out('direction' => 'out',
1472                       'requests'  => \@all_requests);
1473
1474   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1475
1476   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id});
1477   $form->redirect;
1478
1479   $main::lxdebug->leave_sub();
1480 }
1481
1482 sub mark_closed {
1483   $main::lxdebug->enter_sub();
1484
1485   my $form     = $main::form;
1486
1487   DO->close_orders('ids' => [ $form->{id} ]);
1488
1489   $form->{closed} = 1;
1490
1491   update();
1492
1493   $main::lxdebug->leave_sub();
1494 }
1495
1496
1497 sub yes {
1498   call_sub($main::form->{yes_nextsub});
1499 }
1500
1501 sub no {
1502   call_sub($main::form->{no_nextsub});
1503 }
1504
1505 sub update {
1506   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1507 }
1508
1509 sub dispatcher {
1510   my $form     = $main::form;
1511   my $locale   = $main::locale;
1512
1513   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_out_default
1514                          transfer_in transfer_in_default mark_closed save_as_new invoice delete)) {
1515     if ($form->{"action_${action}"}) {
1516       call_sub($action);
1517       return;
1518     }
1519   }
1520
1521   $form->error($locale->text('No action defined.'));
1522 }
1523
1524 sub transfer_out_default {
1525   $main::lxdebug->enter_sub();
1526
1527   my $form     = $main::form;
1528
1529   transfer_in_out_default('direction' => 'out');
1530
1531   $main::lxdebug->leave_sub();
1532 }
1533
1534 sub transfer_in_default {
1535   $main::lxdebug->enter_sub();
1536
1537   my $form     = $main::form;
1538
1539   transfer_in_out_default('direction' => 'in');
1540
1541   $main::lxdebug->leave_sub();
1542 }
1543
1544 # Falls das Standardlagerverfahren aktiv ist, wird
1545 # geprüft, ob alle Standardlagerplätze für die Auslager-
1546 # artikel vorhanden sind UND ob die Warenmenge ausreicht zum
1547 # Auslagern. Falls nicht wird entsprechend eine Fehlermeldung
1548 # generiert. Offen Chargennummer / bestbefore wird nicht berücksichtigt
1549 sub transfer_in_out_default {
1550   $main::lxdebug->enter_sub();
1551
1552   my $form     = $main::form;
1553   my %myconfig = %main::myconfig;
1554   my $locale   = $main::locale;
1555   my %params   = @_;
1556
1557   my (%missing_default_bins, %qty_parts, @all_requests, %part_info_map, $default_warehouse_id, $default_bin_id);
1558
1559   Common::check_params(\%params, qw(direction));
1560
1561   # entsprechende defaults holen, falls standardlagerplatz verwendet werden soll
1562   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
1563     $default_warehouse_id = $::instance_conf->get_default_warehouse_id;
1564     $default_bin_id       = $::instance_conf->get_default_bin_id;
1565   }
1566
1567
1568   my @part_ids = map { $form->{"id_${_}"} } (1 .. $form->{rowcount});
1569   if (@part_ids) {
1570     my $units         = AM->retrieve_units(\%myconfig, $form);
1571     %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1572     foreach my $i (1 .. $form->{rowcount}) {
1573       next unless ($form->{"id_$i"});
1574       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1575       my $qty =   $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1576       $qty_parts{$form->{"id_$i"}} += $qty;
1577
1578
1579       $part_info_map{$form->{"id_$i"}}{bin_id}       ||= $default_bin_id;
1580       $part_info_map{$form->{"id_$i"}}{warehouse_id} ||= $default_warehouse_id;
1581
1582       push @all_requests, {
1583                         'chargenumber' => '',  #?? die müsste entsprechend geholt werden
1584                         #'bestbefore' => undef, # TODO wird nicht berücksichtigt
1585                         'bin_id' => $part_info_map{$form->{"id_$i"}}{bin_id},
1586                         'qty' => $qty,
1587                         'parts_id' => $form->{"id_$i"},
1588                         'comment' => 'Default transfer DO',
1589                         'ok' => 1,
1590                         'unit' => $part_info_map{$form->{"id_$i"}}{unit},
1591                         'warehouse_id' => $part_info_map{$form->{"id_$i"}}{warehouse_id},
1592                         'oe_id' => $form->{id},
1593                         'project_id' => $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id}
1594                       };
1595     }
1596
1597     # jetzt wird erst überprüft, ob die Stückzahl entsprechend stimmt.
1598     if ($params{direction} eq 'out') {  # wird nur für ausgehende Mengen benötigit
1599       foreach my $key (keys %qty_parts) {
1600
1601         $missing_default_bins{$key}{missing_bin} = 1 unless ($part_info_map{$key}{bin_id});
1602         next unless ($part_info_map{$key}{bin_id}); # abbruch
1603
1604         my ($max_qty, $error) = WH->get_max_qty_parts_bin(parts_id => $key, bin_id => $part_info_map{$key}{bin_id});
1605         if ($error == 1) {
1606           # wir können nicht entscheiden, welche charge oder mhd (bestbefore) ausgewählt sein soll
1607           # deshalb rückmeldung nach oben geben, manuell auszulagern
1608           # TODO Bei nur einem Treffer mit Charge oder bestbefore wäre das noch möglich
1609           $missing_default_bins{$key}{chargenumber} = 1;
1610         }
1611         if ($max_qty < $qty_parts{$key}){
1612           $missing_default_bins{$key}{missing_qty} = $max_qty - $qty_parts{$key};
1613         }
1614       }
1615     }
1616   } # if @parts_id
1617
1618   # Abfrage für Fehlerbehandlung (nur bei direction == out)
1619   if (scalar (keys %missing_default_bins)) {
1620     my $fehlertext;
1621     foreach my $fehler (keys %missing_default_bins) {
1622
1623       my $ware = WH->get_part_description(parts_id => $fehler);
1624       if ($missing_default_bins{$fehler}{missing_bin}){
1625         $fehlertext .= "Kein Standardlagerplatz definiert bei $ware <br>";
1626       }
1627       if ($missing_default_bins{$fehler}{missing_qty}) {  # missing_qty
1628         $fehlertext .= "Es fehlen " . $missing_default_bins{$fehler}{missing_qty}*-1 .
1629                        " von $ware auf dem Standard-Lagerplatz " . $part_info_map{$fehler}{bin} .   " zum Auslagern<br>";
1630       }
1631       if ($missing_default_bins{$fehler}{chargenumber}){
1632         $fehlertext .= "Die Ware hat eine Chargennummer oder eine Mindesthaltbarkeit definiert.
1633                         Hier kann man nicht automatisch entscheiden.
1634                         Bitte diesen Lieferschein manuell auslagern.
1635                         Bei: $ware";
1636       }
1637       # auslagern soll immer gehen, auch wenn nicht genügend auf lager ist.
1638       # der lagerplatz ist hier extra konfigurierbar, bspw. Lager-Korrektur mit
1639       # Lagerplatz Lagerplatz-Korrektur
1640       my $default_warehouse_id_ignore_onhand = $::instance_conf->get_default_warehouse_id_ignore_onhand;
1641       my $default_bin_id_ignore_onhand       = $::instance_conf->get_default_bin_id_ignore_onhand;
1642       if ($::instance_conf->get_transfer_default_ignore_onhand && $default_bin_id_ignore_onhand) {
1643         # entsprechende defaults holen
1644         # falls chargenumber, bestbefore oder anzahl nicht stimmt, auf automatischen
1645         # lagerplatz wegbuchen!
1646         foreach (@all_requests) {
1647           if ($_->{parts_id} eq $fehler){
1648           $_->{bin_id}        = $default_bin_id_ignore_onhand;
1649           $_->{warehouse_id}  = $default_warehouse_id_ignore_onhand;
1650           }
1651         }
1652       } else {
1653         #$main::lxdebug->message(0, 'Fehlertext: ' . $fehlertext);
1654         $form->show_generic_error($locale->text("Cannot transfer. <br> Reason:<br>#1", $fehlertext ), 'back_button' => 1);
1655       }
1656     }
1657   }
1658
1659
1660   # hier der eigentliche fallunterschied für in oder out
1661   my $prefix   = $params{direction} eq 'in' ? 'in' : 'out';
1662
1663   # dieser array_ref ist für DO->save da:
1664   # einmal die all_requests in YAML verwandeln, damit delivery_order_items_stock
1665   # gefüllt werden kann.
1666   my $i = 1;
1667   foreach (@all_requests){
1668     $form->{"stock_${prefix}_$i"} = YAML::Dump([$_]);
1669     $i++;
1670   }
1671
1672   save(no_redirect => 1); # Wir können auslagern, deshalb beleg speichern
1673                           # und in delivery_order_items_stock speichern
1674   DO->transfer_in_out('direction' => $prefix,
1675                       'requests'  => \@all_requests);
1676
1677   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1678
1679   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'out';
1680   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'in';
1681   $form->redirect;
1682
1683 }