Verkauf->Berichte->Lieferscheine: Lieferdatum mit anzeigen lassen.
[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}   = $::lx_office_conf{features}->{webdav};
169   $form->{jsscript} = 1;
170
171   my $editing = $form->{id};
172
173   DO->retrieve('vc'  => $form->{vc},
174                'ids' => $form->{id});
175
176   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes currency));
177   $form->{shipto} = 1 if $form->{id} || $form->{convert_from_oe_ids};
178
179   # get customer / vendor
180   if ($form->{vc} eq 'vendor') {
181     IR->get_vendor(\%myconfig, \%$form);
182     $form->{discount} = $form->{vendor_discount};
183   } else {
184     IS->get_customer(\%myconfig, \%$form);
185     $form->{discount} = $form->{customer_discount};
186   }
187
188   $form->restore_vars(qw(payment_id language_id taxzone_id intnotes cp_id));
189   $form->restore_vars(qw(currency)) if ($form->{id} || $form->{convert_from_oe_ids});
190   $form->restore_vars(qw(taxincluded)) if $form->{id};
191   $form->restore_vars(qw(salesman_id)) if $editing;
192
193   if ($form->{"all_$form->{vc}"}) {
194     unless ($form->{"$form->{vc}_id"}) {
195       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
196     }
197   }
198
199   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
200   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
201
202   $form->{employee} = "$form->{employee}--$form->{employee_id}";
203
204   $main::lxdebug->leave_sub();
205 }
206
207 sub prepare_order {
208   $main::lxdebug->enter_sub();
209
210   check_do_access();
211
212   my $form     = $main::form;
213   my %myconfig = %main::myconfig;
214
215   $form->{formname} = $form->{type} unless $form->{formname};
216
217   my $i = 0;
218   foreach my $ref (@{ $form->{form_details} }) {
219     $form->{rowcount} = ++$i;
220
221     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
222   }
223   for my $i (1 .. $form->{rowcount}) {
224     if ($form->{id}) {
225       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
226     } else {
227       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
228     }
229     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
230     $dec           = length $dec;
231     my $decimalplaces = ($dec > 2) ? $dec : 2;
232
233     # copy reqdate from deliverydate for invoice -> order conversion
234     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
235
236     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
237     $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
238
239     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
240     $dec_qty = length $dec_qty;
241     $form->{"qty_$i"} = $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
242   }
243
244   $main::lxdebug->leave_sub();
245 }
246
247 sub form_header {
248   $main::lxdebug->enter_sub();
249
250   check_do_access();
251
252   my $form     = $main::form;
253   my %myconfig = %main::myconfig;
254
255   $form->{employee_id} = $form->{old_employee_id} if $form->{old_employee_id};
256   $form->{salesman_id} = $form->{old_salesman_id} if $form->{old_salesman_id};
257
258   # use JavaScript Calendar or not
259   $form->{jsscript} = 1;
260
261   my @old_project_ids = ($form->{"globalproject_id"});
262   map({ push(@old_project_ids, $form->{"project_id_$_"})
263           if ($form->{"project_id_$_"}); } (1..$form->{"rowcount"}));
264
265   my $vc = $form->{vc} eq "customer" ? "customers" : "vendors";
266   $form->get_lists("projects"       => {
267                      "key"          => "ALL_PROJECTS",
268                      "all"          => 0,
269                      "old_id"       => \@old_project_ids
270                    },
271                    $vc              => "ALL_VC",
272                    "price_factors"  => "ALL_PRICE_FACTORS",
273                    "departments"    => "ALL_DEPARTMENTS",
274                    "business_types" => "ALL_BUSINESS_TYPES",
275     );
276
277   $::form->{ALL_EMPLOYEES}         = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{employee_id},  deleted => 0 ] ]);
278   $::form->{ALL_SALESMEN}          = SL::DB::Manager::Employee->get_all(query => [ or => [ id => $::form->{salesman_id},  deleted => 0 ] ]);
279   $::form->{ALL_SHIPTO}            = SL::DB::Manager::Shipto->get_all(query => [
280     or => [ trans_id  => $::form->{"$::form->{vc}_id"} * 1, and => [ shipto_id => $::form->{shipto_id} * 1, trans_id => undef ] ]
281   ]);
282   $::form->{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all(query => [
283     or => [
284       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
285       and      => [
286         cp_cv_id => undef,
287         cp_id    => $::form->{cp_id} * 1
288       ]
289     ]
290   ]);
291
292   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
293   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
294
295   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
296
297   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
298   $form->{oldvcname}         =~ s/--.*//;
299
300   if ($form->{resubmit}) {
301     my $dispatch_to_popup = '';
302     if ($form->{format} eq "html") {
303       $dispatch_to_popup .= "window.open('about:blank','Beleg'); document.do.target = 'Beleg';";
304     }
305     # emulate click for resubmitting actions
306     $dispatch_to_popup .= "document.do.${_}.click(); " for grep { /^action_/ } keys %$form;
307     $dispatch_to_popup .= "document.do.submit();";
308     $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup})");
309   }
310
311   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
312   $follow_up_vc                   =~ s/--\d*\s*$//;
313
314   $form->{follow_up_trans_info} = $form->{donumber} .'('. $follow_up_vc .')';
315
316   $form->header();
317   # Fix für Bug 1082 Erwartet wird: 'abteilungsNAME--abteilungsID'
318   # und Erweiterung für Bug 1760:
319   # Das war leider nur ein Teil-Fix, da das Verhalten den 'Erneuern'-Knopf
320   # nicht Ã¼berlebt. Konsequent jetzt auf L umgestellt
321   #   $ perldoc SL::Template::Plugin::L
322   # Daher entsprechend nur die Anpassung in form_header
323   # und in DO.pm gemacht. 4 Testfälle:
324   # department_id speichern                 | i.O.
325   # department_id lesen                     | i.O.
326   # department leer Ã¼berlebt erneuern       | i.O.
327   # department nicht leer Ã¼berlebt erneuern | i.O.
328   # $main::lxdebug->message(0, 'ABTEILUNGS ID in form?' . $form->{department_id});
329   print $form->parse_html_template('do/form_header');
330
331   $main::lxdebug->leave_sub();
332 }
333
334 sub form_footer {
335   $main::lxdebug->enter_sub();
336
337   check_do_access();
338
339   my $form     = $main::form;
340
341   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
342
343   print $form->parse_html_template('do/form_footer');
344
345   $main::lxdebug->leave_sub();
346 }
347
348 sub update_delivery_order {
349   $main::lxdebug->enter_sub();
350
351   check_do_access();
352
353   my $form     = $main::form;
354   my %myconfig = %main::myconfig;
355
356   set_headings($form->{"id"} ? "edit" : "add");
357
358   $form->{update} = 1;
359
360   my $payment_id;
361   $payment_id = $form->{payment_id} if $form->{payment_id};
362
363   check_name($form->{vc});
364   $form->{discount} =  $form->{"$form->{vc}_discount"} if defined $form->{"$form->{vc}_discount"};
365   # Problem: Wenn man ohne Erneuern einen Kunden/Lieferanten
366   # wechselt, wird der entsprechende Kunden/ Lieferantenrabatt
367   # nicht Ã¼bernommen. Grundproblem: In Commit 82574e78
368   # hab ich aus discount customer_discount und vendor_discount
369   # gemacht und entsprechend an den Oberflächen richtig hin-
370   # geschoben. Die damals bessere Lösung wäre gewesen:
371   # In den Templates nur die hidden für form-discount wieder ein-
372   # setzen dann wäre die Verrenkung jetzt nicht notwendig.
373   # TODO: Ggf. Bugfix 1284, 1575 und 817 wieder zusammenführen
374   # Testfälle: Kunden mit Rabatt 0 -> Rabatt 20 i.O.
375   #            Kunde mit Rabatt 20 -> Rabatt 0  i.O.
376   #            Kunde mit Rabatt 20 -> Rabatt 5,5 i.O.
377   $form->{payment_id} = $payment_id if $form->{payment_id} eq "";
378
379   # for pricegroups
380   my $i = $form->{rowcount};
381
382   if (   ($form->{"partnumber_$i"} eq "")
383       && ($form->{"description_$i"} eq "")
384       && ($form->{"partsgroup_$i"}  eq "")) {
385
386     check_form();
387
388   } else {
389
390     my $mode;
391     if ($form->{type} eq 'purchase_delivery_order') {
392       IR->retrieve_item(\%myconfig, $form);
393       $mode = 'IR';
394     } else {
395       IS->retrieve_item(\%myconfig, $form);
396       $mode = 'IS';
397     }
398
399     my $rows = scalar @{ $form->{item_list} };
400
401     if ($rows) {
402       $form->{"qty_$i"} = 1 unless $form->parse_amount(\%myconfig, $form->{"qty_$i"});
403
404       if ($rows > 1) {
405
406         select_item(mode => $mode);
407         ::end_of_request();
408
409       } else {
410
411         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
412
413         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
414         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
415         $form->{"lastcost_$i"}          = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
416         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
417       }
418
419       display_form();
420
421     } else {
422
423       # ok, so this is a new part
424       # ask if it is a part or service item
425
426       if (   $form->{"partsgroup_$i"}
427           && ($form->{"partsnumber_$i"} eq "")
428           && ($form->{"description_$i"} eq "")) {
429         $form->{rowcount}--;
430         $form->{"discount_$i"} = "";
431         $form->{"not_discountable_$i"} = "";
432         display_form();
433
434       } else {
435         $form->{"id_$i"}   = 0;
436         new_item();
437       }
438     }
439   }
440
441   $main::lxdebug->leave_sub();
442 }
443
444 sub search {
445   $main::lxdebug->enter_sub();
446
447   check_do_access();
448
449   my $form     = $main::form;
450   my %myconfig = %main::myconfig;
451   my $locale   = $main::locale;
452
453   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
454
455   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
456                                        "all" => 1 },
457                    "departments"  => "ALL_DEPARTMENTS",
458                    "$form->{vc}s" => "ALL_VC");
459   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all(query => [ deleted => 0 ]);
460
461   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
462   $form->{jsscript}          = 1;
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
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
512                                           transaction_description transdatefrom transdateto type vc employee_id salesman_id project_id);
513
514   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
515
516   my %column_defs = (
517     'ids'                     => { 'text' => '', },
518     'transdate'               => { 'text' => $locale->text('Date'), },
519     'reqdate'                 => { 'text' => $locale->text('Reqdate'), },
520     'id'                      => { 'text' => $locale->text('ID'), },
521     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
522     'ordnumber'               => { 'text' => $locale->text('Order'), },
523     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
524     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
525     'employee'                => { 'text' => $locale->text('Employee'), },
526     'salesman'                => { 'text' => $locale->text('Salesman'), },
527     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
528     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
529     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
530     'open'                    => { 'text' => $locale->text('Open'), },
531     'delivered'               => { 'text' => $locale->text('Delivered'), },
532     'department'              => { 'text' => $locale->text('Department'), },
533   );
534
535   foreach my $name (qw(id transdate reqdate donumber ordnumber name employee salesman shipvia transaction_description department)) {
536     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
537     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
538   }
539
540   $form->{"l_type"} = "Y";
541   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
542
543   $column_defs{ids}->{visible} = 'HTML';
544
545   $report->set_columns(%column_defs);
546   $report->set_column_order(@columns);
547
548   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
549
550   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
551
552   my @options;
553   if ($form->{customer}) {
554     push @options, $locale->text('Customer') . " : $form->{customer}";
555   }
556   if ($form->{vendor}) {
557     push @options, $locale->text('Vendor') . " : $form->{vendor}";
558   }
559   if ($form->{department}) {
560     my ($department) = split /--/, $form->{department};
561     push @options, $locale->text('Department') . " : $department";
562   }
563   if ($form->{donumber}) {
564     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
565   }
566   if ($form->{ordnumber}) {
567     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
568   }
569   if ($form->{transaction_description}) {
570     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
571   }
572   if ($form->{transdatefrom}) {
573     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1);
574   }
575   if ($form->{transdateto}) {
576     push @options, $locale->text('Bis') . " " . $locale->date(\%myconfig, $form->{transdateto}, 1);
577   }
578   if ($form->{open}) {
579     push @options, $locale->text('Open');
580   }
581   if ($form->{closed}) {
582     push @options, $locale->text('Closed');
583   }
584   if ($form->{delivered}) {
585     push @options, $locale->text('Delivered');
586   }
587   if ($form->{notdelivered}) {
588     push @options, $locale->text('Not delivered');
589   }
590
591   $report->set_options('top_info_text'        => join("\n", @options),
592                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
593                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
594                        'output_format'        => 'HTML',
595                        'title'                => $form->{title},
596                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
597     );
598   $report->set_options_from_form();
599   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
600
601   # add sort and escape callback, this one we use for the add sub
602   $form->{callback} = $href .= "&sort=$form->{sort}";
603
604   # escape callback for href
605   my $callback = $form->escape($href);
606
607   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
608   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
609
610   my $idx            = 1;
611
612   foreach my $dord (@{ $form->{DO} }) {
613     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
614     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
615
616     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
617
618     $row->{ids}  = {
619       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
620                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
621       'valign'   => 'center',
622       'align'    => 'center',
623     };
624
625     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
626     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}" if $dord->{oe_id};
627     $report->add_data($row);
628
629     $idx++;
630   }
631
632   $report->generate_with_headers();
633
634   $main::lxdebug->leave_sub();
635 }
636
637 sub save {
638   $main::lxdebug->enter_sub();
639
640   my (%params) = @_;
641
642   check_do_access();
643
644   my $form     = $main::form;
645   my %myconfig = %main::myconfig;
646   my $locale   = $main::locale;
647
648   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
649
650   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
651
652   $form->{donumber} =~ s/^\s*//g;
653   $form->{donumber} =~ s/\s*$//g;
654
655   my $msg = ucfirst $form->{vc};
656   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
657
658   # $locale->text('Customer missing!');
659   # $locale->text('Vendor missing!');
660
661   remove_emptied_rows();
662   validate_items();
663
664   # if the name changed get new values
665   if (check_name($form->{vc})) {
666     update();
667     ::end_of_request();
668   }
669
670   $form->{id} = 0 if $form->{saveasnew};
671   # best case fix für bug 1079. Einkaufsrabatt wird nicht richtig
672   # aus Lieferantenauftrag -> Lieferschein -> Rechnung Ã¼bernommen
673   # Tritt nur auf, wenn man direkt Ã¼ber Lieferschein -> speichern ->
674   # Workflow Rechnung geht (beim Aufruf Ã¼ber edit() i.O.)
675   # Gut. DO-save() speichert den Discount im DB-Format 0.12 für
676   # 12%, die Konvertierung wird leider in $form gemacht und daher
677   # wird die Maske mit dem falschen Rabatt wieder aufgebaut.
678   # Wie immer: backup_vars verwenden um nichts anderes kaputt zu
679   # machen. jan 03.03.2010
680   # nicht mehr notwendig da für bug 1284 der backend aufruf entsprechend
681   # geändert wurde
682   DO->save();
683   # saving the history
684   if(!exists $form->{addition}) {
685     $form->{snumbers} = qq|donumber_| . $form->{donumber};
686     $form->{addition} = "SAVED";
687     $form->save_history;
688   }
689   # /saving the history
690
691   $form->{simple_save} = 1;
692   if (!$params{no_redirect} && !$form->{print_and_save}) {
693     set_headings("edit");
694     update();
695     ::end_of_request();
696   }
697   $main::lxdebug->leave_sub();
698 }
699
700 sub delete {
701   $main::lxdebug->enter_sub();
702
703   check_do_access();
704
705   my $form     = $main::form;
706   my $locale   = $main::locale;
707
708   map { delete $form->{$_} } qw(action header login password);
709   my @variables = map { { 'key' => $_, 'value' => $form->{$_} } } grep { '' eq ref $form->{$_} } keys %{ $form };
710
711   $form->{title} = $locale->text('Delete delivery order');
712   $form->header();
713
714   print $form->parse_html_template('do/delete', { 'VARIABLES' => \@variables });
715
716   $main::lxdebug->leave_sub();
717 }
718
719 sub delete_delivery_order {
720   $main::lxdebug->enter_sub();
721
722   check_do_access();
723
724   my $form     = $main::form;
725   my %myconfig = %main::myconfig;
726   my $locale   = $main::locale;
727
728   if (DO->delete()) {
729     # saving the history
730     if(!exists $form->{addition}) {
731       $form->{snumbers} = qq|donumber_| . $form->{donumber};
732       $form->{addition} = "DELETED";
733       $form->save_history;
734     }
735     # /saving the history
736
737     $form->info($locale->text('Delivery Order deleted!'));
738     ::end_of_request();
739   }
740
741   $form->error($locale->text('Cannot delete delivery order!'));
742
743   $main::lxdebug->leave_sub();
744 }
745
746 sub invoice {
747   $main::lxdebug->enter_sub();
748
749   my $form     = $main::form;
750   my %myconfig = %main::myconfig;
751   my $locale   = $main::locale;
752
753   check_do_access();
754   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
755
756   $form->{convert_from_do_ids} = $form->{id};
757   $form->{deliverydate}        = $form->{transdate};
758   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
759   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
760   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
761
762   $form->{rowcount}--;
763
764   delete @{$form}{qw(id closed delivered)};
765
766   my ($script, $buysell);
767   if ($form->{type} eq 'purchase_delivery_order') {
768     $form->{title}  = $locale->text('Add Vendor Invoice');
769     $form->{script} = 'ir.pl';
770     $script         = "ir";
771     $buysell        = 'sell';
772
773   } else {
774     $form->{title}  = $locale->text('Add Sales Invoice');
775     $form->{script} = 'is.pl';
776     $script         = "is";
777     $buysell        = 'buy';
778   }
779
780   for my $i (1 .. $form->{rowcount}) {
781     # für bug 1284
782     unless ($form->{"ordnumber"}) {
783       if ($form->{discount}) { # Falls wir einen Lieferanten-/Kundenrabatt haben
784         # und rabattfähig sind, dann
785         unless ($form->{"not_discountable_$i"}) {
786           $form->{"discount_$i"} = $form->{discount}*100; # ... nehmen wir diesen Rabatt
787         }
788       }
789     }
790     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
791   }
792
793   $form->{type} = "invoice";
794
795   # locale messages
796   $main::locale = new Locale "$myconfig{countrycode}", "$script";
797   $locale = $main::locale;
798
799   require "bin/mozilla/$form->{script}";
800
801   my $currency = $form->{currency};
802   $form->{shipto} = 1 if $form->{convert_from_do_ids};
803   invoice_links();
804
805   if ($form->{ordnumber}) {
806     require SL::DB::Order;
807     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
808       $order->load;
809       $form->{orddate} = $order->transdate_as_date;
810       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
811     }
812   }
813
814   $form->{currency}     = $currency;
815   $form->{exchangerate} = "";
816   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
817   $form->{exchangerate} = $form->{forex} if ($form->{forex});
818
819   prepare_invoice();
820
821   # format amounts
822   for my $i (1 .. $form->{rowcount}) {
823     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
824
825     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
826     $dec           = length $dec;
827     my $decimalplaces = ($dec > 2) ? $dec : 2;
828
829     # copy delivery date from reqdate for order -> invoice conversion
830     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
831       unless $form->{"deliverydate_$i"};
832
833
834     $form->{"sellprice_$i"} =
835       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
836                            $decimalplaces);
837
838     $form->{"lastcost_$i"} =
839       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
840                            $decimalplaces);
841
842     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
843     $dec_qty = length $dec_qty;
844     $form->{"qty_$i"} =
845       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
846
847   }
848
849   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
850   for my $i (1 .. $form->{rowcount}) {
851     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
852   }
853   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
854   set_pricegroup($_) for 1 .. $form->{rowcount};
855
856   display_form();
857
858   $main::lxdebug->leave_sub();
859 }
860
861 sub invoice_multi {
862   $main::lxdebug->enter_sub();
863
864   my $form     = $main::form;
865   my %myconfig = %main::myconfig;
866   my $locale   = $main::locale;
867
868   check_do_access();
869   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
870
871   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
872
873   if (!scalar @do_ids) {
874     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
875   }
876
877   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
878
879   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
880     $form->show_generic_error($form->{vc} eq 'customer' ?
881                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
882                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
883                               'back_button' => 1);
884   }
885
886   my $source_type              = $form->{type};
887   $form->{convert_from_do_ids} = join ' ', @do_ids;
888   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
889   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
890   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
891   # $shell: perldoc perlunc; /delete EXPR
892   $form->{donumber}            = delete $form->{donumber_array};
893   $form->{deliverydate}        = $form->{transdate};
894   $form->{transdate}           = $form->current_date(\%myconfig);
895   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
896   $form->{type}                = "invoice";
897   $form->{closed}              = 0;
898   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
899
900   my ($script, $buysell);
901   if ($source_type eq 'purchase_delivery_order') {
902     $form->{title}  = $locale->text('Add Vendor Invoice');
903     $form->{script} = 'ir.pl';
904     $script         = "ir";
905     $buysell        = 'sell';
906
907   } else {
908     $form->{title}  = $locale->text('Add Sales Invoice');
909     $form->{script} = 'is.pl';
910     $script         = "is";
911     $buysell        = 'buy';
912   }
913
914   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
915
916   # get vendor or customer discount
917   my $vc_discount;
918   my $saved_form = save_form();
919   if ($form->{vc} eq 'vendor') {
920     IR->get_vendor(\%myconfig, \%$form);
921     $vc_discount = $form->{vendor_discount};
922   } else {
923     IS->get_customer(\%myconfig, \%$form);
924     $vc_discount = $form->{customer_discount};
925   }
926   restore_form($saved_form);
927
928   $form->{rowcount} = 0;
929   foreach my $ref (@{ $form->{form_details} }) {
930     $form->{rowcount}++;
931     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
932     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
933     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
934
935     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
936       # und keinen anderen discount wert an $i ...
937       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
938     }
939
940     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
941     # Anm.: Eine Ã„nderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
942     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
943
944     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
945   }
946   delete $form->{form_details};
947
948   $locale = new Locale "$myconfig{countrycode}", "$script";
949
950   require "bin/mozilla/$form->{script}";
951
952   invoice_links();
953   prepare_invoice();
954
955   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
956   for my $i (1 .. $form->{rowcount}) {
957     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
958   }
959   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
960   set_pricegroup($_) for 1 .. $form->{rowcount};
961
962   display_form();
963
964   $main::lxdebug->leave_sub();
965 }
966
967 sub save_as_new {
968   $main::lxdebug->enter_sub();
969
970   check_do_access();
971
972   my $form     = $main::form;
973
974   $form->{saveasnew} = 1;
975   $form->{closed}    = 0;
976   $form->{delivered} = 0;
977   map { delete $form->{$_} } qw(printed emailed queued);
978   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
979
980   # Let kivitendo assign a new order number if the user hasn't changed the
981   # previous one. If it has been changed manually then use it as-is.
982   $form->{donumber} =~ s/^\s*//g;
983   $form->{donumber} =~ s/\s*$//g;
984   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
985     delete($form->{donumber});
986   }
987
988   save();
989
990   $main::lxdebug->leave_sub();
991 }
992
993 sub e_mail {
994   $main::lxdebug->enter_sub();
995
996   check_do_access();
997
998   my $form     = $main::form;
999
1000   $form->{print_and_save} = 1;
1001
1002   my $saved_form = save_form();
1003
1004   save();
1005
1006   restore_form($saved_form, 0, qw(id ordnumber quonumber));
1007
1008   edit_e_mail();
1009
1010   $main::lxdebug->leave_sub();
1011 }
1012
1013 sub calculate_stock_in_out {
1014   $main::lxdebug->enter_sub();
1015
1016   my $form     = $main::form;
1017
1018   my $i = shift;
1019
1020   if (!$form->{"id_${i}"}) {
1021     $main::lxdebug->leave_sub();
1022     return '';
1023   }
1024
1025   my $all_units = AM->retrieve_all_units();
1026
1027   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
1028   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
1029
1030   my $do_qty   = AM->sum_with_unit($::form->{"qty_$i"}, $::form->{"unit_$i"});
1031   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
1032   my $matches  = $do_qty == $sum;
1033
1034   my $content  = $form->format_amount_units('amount'      => $sum * 1,
1035                                             'part_unit'   => $form->{"partunit_$i"},
1036                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
1037                                             'conv_units'  => 'convertible_not_smaller',
1038                                             'max_places'  => 2);
1039   $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="?">|;
1040
1041   $main::lxdebug->leave_sub();
1042
1043   return $content;
1044 }
1045
1046 sub get_basic_bin_wh_info {
1047   $main::lxdebug->enter_sub();
1048
1049   my $stock_info = shift;
1050
1051   my $form     = $main::form;
1052
1053   foreach my $sinfo (@{ $stock_info }) {
1054     next unless ($sinfo->{bin_id});
1055
1056     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
1057     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
1058   }
1059
1060   $main::lxdebug->leave_sub();
1061 }
1062
1063 sub stock_in_out_form {
1064   $main::lxdebug->enter_sub();
1065
1066   my $form     = $main::form;
1067
1068   if ($form->{in_out} eq 'out') {
1069     stock_out_form();
1070   } else {
1071     stock_in_form();
1072   }
1073
1074   $main::lxdebug->leave_sub();
1075 }
1076
1077 sub redo_stock_info {
1078   $main::lxdebug->enter_sub();
1079
1080   my %params    = @_;
1081
1082   my $form     = $main::form;
1083
1084   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
1085
1086   if ($params{add_empty_row}) {
1087     push @non_empty, {
1088       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
1089       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
1090     };
1091   }
1092
1093   @{ $params{stock_info} } = @non_empty;
1094
1095   $main::lxdebug->leave_sub();
1096 }
1097
1098 sub update_stock_in {
1099   $main::lxdebug->enter_sub();
1100
1101   my $form     = $main::form;
1102   my %myconfig = %main::myconfig;
1103
1104   my $stock_info = [];
1105
1106   foreach my $i (1..$form->{rowcount}) {
1107     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1108     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1109   }
1110
1111   display_stock_in_form($stock_info);
1112
1113   $main::lxdebug->leave_sub();
1114 }
1115
1116 sub stock_in_form {
1117   $main::lxdebug->enter_sub();
1118
1119   my $form     = $main::form;
1120
1121   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1122
1123   display_stock_in_form($stock_info);
1124
1125   $main::lxdebug->leave_sub();
1126 }
1127
1128 sub display_stock_in_form {
1129   $main::lxdebug->enter_sub();
1130
1131   my $stock_info = shift;
1132
1133   my $form     = $main::form;
1134   my %myconfig = %main::myconfig;
1135   my $locale   = $main::locale;
1136
1137   $form->{jsscript} = 1;
1138
1139   $form->{title} = $locale->text('Stock');
1140
1141   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1142
1143   my $units      = AM->retrieve_units(\%myconfig, $form);
1144   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
1145   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
1146
1147   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1148                                      'bins'   => 'BINS' });
1149
1150   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1151
1152   get_basic_bin_wh_info($stock_info);
1153
1154   $form->header(no_layout => 1);
1155   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1156                                                          'STOCK_INFO' => $stock_info,
1157                                                          'PART_INFO'  => $part_info, });
1158
1159   $main::lxdebug->leave_sub();
1160 }
1161
1162 sub _stock_in_out_set_qty_display {
1163   my $stock_info       = shift;
1164   my $form             = $::form;
1165   my $all_units        = AM->retrieve_all_units();
1166   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1167   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
1168                                                     part_unit   => $form->{partunit},
1169                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
1170                                                     conv_units  => 'convertible_not_smaller',
1171                                                     max_places  => 2);
1172 }
1173
1174 sub set_stock_in {
1175   $main::lxdebug->enter_sub();
1176
1177   my $form     = $main::form;
1178   my %myconfig = %main::myconfig;
1179
1180   my $stock_info = [];
1181
1182   foreach my $i (1..$form->{rowcount}) {
1183     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1184
1185     next if ($form->{"qty_$i"} <= 0);
1186
1187     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
1188   }
1189
1190   $form->{stock} = YAML::Dump($stock_info);
1191
1192   _stock_in_out_set_qty_display($stock_info);
1193
1194   my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1195   my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1196
1197   $form->header();
1198   print $form->parse_html_template('do/set_stock_in_out', {
1199     qty_matches => $do_qty == $transfer_qty,
1200   });
1201
1202   $main::lxdebug->leave_sub();
1203 }
1204
1205 sub stock_out_form {
1206   $main::lxdebug->enter_sub();
1207
1208   my $form     = $main::form;
1209   my %myconfig = %main::myconfig;
1210   my $locale   = $main::locale;
1211
1212   $form->{title} = $locale->text('Release From Stock');
1213
1214   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1215
1216   my $units      = AM->retrieve_units(\%myconfig, $form);
1217   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1218
1219   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1220
1221   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1222
1223   if (!$form->{delivered}) {
1224     foreach my $row (@contents) {
1225       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1226                                                          'part_unit'   => $part_info->{unit},
1227                                                          'conv_units'  => 'convertible_not_smaller',
1228                                                          'max_places'  => 2);
1229
1230       foreach my $sinfo (@{ $stock_info }) {
1231         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1232                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1233                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1234                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1235
1236         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
1237       }
1238     }
1239
1240   } else {
1241     get_basic_bin_wh_info($stock_info);
1242
1243     foreach my $sinfo (@{ $stock_info }) {
1244       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1245     }
1246   }
1247
1248   $form->header(no_layout => 1);
1249   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1250                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1251                                                           'PART_INFO'  => $part_info, });
1252
1253   $main::lxdebug->leave_sub();
1254 }
1255
1256 sub set_stock_out {
1257   $main::lxdebug->enter_sub();
1258
1259   my $form     = $main::form;
1260   my %myconfig = %main::myconfig;
1261   my $locale   = $main::locale;
1262
1263   my $stock_info = [];
1264
1265   foreach my $i (1 .. $form->{rowcount}) {
1266     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1267
1268     next if ($form->{"qty_$i"} <= 0);
1269
1270     push @{ $stock_info }, {
1271       'warehouse_id' => $form->{"warehouse_id_$i"},
1272       'bin_id'       => $form->{"bin_id_$i"},
1273       'chargenumber' => $form->{"chargenumber_$i"},
1274       'bestbefore'   => $form->{"bestbefore_$i"},
1275       'qty'          => $form->{"qty_$i"},
1276       'unit'         => $form->{"unit_$i"},
1277       'row'          => $i,
1278     };
1279   }
1280
1281   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1282                                                 'parts_id' => $form->{parts_id});
1283
1284   $form->{stock} = YAML::Dump($stock_info);
1285
1286   if (@errors) {
1287     $form->{ERRORS} = [];
1288     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1289     stock_in_out_form();
1290
1291   } else {
1292     _stock_in_out_set_qty_display($stock_info);
1293
1294     my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1295     my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1296
1297     $form->header();
1298     print $form->parse_html_template('do/set_stock_in_out', {
1299       qty_matches => $do_qty == $transfer_qty,
1300     });
1301   }
1302
1303   $main::lxdebug->leave_sub();
1304 }
1305
1306 sub transfer_in {
1307   $main::lxdebug->enter_sub();
1308
1309   my $form     = $main::form;
1310   my %myconfig = %main::myconfig;
1311   my $locale   = $main::locale;
1312
1313   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1314     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1315   }
1316
1317   save(no_redirect => 1);
1318
1319   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1320   my @all_requests;
1321
1322   if (@part_ids) {
1323     my $units         = AM->retrieve_units(\%myconfig, $form);
1324     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1325     my %request_map;
1326
1327     $form->{ERRORS}   = [];
1328
1329     foreach my $i (1 .. $form->{rowcount}) {
1330       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1331
1332       my $row_sum_base_qty = 0;
1333       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1334
1335       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1336         $request->{parts_id}  = $form->{"id_$i"};
1337         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
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_in mark_closed save_as_new invoice delete)) {
1524     if ($form->{"action_${action}"}) {
1525       call_sub($action);
1526       return;
1527     }
1528   }
1529
1530   $form->error($locale->text('No action defined.'));
1531 }