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