item_selected: Multiselect bzw. Mengeneingabe beim Artikelselektor
[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_sorted(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 autocomplete_customer autocomplete_part));
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, pre_entered_qty => $form->{"qty_$i"});
423         ::end_of_request();
424
425       } else {
426
427         my $sellprice = $form->parse_amount(\%myconfig, $form->{"sellprice_$i"});
428
429         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
430
431         $form->{"marge_price_factor_$i"} = $form->{item_list}->[0]->{price_factor};
432
433         if ($sellprice) {
434           $form->{"sellprice_$i"} = $sellprice;
435         } else {
436           my $record        = _make_record();
437           my $price_source  = SL::PriceSource->new(record_item => $record->items->[$i-1], record => $record);
438           my $best_price    = $price_source->best_price;
439           my $best_discount = $price_source->best_discount;
440
441           if ($best_price) {
442             $::form->{"sellprice_$i"}           = $best_price->price;
443             $::form->{"active_price_source_$i"} = $best_price->source;
444           }
445           if ($best_discount) {
446             $::form->{"discount_$i"}               = $best_discount->discount;
447             $::form->{"active_discount_source_$i"} = $best_discount->source;
448           }
449         }
450
451         $form->{"sellprice_$i"}          = $form->format_amount(\%myconfig, $form->{"sellprice_$i"});
452         $form->{"lastcost_$i"}           = $form->format_amount(\%myconfig, $form->{"lastcost_$i"});
453         $form->{"qty_$i"}                = $form->format_amount(\%myconfig, $form->{"qty_$i"});
454       }
455
456       display_form();
457
458     } else {
459
460       # ok, so this is a new part
461       # ask if it is a part or service item
462
463       if (   $form->{"partsgroup_$i"}
464           && ($form->{"partsnumber_$i"} eq "")
465           && ($form->{"description_$i"} eq "")) {
466         $form->{rowcount}--;
467         $form->{"discount_$i"} = "";
468         $form->{"not_discountable_$i"} = "";
469         display_form();
470
471       } else {
472         $form->{"id_$i"}   = 0;
473         new_item();
474       }
475     }
476   }
477
478   $main::lxdebug->leave_sub();
479 }
480
481 sub search {
482   $main::lxdebug->enter_sub();
483
484   check_do_access();
485
486   my $form     = $main::form;
487   my %myconfig = %main::myconfig;
488   my $locale   = $main::locale;
489
490   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
491
492   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
493                                        "all" => 1 },
494                    "departments"  => "ALL_DEPARTMENTS",
495                    "$form->{vc}s" => "ALL_VC");
496   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
497
498   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
499   $form->{title}             = $locale->text('Delivery Orders');
500
501   $form->header();
502
503   print $form->parse_html_template('do/search');
504
505   $main::lxdebug->leave_sub();
506 }
507
508 sub orders {
509   $main::lxdebug->enter_sub();
510
511   check_do_access();
512
513   my $form     = $main::form;
514   my %myconfig = %main::myconfig;
515   my $locale   = $main::locale;
516   my $cgi      = $::request->{cgi};
517
518   $form->{department_id} = (split /--/, $form->{department})[-1];
519   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
520
521   report_generator_set_default_sort('transdate', 1);
522
523   DO->transactions();
524
525   $form->{rowcount} = scalar @{ $form->{DO} };
526
527   my @columns = qw(
528     ids                     transdate               reqdate
529     id                      donumber
530     ordnumber               customernumber          cusordnumber
531     name                    employee  salesman
532     shipvia                 globalprojectnumber
533     transaction_description department
534     open                    delivered
535   );
536
537   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
538   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
539
540   $form->{title}       = $locale->text('Delivery Orders');
541
542   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
543
544   my $report = SL::ReportGenerator->new(\%myconfig, $form);
545
546   my @hidden_variables = map { "l_${_}" } @columns;
547   push @hidden_variables, $form->{vc}, qw(l_closed l_notdelivered open closed delivered notdelivered donumber ordnumber serialnumber cusordnumber
548                                           transaction_description transdatefrom transdateto reqdatefrom reqdateto
549                                           type vc employee_id salesman_id project_id);
550
551   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
552
553   my %column_defs = (
554     'ids'                     => { 'text' => '', },
555     'transdate'               => { 'text' => $locale->text('Delivery Order Date'), },
556     'reqdate'                 => { 'text' => $locale->text('Reqdate'), },
557     'id'                      => { 'text' => $locale->text('ID'), },
558     'donumber'                => { 'text' => $locale->text('Delivery Order'), },
559     'ordnumber'               => { 'text' => $locale->text('Order'), },
560     'customernumber'          => { 'text' => $locale->text('Customer Number'), },
561     'cusordnumber'            => { 'text' => $locale->text('Customer Order Number'), },
562     'name'                    => { 'text' => $form->{vc} eq 'customer' ? $locale->text('Customer') : $locale->text('Vendor'), },
563     'employee'                => { 'text' => $locale->text('Employee'), },
564     'salesman'                => { 'text' => $locale->text('Salesman'), },
565     'shipvia'                 => { 'text' => $locale->text('Ship via'), },
566     'globalprojectnumber'     => { 'text' => $locale->text('Project Number'), },
567     'transaction_description' => { 'text' => $locale->text('Transaction description'), },
568     'open'                    => { 'text' => $locale->text('Open'), },
569     'delivered'               => { 'text' => $locale->text('Delivered'), },
570     'department'              => { 'text' => $locale->text('Department'), },
571   );
572
573   foreach my $name (qw(id transdate reqdate donumber ordnumber name employee salesman shipvia transaction_description department)) {
574     my $sortdir                 = $form->{sort} eq $name ? 1 - $form->{sortdir} : $form->{sortdir};
575     $column_defs{$name}->{link} = $href . "&sort=$name&sortdir=$sortdir";
576   }
577
578   $form->{"l_type"} = "Y";
579   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
580
581   $column_defs{ids}->{visible} = 'HTML';
582
583   $report->set_columns(%column_defs);
584   $report->set_column_order(@columns);
585
586   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
587
588   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
589
590   my @options;
591   if ($form->{customer}) {
592     push @options, $locale->text('Customer') . " : $form->{customer}";
593   }
594   if ($form->{vendor}) {
595     push @options, $locale->text('Vendor') . " : $form->{vendor}";
596   }
597   if ($form->{cp_name}) {
598     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
599   }
600   if ($form->{department}) {
601     my ($department) = split /--/, $form->{department};
602     push @options, $locale->text('Department') . " : $department";
603   }
604   if ($form->{donumber}) {
605     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
606   }
607   if ($form->{ordnumber}) {
608     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
609   }
610   push @options, $locale->text('Serial Number') . " : $form->{serialnumber}" if $form->{serialnumber};
611   if ($form->{transaction_description}) {
612     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
613   }
614   if ( $form->{transdatefrom} or $form->{transdateto} ) {
615     push @options, $locale->text('Delivery Order Date');
616     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)     if $form->{transdatefrom};
617     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)     if $form->{transdateto};
618   };
619   if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
620     push @options, $locale->text('Reqdate');
621     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1)       if $form->{reqdatefrom};
622     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{reqdateto},   1)       if $form->{reqdateto};
623   };
624   if ($form->{open}) {
625     push @options, $locale->text('Open');
626   }
627   if ($form->{closed}) {
628     push @options, $locale->text('Closed');
629   }
630   if ($form->{delivered}) {
631     push @options, $locale->text('Delivered');
632   }
633   if ($form->{notdelivered}) {
634     push @options, $locale->text('Not delivered');
635   }
636
637   $report->set_options('top_info_text'        => join("\n", @options),
638                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
639                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
640                        'output_format'        => 'HTML',
641                        'title'                => $form->{title},
642                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
643     );
644   $report->set_options_from_form();
645   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
646
647   # add sort and escape callback, this one we use for the add sub
648   $form->{callback} = $href .= "&sort=$form->{sort}";
649
650   # escape callback for href
651   my $callback = $form->escape($href);
652
653   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
654   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
655
656   my $idx            = 1;
657
658   foreach my $dord (@{ $form->{DO} }) {
659     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
660     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
661
662     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
663
664     $row->{ids}  = {
665       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
666                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
667       'valign'   => 'center',
668       'align'    => 'center',
669     };
670
671     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
672     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}" if $dord->{oe_id};
673     $report->add_data($row);
674
675     $idx++;
676   }
677
678   $report->generate_with_headers();
679
680   $main::lxdebug->leave_sub();
681 }
682
683 sub save {
684   $main::lxdebug->enter_sub();
685
686   my (%params) = @_;
687
688   check_do_access();
689
690   my $form     = $main::form;
691   my %myconfig = %main::myconfig;
692   my $locale   = $main::locale;
693
694   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
695
696   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
697
698   $form->{donumber} =~ s/^\s*//g;
699   $form->{donumber} =~ s/\s*$//g;
700
701   my $msg = ucfirst $form->{vc};
702   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
703
704   # $locale->text('Customer missing!');
705   # $locale->text('Vendor missing!');
706
707   remove_emptied_rows();
708   validate_items();
709
710   # if the name changed get new values
711   if (check_name($form->{vc})) {
712     update();
713     ::end_of_request();
714   }
715
716   $form->{id} = 0 if $form->{saveasnew};
717
718   DO->save();
719   # saving the history
720   if(!exists $form->{addition}) {
721     $form->{snumbers} = qq|donumber_| . $form->{donumber};
722     $form->{addition} = "SAVED";
723     $form->save_history;
724   }
725   # /saving the history
726
727   $form->{simple_save} = 1;
728   if (!$params{no_redirect} && !$form->{print_and_save}) {
729     delete @{$form}{ary_diff([keys %{ $form }], [qw(login id script type cursor_fokus)])};
730     edit();
731     ::end_of_request();
732   }
733   $main::lxdebug->leave_sub();
734 }
735
736 sub delete {
737   $main::lxdebug->enter_sub();
738
739   check_do_access();
740
741   my $form     = $main::form;
742   my %myconfig = %main::myconfig;
743   my $locale   = $main::locale;
744
745   if (DO->delete()) {
746     # saving the history
747     if(!exists $form->{addition}) {
748       $form->{snumbers} = qq|donumber_| . $form->{donumber};
749       $form->{addition} = "DELETED";
750       $form->save_history;
751     }
752     # /saving the history
753
754     $form->info($locale->text('Delivery Order deleted!'));
755     ::end_of_request();
756   }
757
758   $form->error($locale->text('Cannot delete delivery order!'));
759
760   $main::lxdebug->leave_sub();
761 }
762
763 sub invoice {
764   $main::lxdebug->enter_sub();
765
766   my $form     = $main::form;
767   my %myconfig = %main::myconfig;
768   my $locale   = $main::locale;
769
770   check_do_access();
771   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
772
773   $form->{convert_from_do_ids} = $form->{id};
774   $form->{deliverydate}        = $form->{transdate};
775   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
776   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
777   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
778
779   $form->{rowcount}--;
780
781   delete @{$form}{qw(id closed delivered)};
782
783   my ($script, $buysell);
784   if ($form->{type} eq 'purchase_delivery_order') {
785     $form->{title}  = $locale->text('Add Vendor Invoice');
786     $form->{script} = 'ir.pl';
787     $script         = "ir";
788     $buysell        = 'sell';
789
790   } else {
791     $form->{title}  = $locale->text('Add Sales Invoice');
792     $form->{script} = 'is.pl';
793     $script         = "is";
794     $buysell        = 'buy';
795   }
796
797   for my $i (1 .. $form->{rowcount}) {
798     # für bug 1284
799     unless ($form->{"ordnumber"}) {
800       if ($form->{discount}) { # Falls wir einen Lieferanten-/Kundenrabatt haben
801         # und rabattfähig sind, dann
802         unless ($form->{"not_discountable_$i"}) {
803           $form->{"discount_$i"} = $form->{discount}*100; # ... nehmen wir diesen Rabatt
804         }
805       }
806     }
807     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
808     $form->{"donumber_$i"} = $form->{donumber};
809     $form->{"converted_from_delivery_order_items_id_$i"} = delete $form->{"delivery_order_items_id_$i"};
810   }
811
812   $form->{type} = "invoice";
813
814   # locale messages
815   $main::locale = new Locale "$myconfig{countrycode}", "$script";
816   $locale = $main::locale;
817
818   require "bin/mozilla/$form->{script}";
819
820   my $currency = $form->{currency};
821   invoice_links();
822
823   if ($form->{ordnumber}) {
824     require SL::DB::Order;
825     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
826       $order->load;
827       $form->{orddate} = $order->transdate_as_date;
828       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
829     }
830   }
831
832   $form->{currency}     = $currency;
833   $form->{exchangerate} = "";
834   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
835   $form->{exchangerate} = $form->{forex} if ($form->{forex});
836
837   prepare_invoice();
838
839   # format amounts
840   for my $i (1 .. $form->{rowcount}) {
841     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
842
843     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
844     $dec           = length $dec;
845     my $decimalplaces = ($dec > 2) ? $dec : 2;
846
847     # copy delivery date from reqdate for order -> invoice conversion
848     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
849       unless $form->{"deliverydate_$i"};
850
851
852     $form->{"sellprice_$i"} =
853       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
854                            $decimalplaces);
855
856     $form->{"lastcost_$i"} =
857       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
858                            $decimalplaces);
859
860     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
861     $dec_qty = length $dec_qty;
862     $form->{"qty_$i"} =
863       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
864
865   }
866
867   display_form();
868
869   $main::lxdebug->leave_sub();
870 }
871
872 sub invoice_multi {
873   $main::lxdebug->enter_sub();
874
875   my $form     = $main::form;
876   my %myconfig = %main::myconfig;
877   my $locale   = $main::locale;
878
879   check_do_access();
880   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
881
882   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
883
884   if (!scalar @do_ids) {
885     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
886   }
887
888   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
889
890   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
891     $form->show_generic_error($form->{vc} eq 'customer' ?
892                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
893                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
894                               'back_button' => 1);
895   }
896
897   my $source_type              = $form->{type};
898   $form->{convert_from_do_ids} = join ' ', @do_ids;
899   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
900   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
901   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
902   # $shell: perldoc perlunc; /delete EXPR
903   $form->{donumber}            = delete $form->{donumber_array};
904   $form->{ordnumber}           = delete $form->{ordnumber_array};
905   $form->{cusordnumber}        = delete $form->{cusordnumber_array};
906   $form->{deliverydate}        = $form->{transdate};
907   $form->{transdate}           = $form->current_date(\%myconfig);
908   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
909   $form->{type}                = "invoice";
910   $form->{closed}              = 0;
911   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
912
913   my ($script, $buysell);
914   if ($source_type eq 'purchase_delivery_order') {
915     $form->{title}  = $locale->text('Add Vendor Invoice');
916     $form->{script} = 'ir.pl';
917     $script         = "ir";
918     $buysell        = 'sell';
919
920   } else {
921     $form->{title}  = $locale->text('Add Sales Invoice');
922     $form->{script} = 'is.pl';
923     $script         = "is";
924     $buysell        = 'buy';
925   }
926
927   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
928
929   # get vendor or customer discount
930   my $vc_discount;
931   my $saved_form = save_form();
932   if ($form->{vc} eq 'vendor') {
933     IR->get_vendor(\%myconfig, \%$form);
934     $vc_discount = $form->{vendor_discount};
935   } else {
936     IS->get_customer(\%myconfig, \%$form);
937     $vc_discount = $form->{customer_discount};
938   }
939   restore_form($saved_form);
940
941   $form->{rowcount} = 0;
942   foreach my $ref (@{ $form->{form_details} }) {
943     $form->{rowcount}++;
944     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
945     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
946     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
947     $form->{"converted_from_delivery_order_items_id_$form->{rowcount}"} = delete $form->{"delivery_order_items_id_$form->{rowcount}"};
948
949     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
950       # und keinen anderen discount wert an $i ...
951       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
952     }
953
954     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
955     # Anm.: Eine Änderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
956     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
957
958     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
959   }
960   delete $form->{form_details};
961
962   $locale = new Locale "$myconfig{countrycode}", "$script";
963
964   require "bin/mozilla/$form->{script}";
965
966   invoice_links();
967   prepare_invoice();
968
969   display_form();
970
971   $main::lxdebug->leave_sub();
972 }
973
974 sub save_as_new {
975   $main::lxdebug->enter_sub();
976
977   check_do_access();
978
979   my $form     = $main::form;
980
981   $form->{saveasnew} = 1;
982   $form->{closed}    = 0;
983   $form->{delivered} = 0;
984   map { delete $form->{$_} } qw(printed emailed queued);
985   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
986   $form->{"converted_from_delivery_order_items_id_$_"} = delete $form->{"delivery_order_items_id_$_"} for 1 .. $form->{"rowcount"};
987   # Let kivitendo assign a new order number if the user hasn't changed the
988   # previous one. If it has been changed manually then use it as-is.
989   $form->{donumber} =~ s/^\s*//g;
990   $form->{donumber} =~ s/\s*$//g;
991   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
992     delete($form->{donumber});
993   }
994
995   save();
996
997   $main::lxdebug->leave_sub();
998 }
999
1000 sub e_mail {
1001   $main::lxdebug->enter_sub();
1002
1003   check_do_access();
1004
1005   my $form     = $main::form;
1006
1007   $form->{print_and_save} = 1;
1008
1009   my $saved_form = save_form();
1010
1011   save();
1012
1013   restore_form($saved_form, 0, qw(id ordnumber quonumber));
1014
1015   edit_e_mail();
1016
1017   $main::lxdebug->leave_sub();
1018 }
1019
1020 sub calculate_stock_in_out {
1021   $main::lxdebug->enter_sub();
1022
1023   my $form     = $main::form;
1024
1025   my $i = shift;
1026
1027   if (!$form->{"id_${i}"}) {
1028     $main::lxdebug->leave_sub();
1029     return '';
1030   }
1031
1032   my $all_units = AM->retrieve_all_units();
1033
1034   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
1035   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
1036
1037   my $do_qty   = AM->sum_with_unit($::form->{"qty_$i"}, $::form->{"unit_$i"});
1038   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
1039   my $matches  = $do_qty == $sum;
1040
1041   my $content  = $form->format_amount_units('amount'      => $sum * 1,
1042                                             'part_unit'   => $form->{"partunit_$i"},
1043                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
1044                                             'conv_units'  => 'convertible_not_smaller',
1045                                             'max_places'  => 2);
1046   $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="?">|;
1047
1048   $main::lxdebug->leave_sub();
1049
1050   return $content;
1051 }
1052
1053 sub get_basic_bin_wh_info {
1054   $main::lxdebug->enter_sub();
1055
1056   my $stock_info = shift;
1057
1058   my $form     = $main::form;
1059
1060   foreach my $sinfo (@{ $stock_info }) {
1061     next unless ($sinfo->{bin_id});
1062
1063     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
1064     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
1065   }
1066
1067   $main::lxdebug->leave_sub();
1068 }
1069
1070 sub stock_in_out_form {
1071   $main::lxdebug->enter_sub();
1072
1073   my $form     = $main::form;
1074
1075   if ($form->{in_out} eq 'out') {
1076     stock_out_form();
1077   } else {
1078     stock_in_form();
1079   }
1080
1081   $main::lxdebug->leave_sub();
1082 }
1083
1084 sub redo_stock_info {
1085   $main::lxdebug->enter_sub();
1086
1087   my %params    = @_;
1088
1089   my $form     = $main::form;
1090
1091   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
1092
1093   if ($params{add_empty_row}) {
1094     push @non_empty, {
1095       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
1096       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
1097     };
1098   }
1099
1100   @{ $params{stock_info} } = @non_empty;
1101
1102   $main::lxdebug->leave_sub();
1103 }
1104
1105 sub update_stock_in {
1106   $main::lxdebug->enter_sub();
1107
1108   my $form     = $main::form;
1109   my %myconfig = %main::myconfig;
1110
1111   my $stock_info = [];
1112
1113   foreach my $i (1..$form->{rowcount}) {
1114     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1115     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber
1116                                                                    bestbefore qty unit delivery_order_items_stock_id) };
1117   }
1118
1119   display_stock_in_form($stock_info);
1120
1121   $main::lxdebug->leave_sub();
1122 }
1123
1124 sub stock_in_form {
1125   $main::lxdebug->enter_sub();
1126
1127   my $form     = $main::form;
1128
1129   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1130
1131   display_stock_in_form($stock_info);
1132
1133   $main::lxdebug->leave_sub();
1134 }
1135
1136 sub display_stock_in_form {
1137   $main::lxdebug->enter_sub();
1138
1139   my $stock_info = shift;
1140
1141   my $form     = $main::form;
1142   my %myconfig = %main::myconfig;
1143   my $locale   = $main::locale;
1144
1145   $form->{title} = $locale->text('Stock');
1146
1147   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1148
1149   # Standardlagerplatz für Standard-Auslagern verwenden, falls keiner für die Ware explizit definiert wurde
1150   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
1151     $part_info->{warehouse_id} ||= $::instance_conf->get_warehouse_id;
1152     $part_info->{bin_id}       ||= $::instance_conf->get_bin_id;
1153   }
1154
1155   my $units      = AM->retrieve_units(\%myconfig, $form);
1156   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
1157   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
1158
1159   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
1160                                      'bins'   => 'BINS' });
1161
1162   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
1163
1164   get_basic_bin_wh_info($stock_info);
1165
1166   $form->header(no_layout => 1);
1167   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
1168                                                          'STOCK_INFO' => $stock_info,
1169                                                          'PART_INFO'  => $part_info, });
1170
1171   $main::lxdebug->leave_sub();
1172 }
1173
1174 sub _stock_in_out_set_qty_display {
1175   my $stock_info       = shift;
1176   my $form             = $::form;
1177   my $all_units        = AM->retrieve_all_units();
1178   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1179   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
1180                                                     part_unit   => $form->{partunit},
1181                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
1182                                                     conv_units  => 'convertible_not_smaller',
1183                                                     max_places  => 2);
1184 }
1185
1186 sub set_stock_in {
1187   $main::lxdebug->enter_sub();
1188
1189   my $form     = $main::form;
1190   my %myconfig = %main::myconfig;
1191
1192   my $stock_info = [];
1193
1194   foreach my $i (1..$form->{rowcount}) {
1195     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1196
1197     next if ($form->{"qty_$i"} <= 0);
1198
1199     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(delivery_order_items_stock_id warehouse_id bin_id chargenumber bestbefore qty unit) };
1200   }
1201
1202   $form->{stock} = YAML::Dump($stock_info);
1203
1204   _stock_in_out_set_qty_display($stock_info);
1205
1206   my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1207   my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1208
1209   $form->header();
1210   print $form->parse_html_template('do/set_stock_in_out', {
1211     qty_matches => $do_qty == $transfer_qty,
1212   });
1213
1214   $main::lxdebug->leave_sub();
1215 }
1216
1217 sub stock_out_form {
1218   $main::lxdebug->enter_sub();
1219
1220   my $form     = $main::form;
1221   my %myconfig = %main::myconfig;
1222   my $locale   = $main::locale;
1223
1224   $form->{title} = $locale->text('Release From Stock');
1225
1226   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
1227
1228   my $units      = AM->retrieve_units(\%myconfig, $form);
1229   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
1230
1231   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
1232
1233   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
1234
1235   if (!$form->{delivered}) {
1236     foreach my $row (@contents) {
1237       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
1238                                                          'part_unit'   => $part_info->{unit},
1239                                                          'conv_units'  => 'convertible_not_smaller',
1240                                                          'max_places'  => 2);
1241
1242       foreach my $sinfo (@{ $stock_info }) {
1243         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1244                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1245                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1246                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1247
1248         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error delivery_order_items_stock_id);
1249       }
1250     }
1251
1252   } else {
1253     get_basic_bin_wh_info($stock_info);
1254
1255     foreach my $sinfo (@{ $stock_info }) {
1256       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
1257     }
1258   }
1259
1260   $form->header(no_layout => 1);
1261   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
1262                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
1263                                                           'PART_INFO'  => $part_info, });
1264
1265   $main::lxdebug->leave_sub();
1266 }
1267
1268 sub set_stock_out {
1269   $main::lxdebug->enter_sub();
1270
1271   my $form     = $main::form;
1272   my %myconfig = %main::myconfig;
1273   my $locale   = $main::locale;
1274
1275   my $stock_info = [];
1276
1277   foreach my $i (1 .. $form->{rowcount}) {
1278     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
1279
1280     next if ($form->{"qty_$i"} <= 0);
1281
1282     push @{ $stock_info }, {
1283       'warehouse_id' => $form->{"warehouse_id_$i"},
1284       'bin_id'       => $form->{"bin_id_$i"},
1285       'chargenumber' => $form->{"chargenumber_$i"},
1286       'bestbefore'   => $form->{"bestbefore_$i"},
1287       'qty'          => $form->{"qty_$i"},
1288       'unit'         => $form->{"unit_$i"},
1289       'row'          => $i,
1290       'delivery_order_items_stock_id'  => $form->{"delivery_order_items_stock_id_$i"},
1291     };
1292   }
1293
1294   my @errors     = DO->check_stock_availability('requests' => $stock_info,
1295                                                 'parts_id' => $form->{parts_id});
1296
1297   $form->{stock} = YAML::Dump($stock_info);
1298
1299   if (@errors) {
1300     $form->{ERRORS} = [];
1301     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
1302     stock_in_out_form();
1303
1304   } else {
1305     _stock_in_out_set_qty_display($stock_info);
1306
1307     my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
1308     my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
1309
1310     $form->header();
1311     print $form->parse_html_template('do/set_stock_in_out', {
1312       qty_matches => $do_qty == $transfer_qty,
1313     });
1314   }
1315
1316   $main::lxdebug->leave_sub();
1317 }
1318
1319 sub transfer_in {
1320   $main::lxdebug->enter_sub();
1321
1322   my $form     = $main::form;
1323   my %myconfig = %main::myconfig;
1324   my $locale   = $main::locale;
1325
1326   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1327     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
1328   }
1329
1330   save(no_redirect => 1);
1331
1332   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
1333   my @all_requests;
1334
1335   if (@part_ids) {
1336     my $units         = AM->retrieve_units(\%myconfig, $form);
1337     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1338     my %request_map;
1339
1340     $form->{ERRORS}   = [];
1341
1342     foreach my $i (1 .. $form->{rowcount}) {
1343       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
1344
1345       my $row_sum_base_qty = 0;
1346       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1347
1348       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
1349         $request->{parts_id}  = $form->{"id_$i"};
1350         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1351
1352         $request->{project_id} = $form->{"project_id_$i"} || $form->{globalproject_id};
1353
1354         push @all_requests, $request;
1355       }
1356
1357       next if (0 == $row_sum_base_qty);
1358
1359       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1360
1361 #      if ($do_base_qty != $row_sum_base_qty) {
1362 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
1363 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1364 #      }
1365     }
1366
1367     if (@{ $form->{ERRORS} }) {
1368       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1369
1370       set_headings('edit');
1371       update();
1372       $main::lxdebug->leave_sub();
1373
1374       ::end_of_request();
1375     }
1376   }
1377
1378   DO->transfer_in_out('direction' => 'in',
1379                       'requests'  => \@all_requests);
1380
1381   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1382
1383   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id});
1384   $form->redirect;
1385
1386   $main::lxdebug->leave_sub();
1387 }
1388
1389 sub transfer_out {
1390   $main::lxdebug->enter_sub();
1391
1392   my $form     = $main::form;
1393   my %myconfig = %main::myconfig;
1394   my $locale   = $main::locale;
1395
1396   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
1397     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
1398   }
1399
1400   save(no_redirect => 1);
1401
1402   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
1403   my @all_requests;
1404
1405   if (@part_ids) {
1406     my $units         = AM->retrieve_units(\%myconfig, $form);
1407     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1408     my %request_map;
1409
1410     $form->{ERRORS}   = [];
1411
1412     foreach my $i (1 .. $form->{rowcount}) {
1413       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
1414
1415       my $row_sum_base_qty = 0;
1416       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1417
1418       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
1419         $request->{parts_id} = $form->{"id_$i"};
1420         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
1421         $request->{project_id} = $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id};
1422
1423         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
1424
1425         $request_map{$map_key}                 ||= $request;
1426         $request_map{$map_key}->{sum_base_qty} ||= 0;
1427         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
1428         $row_sum_base_qty                       += $request->{base_qty};
1429
1430         push @all_requests, $request;
1431       }
1432
1433       next if (0 == $row_sum_base_qty);
1434
1435       my $do_base_qty = $form->{"qty_$i"} * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1436
1437 #      if ($do_base_qty != $row_sum_base_qty) {
1438 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
1439 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
1440 #      }
1441     }
1442
1443     if (%request_map) {
1444       my @bin_ids      = map { $_->{bin_id} } values %request_map;
1445       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
1446       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
1447
1448       foreach my $inv (@contents) {
1449         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
1450
1451         next unless ($request_map{$map_key});
1452
1453         my $request    = $request_map{$map_key};
1454         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
1455       }
1456
1457       foreach my $request (values %request_map) {
1458         next if ($request->{ok});
1459
1460         my $pinfo = $part_info_map{$request->{parts_id}};
1461         my $binfo = $bin_info_map{$request->{bin_id}};
1462
1463         if ($::instance_conf->get_show_bestbefore) {
1464             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
1465                                                      $pinfo->{description},
1466                                                      $binfo->{warehouse_description},
1467                                                      $binfo->{bin_description},
1468                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1469                                                      $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
1470                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1471                                                                                 'part_unit'   => $pinfo->{unit},
1472                                                                                 'conv_units'  => 'convertible_not_smaller'));
1473         } else {
1474             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
1475                                                      $pinfo->{description},
1476                                                      $binfo->{warehouse_description},
1477                                                      $binfo->{bin_description},
1478                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
1479                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
1480                                                                                 'part_unit'   => $pinfo->{unit},
1481                                                                                 'conv_units'  => 'convertible_not_smaller'));
1482         }
1483       }
1484     }
1485
1486     if (@{ $form->{ERRORS} }) {
1487       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
1488
1489       set_headings('edit');
1490       update();
1491       $main::lxdebug->leave_sub();
1492
1493       ::end_of_request();
1494     }
1495   }
1496   DO->transfer_in_out('direction' => 'out',
1497                       'requests'  => \@all_requests);
1498
1499   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1500
1501   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id});
1502   $form->redirect;
1503
1504   $main::lxdebug->leave_sub();
1505 }
1506
1507 sub mark_closed {
1508   $main::lxdebug->enter_sub();
1509
1510   my $form     = $main::form;
1511
1512   DO->close_orders('ids' => [ $form->{id} ]);
1513
1514   $form->{closed} = 1;
1515
1516   update();
1517
1518   $main::lxdebug->leave_sub();
1519 }
1520
1521
1522 sub yes {
1523   call_sub($main::form->{yes_nextsub});
1524 }
1525
1526 sub no {
1527   call_sub($main::form->{no_nextsub});
1528 }
1529
1530 sub update {
1531   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
1532 }
1533
1534 sub dispatcher {
1535   my $form     = $main::form;
1536   my $locale   = $main::locale;
1537
1538   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_out_default
1539                          transfer_in transfer_in_default mark_closed save_as_new invoice delete)) {
1540     if ($form->{"action_${action}"}) {
1541       call_sub($action);
1542       return;
1543     }
1544   }
1545
1546   $form->error($locale->text('No action defined.'));
1547 }
1548
1549 sub transfer_out_default {
1550   $main::lxdebug->enter_sub();
1551
1552   my $form     = $main::form;
1553
1554   transfer_in_out_default('direction' => 'out');
1555
1556   $main::lxdebug->leave_sub();
1557 }
1558
1559 sub transfer_in_default {
1560   $main::lxdebug->enter_sub();
1561
1562   my $form     = $main::form;
1563
1564   transfer_in_out_default('direction' => 'in');
1565
1566   $main::lxdebug->leave_sub();
1567 }
1568
1569 # Falls das Standardlagerverfahren aktiv ist, wird
1570 # geprüft, ob alle Standardlagerplätze für die Auslager-
1571 # artikel vorhanden sind UND ob die Warenmenge ausreicht zum
1572 # Auslagern. Falls nicht wird entsprechend eine Fehlermeldung
1573 # generiert. Offen Chargennummer / bestbefore wird nicht berücksichtigt
1574 sub transfer_in_out_default {
1575   $main::lxdebug->enter_sub();
1576
1577   my $form     = $main::form;
1578   my %myconfig = %main::myconfig;
1579   my $locale   = $main::locale;
1580   my %params   = @_;
1581
1582   my (%missing_default_bins, %qty_parts, @all_requests, %part_info_map, $default_warehouse_id, $default_bin_id);
1583
1584   Common::check_params(\%params, qw(direction));
1585
1586   # entsprechende defaults holen, falls standardlagerplatz verwendet werden soll
1587   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
1588     $default_warehouse_id = $::instance_conf->get_warehouse_id;
1589     $default_bin_id       = $::instance_conf->get_bin_id;
1590   }
1591
1592
1593   my @part_ids = map { $form->{"id_${_}"} } (1 .. $form->{rowcount});
1594   if (@part_ids) {
1595     my $units         = AM->retrieve_units(\%myconfig, $form);
1596     %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
1597     foreach my $i (1 .. $form->{rowcount}) {
1598       next unless ($form->{"id_$i"});
1599       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
1600       my $qty =   $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
1601
1602       $form->show_generic_error($locale->text("Cannot transfer negative entries." ), 'back_button' => 1) if ($qty < 0);
1603       # if we do not want to transfer services and this part is a service, set qty to zero
1604       # ... and do not create a hash entry in %qty_parts below (will skip check for bins for the transfer == out case)
1605       # ... 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)
1606
1607       $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});
1608       $qty_parts{$form->{"id_$i"}} += $qty;
1609       if ($qty == 0) {
1610         delete $qty_parts{$form->{"id_$i"}} unless $qty_parts{$form->{"id_$i"}};
1611         undef $form->{"stock_in_$i"};
1612       }
1613
1614       $part_info_map{$form->{"id_$i"}}{bin_id}       ||= $default_bin_id;
1615       $part_info_map{$form->{"id_$i"}}{warehouse_id} ||= $default_warehouse_id;
1616
1617       push @all_requests, ($qty == 0) ? { } : {
1618                         'chargenumber' => '',  #?? die müsste entsprechend geholt werden
1619                         #'bestbefore' => undef, # TODO wird nicht berücksichtigt
1620                         'bin_id' => $part_info_map{$form->{"id_$i"}}{bin_id},
1621                         'qty' => $qty,
1622                         'parts_id' => $form->{"id_$i"},
1623                         'comment' => $locale->text("Default transfer delivery order"),
1624                         'unit' => $part_info_map{$form->{"id_$i"}}{unit},
1625                         'warehouse_id' => $part_info_map{$form->{"id_$i"}}{warehouse_id},
1626                         'oe_id' => $form->{id},
1627                         'project_id' => $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id}
1628                       };
1629     }
1630
1631     # jetzt wird erst überprüft, ob die Stückzahl entsprechend stimmt.
1632     # check if bin (transfer in and transfer out and qty (transfer out) is correct
1633     foreach my $key (keys %qty_parts) {
1634
1635       $missing_default_bins{$key}{missing_bin} = 1 unless ($part_info_map{$key}{bin_id});
1636       next unless ($part_info_map{$key}{bin_id}); # abbruch
1637
1638       if ($params{direction} eq 'out') {  # wird nur für ausgehende Mengen benötigt
1639         my ($max_qty, $error) = WH->get_max_qty_parts_bin(parts_id => $key, bin_id => $part_info_map{$key}{bin_id});
1640         if ($error == 1) {
1641           # wir können nicht entscheiden, welche charge oder mhd (bestbefore) ausgewählt sein soll
1642           # deshalb rückmeldung nach oben geben, manuell auszulagern
1643           # TODO Bei nur einem Treffer mit Charge oder bestbefore wäre das noch möglich
1644           $missing_default_bins{$key}{chargenumber} = 1;
1645         }
1646         if ($max_qty < $qty_parts{$key}){
1647           $missing_default_bins{$key}{missing_qty} = $max_qty - $qty_parts{$key};
1648         }
1649       }
1650     }
1651   } # if @parts_id
1652
1653   # Abfrage für Fehlerbehandlung (nur bei direction == out)
1654   if (scalar (keys %missing_default_bins)) {
1655     my $fehlertext;
1656     foreach my $fehler (keys %missing_default_bins) {
1657
1658       my $ware = WH->get_part_description(parts_id => $fehler);
1659       if ($missing_default_bins{$fehler}{missing_bin}){
1660         $fehlertext .= "Kein Standardlagerplatz definiert bei $ware <br>";
1661       }
1662       if ($missing_default_bins{$fehler}{missing_qty}) {  # missing_qty
1663         $fehlertext .= "Es fehlen " . $missing_default_bins{$fehler}{missing_qty}*-1 .
1664                        " von $ware auf dem Standard-Lagerplatz " . $part_info_map{$fehler}{bin} .   " zum Auslagern<br>";
1665       }
1666       if ($missing_default_bins{$fehler}{chargenumber}){
1667         $fehlertext .= "Die Ware hat eine Chargennummer oder eine Mindesthaltbarkeit definiert.
1668                         Hier kann man nicht automatisch entscheiden.
1669                         Bitte diesen Lieferschein manuell auslagern.
1670                         Bei: $ware";
1671       }
1672       # auslagern soll immer gehen, auch wenn nicht genügend auf lager ist.
1673       # der lagerplatz ist hier extra konfigurierbar, bspw. Lager-Korrektur mit
1674       # Lagerplatz Lagerplatz-Korrektur
1675       my $default_warehouse_id_ignore_onhand = $::instance_conf->get_warehouse_id_ignore_onhand;
1676       my $default_bin_id_ignore_onhand       = $::instance_conf->get_bin_id_ignore_onhand;
1677       if ($::instance_conf->get_transfer_default_ignore_onhand && $default_bin_id_ignore_onhand) {
1678         # entsprechende defaults holen
1679         # falls chargenumber, bestbefore oder anzahl nicht stimmt, auf automatischen
1680         # lagerplatz wegbuchen!
1681         foreach (@all_requests) {
1682           if ($_->{parts_id} eq $fehler){
1683           $_->{bin_id}        = $default_bin_id_ignore_onhand;
1684           $_->{warehouse_id}  = $default_warehouse_id_ignore_onhand;
1685           }
1686         }
1687       } else {
1688         #$main::lxdebug->message(0, 'Fehlertext: ' . $fehlertext);
1689         $form->show_generic_error($locale->text("Cannot transfer. <br> Reason:<br>#1", $fehlertext ), 'back_button' => 1);
1690       }
1691     }
1692   }
1693
1694
1695   # hier der eigentliche fallunterschied für in oder out
1696   my $prefix   = $params{direction} eq 'in' ? 'in' : 'out';
1697
1698   # dieser array_ref ist für DO->save da:
1699   # einmal die all_requests in YAML verwandeln, damit delivery_order_items_stock
1700   # gefüllt werden kann.
1701   my $i = 0;
1702   foreach (@all_requests){
1703     $i++;
1704     next unless scalar(%{ $_ });
1705     $form->{"stock_${prefix}_$i"} = YAML::Dump([$_]);
1706   }
1707
1708   save(no_redirect => 1); # Wir können auslagern, deshalb beleg speichern
1709                           # und in delivery_order_items_stock speichern
1710   DO->transfer_in_out('direction' => $prefix,
1711                       'requests'  => \@all_requests);
1712
1713   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
1714
1715   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'out';
1716   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'in';
1717   $form->redirect;
1718
1719 }