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