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