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