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