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