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