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