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