1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 #=====================================================================
 
   8 # SQL-Ledger, Accounting
 
   9 # Copyright (c) 1998-2003
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  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.
 
  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 #======================================================================
 
  31 #======================================================================
 
  33 use List::MoreUtils qw(uniq);
 
  34 use List::Util qw(max sum);
 
  35 use POSIX qw(strftime);
 
  38 use SL::DB::DeliveryOrder;
 
  42 use SL::MoreCommon qw(ary_diff);
 
  43 use SL::ReportGenerator;
 
  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";
 
  58   $main::auth->assert($main::form->{type} . '_edit');
 
  62   $main::lxdebug->enter_sub();
 
  68   my $form     = $main::form;
 
  69   my $locale   = $main::locale;
 
  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');
 
  75     $form->{vc}    = 'customer';
 
  76     $form->{title} = $action eq "edit" ? $locale->text('Edit Sales Delivery Order') : $locale->text('Add Sales Delivery Order');
 
  79   $form->{heading} = $locale->text('Delivery Order');
 
  81   $main::lxdebug->leave_sub();
 
  85   $main::lxdebug->enter_sub();
 
  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."));
 
  93   my $form     = $main::form;
 
  97   $form->{callback} = build_std_url('action=add', 'type', 'vc') unless ($form->{callback});
 
 103   $main::lxdebug->leave_sub();
 
 107   $main::lxdebug->enter_sub();
 
 111   my $form     = $main::form;
 
 113   # show history button
 
 114   $form->{javascript} = qq|<script type="text/javascript" src="js/show_history.js"></script>|;
 
 115   #/show hhistory button
 
 117   $form->{simple_save} = 0;
 
 119   set_headings("edit");
 
 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});
 
 127       undef $form->{rowcount};
 
 129       $main::lxdebug->leave_sub();
 
 132   } elsif (!$form->{id}) {
 
 134     $main::lxdebug->leave_sub();
 
 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};
 
 147   set_headings("edit");
 
 152   if ($form->{print_and_save}) {
 
 153     $form->{language_id} = $language_id;
 
 154     $form->{printer_id}  = $printer_id;
 
 159   $main::lxdebug->leave_sub();
 
 163   $main::lxdebug->enter_sub();
 
 167   my $form     = $main::form;
 
 168   my %myconfig = %main::myconfig;
 
 170   # get customer/vendor
 
 171   $form->all_vc(\%myconfig, $form->{vc}, ($form->{vc} eq 'customer') ? "AR" : "AP");
 
 173   # retrieve order/quotation
 
 174   $form->{webdav}   = $::instance_conf->get_webdav;
 
 176   my $editing = $form->{id};
 
 178   DO->retrieve('vc'  => $form->{vc},
 
 179                'ids' => $form->{id});
 
 181   $form->backup_vars(qw(payment_id language_id taxzone_id salesman_id taxincluded cp_id intnotes delivery_term_id currency));
 
 183   # get customer / vendor
 
 184   if ($form->{vc} eq 'vendor') {
 
 185     IR->get_vendor(\%myconfig, \%$form);
 
 186     $form->{discount} = $form->{vendor_discount};
 
 188     IS->get_customer(\%myconfig, \%$form);
 
 189     $form->{discount} = $form->{customer_discount};
 
 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;
 
 197   if ($form->{"all_$form->{vc}"}) {
 
 198     unless ($form->{"$form->{vc}_id"}) {
 
 199       $form->{"$form->{vc}_id"} = $form->{"all_$form->{vc}"}->[0]->{id};
 
 203   ($form->{ $form->{vc} })  = split /--/, $form->{ $form->{vc} };
 
 204   $form->{"old$form->{vc}"} = qq|$form->{$form->{vc}}--$form->{"$form->{vc}_id"}|;
 
 206   $form->{employee} = "$form->{employee}--$form->{employee_id}";
 
 208   $main::lxdebug->leave_sub();
 
 212   $main::lxdebug->enter_sub();
 
 216   my $form     = $main::form;
 
 217   my %myconfig = %main::myconfig;
 
 219   $form->{formname} = $form->{type} unless $form->{formname};
 
 222   foreach my $ref (@{ $form->{form_details} }) {
 
 223     $form->{rowcount} = ++$i;
 
 225     map { $form->{"${_}_$i"} = $ref->{$_} } keys %{$ref};
 
 227   for my $i (1 .. $form->{rowcount}) {
 
 229       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"} * 100);
 
 231       $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
 233     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 235     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 237     # copy reqdate from deliverydate for invoice -> order conversion
 
 238     $form->{"reqdate_$i"} = $form->{"deliverydate_$i"} unless $form->{"reqdate_$i"};
 
 240     $form->{"sellprice_$i"} = $form->format_amount(\%myconfig, $form->{"sellprice_$i"}, $decimalplaces);
 
 241     $form->{"lastcost_$i"} = $form->format_amount(\%myconfig, $form->{"lastcost_$i"}, $decimalplaces);
 
 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);
 
 248   $main::lxdebug->leave_sub();
 
 252   $main::lxdebug->enter_sub();
 
 256   my $form     = $main::form;
 
 257   my %myconfig = %main::myconfig;
 
 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};
 
 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",
 
 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) : ();
 
 273   if (($vc eq 'customers') && $::instance_conf->get_customer_projects_only_in_sales) {
 
 276         customer_id          => $::form->{customer_id},
 
 277         billable_customer_id => $::form->{customer_id},
 
 282       and => [ active => 1, @customer_cond ],
 
 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 ] ]
 
 292   $::form->{ALL_CONTACTS}          = SL::DB::Manager::Contact->get_all_sorted(query => [
 
 294       cp_cv_id => $::form->{"$::form->{vc}_id"} * 1,
 
 297         cp_id    => $::form->{cp_id} * 1
 
 302   map { $_->{value} = "$_->{description}--$_->{id}" } @{ $form->{ALL_DEPARTMENTS} };
 
 303   map { $_->{value} = "$_->{name}--$_->{id}"        } @{ $form->{ALL_VC} };
 
 305   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
 
 307   $form->{oldvcname}         =  $form->{"old$form->{vc}"};
 
 308   $form->{oldvcname}         =~ s/--.*//;
 
 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;
 
 318   $::request->{layout}->add_javascripts_inline("\$(function(){$dispatch_to_popup});");
 
 321   my $follow_up_vc                =  $form->{ $form->{vc} eq 'customer' ? 'customer' : 'vendor' };
 
 322   $follow_up_vc                   =~ s/--\d*\s*$//;
 
 324   $form->{follow_up_trans_info} = $form->{donumber} .'('. $follow_up_vc .')';
 
 326   $::request->{layout}->use_javascript(map { "${_}.js" } qw(kivi.SalesPurchase ckeditor/ckeditor ckeditor/adapters/jquery));
 
 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');
 
 343   $main::lxdebug->leave_sub();
 
 347   $main::lxdebug->enter_sub();
 
 351   my $form     = $main::form;
 
 353   $form->{PRINT_OPTIONS} = print_options('inline' => 1);
 
 354   $form->{ALL_DELIVERY_TERMS} = SL::DB::Manager::DeliveryTerm->get_all_sorted();
 
 356   print $form->parse_html_template('do/form_footer',
 
 357     {transfer_default         => ($::instance_conf->get_transfer_default)});
 
 359   $main::lxdebug->leave_sub();
 
 362 sub update_delivery_order {
 
 363   $main::lxdebug->enter_sub();
 
 367   my $form     = $main::form;
 
 368   my %myconfig = %main::myconfig;
 
 370   set_headings($form->{"id"} ? "edit" : "add");
 
 375   $payment_id = $form->{payment_id} if $form->{payment_id};
 
 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 "";
 
 394   my $i = $form->{rowcount};
 
 396   if (   ($form->{"partnumber_$i"} eq "")
 
 397       && ($form->{"description_$i"} eq "")
 
 398       && ($form->{"partsgroup_$i"}  eq "")) {
 
 405     if ($form->{type} eq 'purchase_delivery_order') {
 
 406       IR->retrieve_item(\%myconfig, $form);
 
 409       IS->retrieve_item(\%myconfig, $form);
 
 413     my $rows = scalar @{ $form->{item_list} };
 
 416       $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
 417       if( !$form->{"qty_$i"} ) {
 
 418         $form->{"qty_$i"} = 1;
 
 423         select_item(mode => $mode);
 
 428         map { $form->{"${_}_$i"} = $form->{item_list}[0]{$_} } keys %{ $form->{item_list}[0] };
 
 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"});
 
 435         # get pricegroups for parts
 
 436         IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 438         # build up html code for prices_$i
 
 446       # ok, so this is a new part
 
 447       # ask if it is a part or service item
 
 449       if (   $form->{"partsgroup_$i"}
 
 450           && ($form->{"partsnumber_$i"} eq "")
 
 451           && ($form->{"description_$i"} eq "")) {
 
 453         $form->{"discount_$i"} = "";
 
 454         $form->{"not_discountable_$i"} = "";
 
 458         $form->{"id_$i"}   = 0;
 
 464   $main::lxdebug->leave_sub();
 
 468   $main::lxdebug->enter_sub();
 
 472   my $form     = $main::form;
 
 473   my %myconfig = %main::myconfig;
 
 474   my $locale   = $main::locale;
 
 476   $form->{vc} = $form->{type} eq 'purchase_delivery_order' ? 'vendor' : 'customer';
 
 478   $form->get_lists("projects"     => { "key" => "ALL_PROJECTS",
 
 480                    "departments"  => "ALL_DEPARTMENTS",
 
 481                    "$form->{vc}s" => "ALL_VC");
 
 482   $form->{ALL_EMPLOYEES} = SL::DB::Manager::Employee->get_all_sorted(query => [ deleted => 0 ]);
 
 484   $form->{SHOW_VC_DROP_DOWN} =  $myconfig{vclimit} > scalar @{ $form->{ALL_VC} };
 
 485   $form->{title}             = $locale->text('Delivery Orders');
 
 489   print $form->parse_html_template('do/search');
 
 491   $main::lxdebug->leave_sub();
 
 495   $main::lxdebug->enter_sub();
 
 499   my $form     = $main::form;
 
 500   my %myconfig = %main::myconfig;
 
 501   my $locale   = $main::locale;
 
 502   my $cgi      = $::request->{cgi};
 
 504   $form->{department_id} = (split /--/, $form->{department})[-1];
 
 505   ($form->{ $form->{vc} }, $form->{"$form->{vc}_id"}) = split(/--/, $form->{ $form->{vc} });
 
 507   report_generator_set_default_sort('transdate', 1);
 
 511   $form->{rowcount} = scalar @{ $form->{DO} };
 
 514     ids                     transdate               reqdate
 
 516     ordnumber               customernumber          cusordnumber
 
 517     name                    employee  salesman
 
 518     shipvia                 globalprojectnumber
 
 519     transaction_description department
 
 523   $form->{l_open}      = $form->{l_closed} = "Y" if ($form->{open}      && $form->{closed});
 
 524   $form->{l_delivered} = "Y"                     if ($form->{delivered} && $form->{notdelivered});
 
 526   $form->{title}       = $locale->text('Delivery Orders');
 
 528   my $attachment_basename = $form->{vc} eq 'vendor' ? $locale->text('purchase_delivery_order_list') : $locale->text('sales_delivery_order_list');
 
 530   my $report = SL::ReportGenerator->new(\%myconfig, $form);
 
 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);
 
 537   my $href = build_std_url('action=orders', grep { $form->{$_} } @hidden_variables);
 
 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'), },
 
 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";
 
 564   $form->{"l_type"} = "Y";
 
 565   map { $column_defs{$_}->{visible} = $form->{"l_${_}"} ? 1 : 0 } @columns;
 
 567   $column_defs{ids}->{visible} = 'HTML';
 
 569   $report->set_columns(%column_defs);
 
 570   $report->set_column_order(@columns);
 
 572   $report->set_export_options('orders', @hidden_variables, qw(sort sortdir));
 
 574   $report->set_sort_indicator($form->{sort}, $form->{sortdir});
 
 577   if ($form->{customer}) {
 
 578     push @options, $locale->text('Customer') . " : $form->{customer}";
 
 580   if ($form->{vendor}) {
 
 581     push @options, $locale->text('Vendor') . " : $form->{vendor}";
 
 583   if ($form->{cp_name}) {
 
 584     push @options, $locale->text('Contact Person') . " : $form->{cp_name}";
 
 586   if ($form->{department}) {
 
 587     my ($department) = split /--/, $form->{department};
 
 588     push @options, $locale->text('Department') . " : $department";
 
 590   if ($form->{donumber}) {
 
 591     push @options, $locale->text('Delivery Order Number') . " : $form->{donumber}";
 
 593   if ($form->{ordnumber}) {
 
 594     push @options, $locale->text('Order Number') . " : $form->{ordnumber}";
 
 596   push @options, $locale->text('Serial Number') . " : $form->{serialnumber}" if $form->{serialnumber};
 
 597   if ($form->{transaction_description}) {
 
 598     push @options, $locale->text('Transaction description') . " : $form->{transaction_description}";
 
 600   if ( $form->{transdatefrom} or $form->{transdateto} ) {
 
 601     push @options, $locale->text('Delivery Order Date');
 
 602     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{transdatefrom}, 1)     if $form->{transdatefrom};
 
 603     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{transdateto},   1)     if $form->{transdateto};
 
 605   if ( $form->{reqdatefrom} or $form->{reqdateto} ) {
 
 606     push @options, $locale->text('Reqdate');
 
 607     push @options, $locale->text('From') . " " . $locale->date(\%myconfig, $form->{reqdatefrom}, 1)       if $form->{reqdatefrom};
 
 608     push @options, $locale->text('Bis')  . " " . $locale->date(\%myconfig, $form->{reqdateto},   1)       if $form->{reqdateto};
 
 611     push @options, $locale->text('Open');
 
 613   if ($form->{closed}) {
 
 614     push @options, $locale->text('Closed');
 
 616   if ($form->{delivered}) {
 
 617     push @options, $locale->text('Delivered');
 
 619   if ($form->{notdelivered}) {
 
 620     push @options, $locale->text('Not delivered');
 
 623   $report->set_options('top_info_text'        => join("\n", @options),
 
 624                        'raw_top_info_text'    => $form->parse_html_template('do/orders_top'),
 
 625                        'raw_bottom_info_text' => $form->parse_html_template('do/orders_bottom'),
 
 626                        'output_format'        => 'HTML',
 
 627                        'title'                => $form->{title},
 
 628                        'attachment_basename'  => $attachment_basename . strftime('_%Y%m%d', localtime time),
 
 630   $report->set_options_from_form();
 
 631   $locale->set_numberformat_wo_thousands_separator(\%myconfig) if lc($report->{options}->{output_format}) eq 'csv';
 
 633   # add sort and escape callback, this one we use for the add sub
 
 634   $form->{callback} = $href .= "&sort=$form->{sort}";
 
 636   # escape callback for href
 
 637   my $callback = $form->escape($href);
 
 639   my $edit_url       = build_std_url('action=edit', 'type', 'vc');
 
 640   my $edit_order_url = build_std_url('script=oe.pl', 'type=' . ($form->{type} eq 'sales_delivery_order' ? 'sales_order' : 'purchase_order'), 'action=edit');
 
 644   foreach my $dord (@{ $form->{DO} }) {
 
 645     $dord->{open}      = $dord->{closed}    ? $locale->text('No')  : $locale->text('Yes');
 
 646     $dord->{delivered} = $dord->{delivered} ? $locale->text('Yes') : $locale->text('No');
 
 648     my $row = { map { $_ => { 'data' => $dord->{$_} } } @columns };
 
 651       'raw_data' =>   $cgi->hidden('-name' => "trans_id_${idx}", '-value' => $dord->{id})
 
 652                     . $cgi->checkbox('-name' => "multi_id_${idx}", '-value' => 1, '-label' => ''),
 
 653       'valign'   => 'center',
 
 657     $row->{donumber}->{link}  = $edit_url       . "&id=" . E($dord->{id})      . "&callback=${callback}";
 
 658     $row->{ordnumber}->{link} = $edit_order_url . "&id=" . E($dord->{oe_id})   . "&callback=${callback}" if $dord->{oe_id};
 
 659     $report->add_data($row);
 
 664   $report->generate_with_headers();
 
 666   $main::lxdebug->leave_sub();
 
 670   $main::lxdebug->enter_sub();
 
 676   my $form     = $main::form;
 
 677   my %myconfig = %main::myconfig;
 
 678   my $locale   = $main::locale;
 
 680   $form->{defaultcurrency} = $form->get_default_currency(\%myconfig);
 
 682   $form->isblank("transdate", $locale->text('Delivery Order Date missing!'));
 
 684   $form->{donumber} =~ s/^\s*//g;
 
 685   $form->{donumber} =~ s/\s*$//g;
 
 687   my $msg = ucfirst $form->{vc};
 
 688   $form->isblank($form->{vc}, $locale->text($msg . " missing!"));
 
 690   # $locale->text('Customer missing!');
 
 691   # $locale->text('Vendor missing!');
 
 693   remove_emptied_rows();
 
 696   # if the name changed get new values
 
 697   if (check_name($form->{vc})) {
 
 702   $form->{id} = 0 if $form->{saveasnew};
 
 706   if(!exists $form->{addition}) {
 
 707     $form->{snumbers} = qq|donumber_| . $form->{donumber};
 
 708     $form->{addition} = "SAVED";
 
 711   # /saving the history
 
 713   $form->{simple_save} = 1;
 
 714   if (!$params{no_redirect} && !$form->{print_and_save}) {
 
 715     delete @{$form}{ary_diff([keys %{ $form }], [qw(login id script type cursor_fokus)])};
 
 719   $main::lxdebug->leave_sub();
 
 723   $main::lxdebug->enter_sub();
 
 727   my $form     = $main::form;
 
 728   my %myconfig = %main::myconfig;
 
 729   my $locale   = $main::locale;
 
 733     if(!exists $form->{addition}) {
 
 734       $form->{snumbers} = qq|donumber_| . $form->{donumber};
 
 735       $form->{addition} = "DELETED";
 
 738     # /saving the history
 
 740     $form->info($locale->text('Delivery Order deleted!'));
 
 744   $form->error($locale->text('Cannot delete delivery order!'));
 
 746   $main::lxdebug->leave_sub();
 
 750   $main::lxdebug->enter_sub();
 
 752   my $form     = $main::form;
 
 753   my %myconfig = %main::myconfig;
 
 754   my $locale   = $main::locale;
 
 757   $main::auth->assert($form->{type} eq 'purchase_delivery_order' ? 'vendor_invoice_edit' : 'invoice_edit');
 
 759   $form->{convert_from_do_ids} = $form->{id};
 
 760   $form->{deliverydate}        = $form->{transdate};
 
 761   $form->{transdate}           = $form->{invdate} = $form->current_date(\%myconfig);
 
 762   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
 763   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
 
 767   delete @{$form}{qw(id closed delivered)};
 
 769   my ($script, $buysell);
 
 770   if ($form->{type} eq 'purchase_delivery_order') {
 
 771     $form->{title}  = $locale->text('Add Vendor Invoice');
 
 772     $form->{script} = 'ir.pl';
 
 777     $form->{title}  = $locale->text('Add Sales Invoice');
 
 778     $form->{script} = 'is.pl';
 
 783   for my $i (1 .. $form->{rowcount}) {
 
 785     unless ($form->{"ordnumber"}) {
 
 786       if ($form->{discount}) { # Falls wir einen Lieferanten-/Kundenrabatt haben
 
 787         # und rabattfähig sind, dann
 
 788         unless ($form->{"not_discountable_$i"}) {
 
 789           $form->{"discount_$i"} = $form->{discount}*100; # ... nehmen wir diesen Rabatt
 
 793     map { $form->{"${_}_${i}"} = $form->parse_amount(\%myconfig, $form->{"${_}_${i}"}) if $form->{"${_}_${i}"} } qw(ship qty sellprice listprice lastcost basefactor);
 
 794     $form->{"donumber_$i"} = $form->{donumber};
 
 797   $form->{type} = "invoice";
 
 800   $main::locale = new Locale "$myconfig{countrycode}", "$script";
 
 801   $locale = $main::locale;
 
 803   require "bin/mozilla/$form->{script}";
 
 805   my $currency = $form->{currency};
 
 808   if ($form->{ordnumber}) {
 
 809     require SL::DB::Order;
 
 810     if (my $order = SL::DB::Manager::Order->find_by(ordnumber => $form->{ordnumber})) {
 
 812       $form->{orddate} = $order->transdate_as_date;
 
 813       $form->{$_}      = $order->$_ for qw(payment_id salesman_id taxzone_id quonumber);
 
 817   $form->{currency}     = $currency;
 
 818   $form->{exchangerate} = "";
 
 819   $form->{forex}        = $form->check_exchangerate(\%myconfig, $form->{currency}, $form->{invdate}, $buysell);
 
 820   $form->{exchangerate} = $form->{forex} if ($form->{forex});
 
 825   for my $i (1 .. $form->{rowcount}) {
 
 826     $form->{"discount_$i"} = $form->format_amount(\%myconfig, $form->{"discount_$i"});
 
 828     my ($dec) = ($form->{"sellprice_$i"} =~ /\.(\d+)/);
 
 830     my $decimalplaces = ($dec > 2) ? $dec : 2;
 
 832     # copy delivery date from reqdate for order -> invoice conversion
 
 833     $form->{"deliverydate_$i"} = $form->{"reqdate_$i"}
 
 834       unless $form->{"deliverydate_$i"};
 
 837     $form->{"sellprice_$i"} =
 
 838       $form->format_amount(\%myconfig, $form->{"sellprice_$i"},
 
 841     $form->{"lastcost_$i"} =
 
 842       $form->format_amount(\%myconfig, $form->{"lastcost_$i"},
 
 845     (my $dec_qty) = ($form->{"qty_$i"} =~ /\.(\d+)/);
 
 846     $dec_qty = length $dec_qty;
 
 848       $form->format_amount(\%myconfig, $form->{"qty_$i"}, $dec_qty);
 
 852   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
 
 853   for my $i (1 .. $form->{rowcount}) {
 
 854     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
 
 856   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 857   set_pricegroup($form->{rowcount});
 
 861   $main::lxdebug->leave_sub();
 
 865   $main::lxdebug->enter_sub();
 
 867   my $form     = $main::form;
 
 868   my %myconfig = %main::myconfig;
 
 869   my $locale   = $main::locale;
 
 872   $main::auth->assert($form->{type} eq 'sales_delivery_order' ? 'invoice_edit' : 'vendor_invoice_edit');
 
 874   my @do_ids = map { $form->{"trans_id_$_"} } grep { $form->{"multi_id_$_"} } (1..$form->{rowcount});
 
 876   if (!scalar @do_ids) {
 
 877     $form->show_generic_error($locale->text('You have not selected any delivery order.'), 'back_button' => 1);
 
 880   map { delete $form->{$_} } grep { m/^(?:trans|multi)_id_\d+/ } keys %{ $form };
 
 882   if (!DO->retrieve('vc' => $form->{vc}, 'ids' => \@do_ids)) {
 
 883     $form->show_generic_error($form->{vc} eq 'customer' ?
 
 884                               $locale->text('You cannot create an invoice for delivery orders for different customers.') :
 
 885                               $locale->text('You cannot create an invoice for delivery orders from different vendors.'),
 
 889   my $source_type              = $form->{type};
 
 890   $form->{convert_from_do_ids} = join ' ', @do_ids;
 
 891   # bei der auswahl von mehreren Lieferscheinen fuer eine Rechnung, die einfach in donumber_array
 
 892   # zwischenspeichern (DO.pm) und als ' '-separierte Liste wieder zurueckschreiben
 
 893   # Hinweis: delete gibt den wert zurueck und loescht danach das element (nett und einfach)
 
 894   # $shell: perldoc perlunc; /delete EXPR
 
 895   $form->{donumber}            = delete $form->{donumber_array};
 
 896   $form->{ordnumber}           = delete $form->{ordnumber_array};
 
 897   $form->{cusordnumber}        = delete $form->{cusordnumber_array};
 
 898   $form->{deliverydate}        = $form->{transdate};
 
 899   $form->{transdate}           = $form->current_date(\%myconfig);
 
 900   $form->{duedate}             = $form->current_date(\%myconfig, $form->{invdate}, $form->{terms} * 1);
 
 901   $form->{type}                = "invoice";
 
 903   $form->{defaultcurrency}     = $form->get_default_currency(\%myconfig);
 
 905   my ($script, $buysell);
 
 906   if ($source_type eq 'purchase_delivery_order') {
 
 907     $form->{title}  = $locale->text('Add Vendor Invoice');
 
 908     $form->{script} = 'ir.pl';
 
 913     $form->{title}  = $locale->text('Add Sales Invoice');
 
 914     $form->{script} = 'is.pl';
 
 919   map { delete $form->{$_} } qw(id subject message cc bcc printed emailed queued);
 
 921   # get vendor or customer discount
 
 923   my $saved_form = save_form();
 
 924   if ($form->{vc} eq 'vendor') {
 
 925     IR->get_vendor(\%myconfig, \%$form);
 
 926     $vc_discount = $form->{vendor_discount};
 
 928     IS->get_customer(\%myconfig, \%$form);
 
 929     $vc_discount = $form->{customer_discount};
 
 931   restore_form($saved_form);
 
 933   $form->{rowcount} = 0;
 
 934   foreach my $ref (@{ $form->{form_details} }) {
 
 936     $ref->{reqdate} ||= $ref->{dord_transdate}; # copy transdates into each invoice row
 
 937     map { $form->{"${_}_$form->{rowcount}"} = $ref->{$_} } keys %{ $ref };
 
 938     map { $form->{"${_}_$form->{rowcount}"} = $form->format_amount(\%myconfig, $ref->{$_}) } qw(qty sellprice lastcost);
 
 940     if ($vc_discount){ # falls wir einen Lieferanten/Kundenrabatt haben
 
 941       # und keinen anderen discount wert an $i ...
 
 942       $form->{"discount_$form->{rowcount}"} ||= $vc_discount; # ... nehmen wir diesen Rabatt
 
 945     $form->{"discount_$form->{rowcount}"}   = $form->{"discount_$form->{rowcount}"}  * 100; #s.a. Bug 1151
 
 946     # Anm.: Eine Änderung des discounts in der SL/DO.pm->retrieve (select (doi.discount * 100) as discount) ergibt in psql einen
 
 947     # Wert von 10.0000001490116. Ferner ist der Rabatt in der Rechnung dann bei 1.0 (?). Deswegen lasse ich das hier. jb 10.10.09
 
 949     $form->{"discount_$form->{rowcount}"} = $form->format_amount(\%myconfig, $form->{"discount_$form->{rowcount}"});
 
 951   delete $form->{form_details};
 
 953   $locale = new Locale "$myconfig{countrycode}", "$script";
 
 955   require "bin/mozilla/$form->{script}";
 
 960   #  show pricegroup in newly loaded invoice when creating invoice from delivery order
 
 961   for my $i (1 .. $form->{rowcount}) {
 
 962     $form->{"sellprice_pg_$i"} = join '--', $form->{"sellprice_$i"}, $form->{"pricegroup_id_$i"};
 
 964   IS->get_pricegroups_for_parts(\%myconfig, \%$form);
 
 965   set_pricegroup($_) for 1 .. $form->{rowcount};
 
 969   $main::lxdebug->leave_sub();
 
 973   $main::lxdebug->enter_sub();
 
 977   my $form     = $main::form;
 
 979   $form->{saveasnew} = 1;
 
 981   $form->{delivered} = 0;
 
 982   map { delete $form->{$_} } qw(printed emailed queued);
 
 983   delete @{ $form }{ grep { m/^stock_(?:in|out)_\d+/ } keys %{ $form } };
 
 985   # Let kivitendo assign a new order number if the user hasn't changed the
 
 986   # previous one. If it has been changed manually then use it as-is.
 
 987   $form->{donumber} =~ s/^\s*//g;
 
 988   $form->{donumber} =~ s/\s*$//g;
 
 989   if ($form->{saved_donumber} && ($form->{saved_donumber} eq $form->{donumber})) {
 
 990     delete($form->{donumber});
 
 995   $main::lxdebug->leave_sub();
 
 999   $main::lxdebug->enter_sub();
 
1003   my $form     = $main::form;
 
1005   $form->{print_and_save} = 1;
 
1007   my $saved_form = save_form();
 
1011   restore_form($saved_form, 0, qw(id ordnumber quonumber));
 
1015   $main::lxdebug->leave_sub();
 
1018 sub calculate_stock_in_out {
 
1019   $main::lxdebug->enter_sub();
 
1021   my $form     = $main::form;
 
1025   if (!$form->{"id_${i}"}) {
 
1026     $main::lxdebug->leave_sub();
 
1030   my $all_units = AM->retrieve_all_units();
 
1032   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
 
1033   my $sinfo    = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_${i}"});
 
1035   my $do_qty   = AM->sum_with_unit($::form->{"qty_$i"}, $::form->{"unit_$i"});
 
1036   my $sum      = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $sinfo });
 
1037   my $matches  = $do_qty == $sum;
 
1039   my $content  = $form->format_amount_units('amount'      => $sum * 1,
 
1040                                             'part_unit'   => $form->{"partunit_$i"},
 
1041                                             'amount_unit' => $all_units->{$form->{"partunit_$i"}}->{base_unit},
 
1042                                             'conv_units'  => 'convertible_not_smaller',
 
1044   $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="?">|;
 
1046   $main::lxdebug->leave_sub();
 
1051 sub get_basic_bin_wh_info {
 
1052   $main::lxdebug->enter_sub();
 
1054   my $stock_info = shift;
 
1056   my $form     = $main::form;
 
1058   foreach my $sinfo (@{ $stock_info }) {
 
1059     next unless ($sinfo->{bin_id});
 
1061     my $bin_info = WH->get_basic_bin_info('id' => $sinfo->{bin_id});
 
1062     map { $sinfo->{"${_}_description"} = $sinfo->{"${_}description"} = $bin_info->{"${_}_description"} } qw(bin warehouse);
 
1065   $main::lxdebug->leave_sub();
 
1068 sub stock_in_out_form {
 
1069   $main::lxdebug->enter_sub();
 
1071   my $form     = $main::form;
 
1073   if ($form->{in_out} eq 'out') {
 
1079   $main::lxdebug->leave_sub();
 
1082 sub redo_stock_info {
 
1083   $main::lxdebug->enter_sub();
 
1087   my $form     = $main::form;
 
1089   my @non_empty = grep { $_->{qty} } @{ $params{stock_info} };
 
1091   if ($params{add_empty_row}) {
 
1093       'warehouse_id' => scalar(@non_empty) ? $non_empty[-1]->{warehouse_id} : undef,
 
1094       'bin_id'       => scalar(@non_empty) ? $non_empty[-1]->{bin_id}       : undef,
 
1098   @{ $params{stock_info} } = @non_empty;
 
1100   $main::lxdebug->leave_sub();
 
1103 sub update_stock_in {
 
1104   $main::lxdebug->enter_sub();
 
1106   my $form     = $main::form;
 
1107   my %myconfig = %main::myconfig;
 
1109   my $stock_info = [];
 
1111   foreach my $i (1..$form->{rowcount}) {
 
1112     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1113     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
 
1116   display_stock_in_form($stock_info);
 
1118   $main::lxdebug->leave_sub();
 
1122   $main::lxdebug->enter_sub();
 
1124   my $form     = $main::form;
 
1126   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
 
1128   display_stock_in_form($stock_info);
 
1130   $main::lxdebug->leave_sub();
 
1133 sub display_stock_in_form {
 
1134   $main::lxdebug->enter_sub();
 
1136   my $stock_info = shift;
 
1138   my $form     = $main::form;
 
1139   my %myconfig = %main::myconfig;
 
1140   my $locale   = $main::locale;
 
1142   $form->{title} = $locale->text('Stock');
 
1144   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
 
1146   # Standardlagerplatz für Standard-Auslagern verwenden, falls keiner für die Ware explizit definiert wurde
 
1147   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
 
1148     $part_info->{warehouse_id} ||= $::instance_conf->get_warehouse_id;
 
1149     $part_info->{bin_id}       ||= $::instance_conf->get_bin_id;
 
1152   my $units      = AM->retrieve_units(\%myconfig, $form);
 
1153   # der zweite Parameter von unit_select_data gibt den default-Namen (selected) vor
 
1154   my $units_data = AM->unit_select_data($units, $form->{do_unit}, undef, $part_info->{unit});
 
1156   $form->get_lists('warehouses' => { 'key'    => 'WAREHOUSES',
 
1157                                      'bins'   => 'BINS' });
 
1159   redo_stock_info('stock_info' => $stock_info, 'add_empty_row' => !$form->{delivered});
 
1161   get_basic_bin_wh_info($stock_info);
 
1163   $form->header(no_layout => 1);
 
1164   print $form->parse_html_template('do/stock_in_form', { 'UNITS'      => $units_data,
 
1165                                                          'STOCK_INFO' => $stock_info,
 
1166                                                          'PART_INFO'  => $part_info, });
 
1168   $main::lxdebug->leave_sub();
 
1171 sub _stock_in_out_set_qty_display {
 
1172   my $stock_info       = shift;
 
1174   my $all_units        = AM->retrieve_all_units();
 
1175   my $sum              = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
 
1176   $form->{qty_display} = $form->format_amount_units(amount      => $sum * 1,
 
1177                                                     part_unit   => $form->{partunit},
 
1178                                                     amount_unit => $all_units->{ $form->{partunit} }->{base_unit},
 
1179                                                     conv_units  => 'convertible_not_smaller',
 
1184   $main::lxdebug->enter_sub();
 
1186   my $form     = $main::form;
 
1187   my %myconfig = %main::myconfig;
 
1189   my $stock_info = [];
 
1191   foreach my $i (1..$form->{rowcount}) {
 
1192     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1194     next if ($form->{"qty_$i"} <= 0);
 
1196     push @{ $stock_info }, { map { $_ => $form->{"${_}_${i}"} } qw(warehouse_id bin_id chargenumber bestbefore qty unit) };
 
1199   $form->{stock} = YAML::Dump($stock_info);
 
1201   _stock_in_out_set_qty_display($stock_info);
 
1203   my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
 
1204   my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
 
1207   print $form->parse_html_template('do/set_stock_in_out', {
 
1208     qty_matches => $do_qty == $transfer_qty,
 
1211   $main::lxdebug->leave_sub();
 
1214 sub stock_out_form {
 
1215   $main::lxdebug->enter_sub();
 
1217   my $form     = $main::form;
 
1218   my %myconfig = %main::myconfig;
 
1219   my $locale   = $main::locale;
 
1221   $form->{title} = $locale->text('Release From Stock');
 
1223   my $part_info  = IC->get_basic_part_info('id' => $form->{parts_id});
 
1225   my $units      = AM->retrieve_units(\%myconfig, $form);
 
1226   my $units_data = AM->unit_select_data($units, undef, undef, $part_info->{unit});
 
1228   my @contents   = DO->get_item_availability('parts_id' => $form->{parts_id});
 
1230   my $stock_info = DO->unpack_stock_information('packed' => $form->{stock});
 
1232   if (!$form->{delivered}) {
 
1233     foreach my $row (@contents) {
 
1234       $row->{available_qty} = $form->format_amount_units('amount'      => $row->{qty} * 1,
 
1235                                                          'part_unit'   => $part_info->{unit},
 
1236                                                          'conv_units'  => 'convertible_not_smaller',
 
1239       foreach my $sinfo (@{ $stock_info }) {
 
1240         next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
 
1241                  ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
 
1242                  ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
 
1243                  ($row->{bestbefore}   ne $sinfo->{bestbefore}));
 
1245         map { $row->{"stock_$_"} = $sinfo->{$_} } qw(qty unit error);
 
1250     get_basic_bin_wh_info($stock_info);
 
1252     foreach my $sinfo (@{ $stock_info }) {
 
1253       map { $sinfo->{"stock_$_"} = $sinfo->{$_} } qw(qty unit);
 
1257   $form->header(no_layout => 1);
 
1258   print $form->parse_html_template('do/stock_out_form', { 'UNITS'      => $units_data,
 
1259                                                           'WHCONTENTS' => $form->{delivered} ? $stock_info : \@contents,
 
1260                                                           'PART_INFO'  => $part_info, });
 
1262   $main::lxdebug->leave_sub();
 
1266   $main::lxdebug->enter_sub();
 
1268   my $form     = $main::form;
 
1269   my %myconfig = %main::myconfig;
 
1270   my $locale   = $main::locale;
 
1272   my $stock_info = [];
 
1274   foreach my $i (1 .. $form->{rowcount}) {
 
1275     $form->{"qty_$i"} = $form->parse_amount(\%myconfig, $form->{"qty_$i"});
 
1277     next if ($form->{"qty_$i"} <= 0);
 
1279     push @{ $stock_info }, {
 
1280       'warehouse_id' => $form->{"warehouse_id_$i"},
 
1281       'bin_id'       => $form->{"bin_id_$i"},
 
1282       'chargenumber' => $form->{"chargenumber_$i"},
 
1283       'bestbefore'   => $form->{"bestbefore_$i"},
 
1284       'qty'          => $form->{"qty_$i"},
 
1285       'unit'         => $form->{"unit_$i"},
 
1290   my @errors     = DO->check_stock_availability('requests' => $stock_info,
 
1291                                                 'parts_id' => $form->{parts_id});
 
1293   $form->{stock} = YAML::Dump($stock_info);
 
1296     $form->{ERRORS} = [];
 
1297     map { push @{ $form->{ERRORS} }, $locale->text('Error in row #1: The quantity you entered is bigger than the stocked quantity.', $_->{row}); } @errors;
 
1298     stock_in_out_form();
 
1301     _stock_in_out_set_qty_display($stock_info);
 
1303     my $do_qty       = AM->sum_with_unit($::form->parse_amount(\%::myconfig, $::form->{do_qty}), $::form->{do_unit});
 
1304     my $transfer_qty = AM->sum_with_unit(map { $_->{qty}, $_->{unit} } @{ $stock_info });
 
1307     print $form->parse_html_template('do/set_stock_in_out', {
 
1308       qty_matches => $do_qty == $transfer_qty,
 
1312   $main::lxdebug->leave_sub();
 
1316   $main::lxdebug->enter_sub();
 
1318   my $form     = $main::form;
 
1319   my %myconfig = %main::myconfig;
 
1320   my $locale   = $main::locale;
 
1322   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
 
1323     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred in.'), 'back_button' => 1);
 
1326   save(no_redirect => 1);
 
1328   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_in_${_}"} } (1 .. $form->{rowcount});
 
1332     my $units         = AM->retrieve_units(\%myconfig, $form);
 
1333     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
 
1336     $form->{ERRORS}   = [];
 
1338     foreach my $i (1 .. $form->{rowcount}) {
 
1339       next unless ($form->{"id_$i"} && $form->{"stock_in_$i"});
 
1341       my $row_sum_base_qty = 0;
 
1342       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
 
1344       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_in_$i"}) }) {
 
1345         $request->{parts_id}  = $form->{"id_$i"};
 
1346         $row_sum_base_qty    += $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
 
1348         $request->{project_id} = $form->{"project_id_$i"} || $form->{globalproject_id};
 
1350         push @all_requests, $request;
 
1353       next if (0 == $row_sum_base_qty);
 
1355       my $do_base_qty = $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
 
1357 #      if ($do_base_qty != $row_sum_base_qty) {
 
1358 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no stock at all or the full quantity of #2 #3.',
 
1359 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
 
1363     if (@{ $form->{ERRORS} }) {
 
1364       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
 
1366       set_headings('edit');
 
1368       $main::lxdebug->leave_sub();
 
1374   DO->transfer_in_out('direction' => 'in',
 
1375                       'requests'  => \@all_requests);
 
1377   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
 
1379   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id});
 
1382   $main::lxdebug->leave_sub();
 
1386   $main::lxdebug->enter_sub();
 
1388   my $form     = $main::form;
 
1389   my %myconfig = %main::myconfig;
 
1390   my $locale   = $main::locale;
 
1392   if ($form->{id} && DO->is_marked_as_delivered(id => $form->{id})) {
 
1393     $form->show_generic_error($locale->text('The parts for this delivery order have already been transferred out.'), 'back_button' => 1);
 
1396   save(no_redirect => 1);
 
1398   my @part_ids = map { $form->{"id_${_}"} } grep { $form->{"id_${_}"} && $form->{"stock_out_${_}"} } (1 .. $form->{rowcount});
 
1402     my $units         = AM->retrieve_units(\%myconfig, $form);
 
1403     my %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
 
1406     $form->{ERRORS}   = [];
 
1408     foreach my $i (1 .. $form->{rowcount}) {
 
1409       next unless ($form->{"id_$i"} && $form->{"stock_out_$i"});
 
1411       my $row_sum_base_qty = 0;
 
1412       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
 
1414       foreach my $request (@{ DO->unpack_stock_information('packed' => $form->{"stock_out_$i"}) }) {
 
1415         $request->{parts_id} = $form->{"id_$i"};
 
1416         $request->{base_qty} = $request->{qty} * $units->{$request->{unit}}->{factor} / $base_unit_factor;
 
1417         $request->{project_id} = $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id};
 
1419         my $map_key          = join '--', ($form->{"id_$i"}, @{$request}{qw(warehouse_id bin_id chargenumber bestbefore)});
 
1421         $request_map{$map_key}                 ||= $request;
 
1422         $request_map{$map_key}->{sum_base_qty} ||= 0;
 
1423         $request_map{$map_key}->{sum_base_qty}  += $request->{base_qty};
 
1424         $row_sum_base_qty                       += $request->{base_qty};
 
1426         push @all_requests, $request;
 
1429       next if (0 == $row_sum_base_qty);
 
1431       my $do_base_qty = $form->{"qty_$i"} * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
 
1433 #      if ($do_base_qty != $row_sum_base_qty) {
 
1434 #        push @{ $form->{ERRORS} }, $locale->text('Error in position #1: You must either assign no transfer at all or the full quantity of #2 #3.',
 
1435 #                                                 $i, $form->{"qty_$i"}, $form->{"unit_$i"});
 
1440       my @bin_ids      = map { $_->{bin_id} } values %request_map;
 
1441       my %bin_info_map = WH->get_basic_bin_info('id' => \@bin_ids);
 
1442       my @contents     = DO->get_item_availability('parts_id' => \@part_ids);
 
1444       foreach my $inv (@contents) {
 
1445         my $map_key = join '--', @{$inv}{qw(parts_id warehouse_id bin_id chargenumber bestbefore)};
 
1447         next unless ($request_map{$map_key});
 
1449         my $request    = $request_map{$map_key};
 
1450         $request->{ok} = $request->{sum_base_qty} <= $inv->{qty};
 
1453       foreach my $request (values %request_map) {
 
1454         next if ($request->{ok});
 
1456         my $pinfo = $part_info_map{$request->{parts_id}};
 
1457         my $binfo = $bin_info_map{$request->{bin_id}};
 
1459         if ($::instance_conf->get_show_bestbefore) {
 
1460             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, #5, for the transfer of #6.",
 
1461                                                      $pinfo->{description},
 
1462                                                      $binfo->{warehouse_description},
 
1463                                                      $binfo->{bin_description},
 
1464                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
 
1465                                                      $request->{bestbefore} ? $locale->text('bestbefore #1', $request->{bestbefore}) : $locale->text('no bestbefore'),
 
1466                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
 
1467                                                                                 'part_unit'   => $pinfo->{unit},
 
1468                                                                                 'conv_units'  => 'convertible_not_smaller'));
 
1470             push @{ $form->{ERRORS} }, $locale->text("There is not enough available of '#1' at warehouse '#2', bin '#3', #4, for the transfer of #5.",
 
1471                                                      $pinfo->{description},
 
1472                                                      $binfo->{warehouse_description},
 
1473                                                      $binfo->{bin_description},
 
1474                                                      $request->{chargenumber} ? $locale->text('chargenumber #1', $request->{chargenumber}) : $locale->text('no chargenumber'),
 
1475                                                      $form->format_amount_units('amount'      => $request->{sum_base_qty},
 
1476                                                                                 'part_unit'   => $pinfo->{unit},
 
1477                                                                                 'conv_units'  => 'convertible_not_smaller'));
 
1482     if (@{ $form->{ERRORS} }) {
 
1483       push @{ $form->{ERRORS} }, $locale->text('The delivery order has not been marked as delivered. The warehouse contents have not changed.');
 
1485       set_headings('edit');
 
1487       $main::lxdebug->leave_sub();
 
1492   DO->transfer_in_out('direction' => 'out',
 
1493                       'requests'  => \@all_requests);
 
1495   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
 
1497   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id});
 
1500   $main::lxdebug->leave_sub();
 
1504   $main::lxdebug->enter_sub();
 
1506   my $form     = $main::form;
 
1508   DO->close_orders('ids' => [ $form->{id} ]);
 
1510   $form->{closed} = 1;
 
1514   $main::lxdebug->leave_sub();
 
1519   call_sub($main::form->{yes_nextsub});
 
1523   call_sub($main::form->{no_nextsub});
 
1527   call_sub($main::form->{update_nextsub} || $main::form->{nextsub} || 'update_delivery_order');
 
1531   my $form     = $main::form;
 
1532   my $locale   = $main::locale;
 
1534   foreach my $action (qw(update ship_to print e_mail save transfer_out transfer_out_default
 
1535                          transfer_in transfer_in_default mark_closed save_as_new invoice delete)) {
 
1536     if ($form->{"action_${action}"}) {
 
1542   $form->error($locale->text('No action defined.'));
 
1545 sub transfer_out_default {
 
1546   $main::lxdebug->enter_sub();
 
1548   my $form     = $main::form;
 
1550   transfer_in_out_default('direction' => 'out');
 
1552   $main::lxdebug->leave_sub();
 
1555 sub transfer_in_default {
 
1556   $main::lxdebug->enter_sub();
 
1558   my $form     = $main::form;
 
1560   transfer_in_out_default('direction' => 'in');
 
1562   $main::lxdebug->leave_sub();
 
1565 # Falls das Standardlagerverfahren aktiv ist, wird
 
1566 # geprüft, ob alle Standardlagerplätze für die Auslager-
 
1567 # artikel vorhanden sind UND ob die Warenmenge ausreicht zum
 
1568 # Auslagern. Falls nicht wird entsprechend eine Fehlermeldung
 
1569 # generiert. Offen Chargennummer / bestbefore wird nicht berücksichtigt
 
1570 sub transfer_in_out_default {
 
1571   $main::lxdebug->enter_sub();
 
1573   my $form     = $main::form;
 
1574   my %myconfig = %main::myconfig;
 
1575   my $locale   = $main::locale;
 
1578   my (%missing_default_bins, %qty_parts, @all_requests, %part_info_map, $default_warehouse_id, $default_bin_id);
 
1580   Common::check_params(\%params, qw(direction));
 
1582   # entsprechende defaults holen, falls standardlagerplatz verwendet werden soll
 
1583   if ($::instance_conf->get_transfer_default_use_master_default_bin) {
 
1584     $default_warehouse_id = $::instance_conf->get_warehouse_id;
 
1585     $default_bin_id       = $::instance_conf->get_bin_id;
 
1589   my @part_ids = map { $form->{"id_${_}"} } (1 .. $form->{rowcount});
 
1591     my $units         = AM->retrieve_units(\%myconfig, $form);
 
1592     %part_info_map = IC->get_basic_part_info('id' => \@part_ids);
 
1593     foreach my $i (1 .. $form->{rowcount}) {
 
1594       next unless ($form->{"id_$i"});
 
1595       my $base_unit_factor = $units->{ $part_info_map{$form->{"id_$i"}}->{unit} }->{factor} || 1;
 
1596       my $qty =   $form->parse_amount(\%myconfig, $form->{"qty_$i"}) * $units->{$form->{"unit_$i"}}->{factor} / $base_unit_factor;
 
1598       $form->show_generic_error($locale->text("Cannot transfer negative entries." ), 'back_button' => 1) if ($qty < 0);
 
1599       # if we do not want to transfer services and this part is a service, set qty to zero
 
1600       # ... and do not create a hash entry in %qty_parts below (will skip check for bins for the transfer == out case)
 
1601       # ... 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)
 
1603       $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});
 
1604       $qty_parts{$form->{"id_$i"}} += $qty;
 
1606         delete $qty_parts{$form->{"id_$i"}} unless $qty_parts{$form->{"id_$i"}};
 
1607         undef $form->{"stock_in_$i"};
 
1610       $part_info_map{$form->{"id_$i"}}{bin_id}       ||= $default_bin_id;
 
1611       $part_info_map{$form->{"id_$i"}}{warehouse_id} ||= $default_warehouse_id;
 
1613       push @all_requests, ($qty == 0) ? { } : {
 
1614                         'chargenumber' => '',  #?? die müsste entsprechend geholt werden
 
1615                         #'bestbefore' => undef, # TODO wird nicht berücksichtigt
 
1616                         'bin_id' => $part_info_map{$form->{"id_$i"}}{bin_id},
 
1618                         'parts_id' => $form->{"id_$i"},
 
1619                         'comment' => 'Default transfer DO',
 
1621                         'unit' => $part_info_map{$form->{"id_$i"}}{unit},
 
1622                         'warehouse_id' => $part_info_map{$form->{"id_$i"}}{warehouse_id},
 
1623                         'oe_id' => $form->{id},
 
1624                         'project_id' => $form->{"project_id_$i"} ? $form->{"project_id_$i"} : $form->{globalproject_id}
 
1628     # jetzt wird erst überprüft, ob die Stückzahl entsprechend stimmt.
 
1629     # check if bin (transfer in and transfer out and qty (transfer out) is correct
 
1630     foreach my $key (keys %qty_parts) {
 
1632       $missing_default_bins{$key}{missing_bin} = 1 unless ($part_info_map{$key}{bin_id});
 
1633       next unless ($part_info_map{$key}{bin_id}); # abbruch
 
1635       if ($params{direction} eq 'out') {  # wird nur für ausgehende Mengen benötigt
 
1636         my ($max_qty, $error) = WH->get_max_qty_parts_bin(parts_id => $key, bin_id => $part_info_map{$key}{bin_id});
 
1638           # wir können nicht entscheiden, welche charge oder mhd (bestbefore) ausgewählt sein soll
 
1639           # deshalb rückmeldung nach oben geben, manuell auszulagern
 
1640           # TODO Bei nur einem Treffer mit Charge oder bestbefore wäre das noch möglich
 
1641           $missing_default_bins{$key}{chargenumber} = 1;
 
1643         if ($max_qty < $qty_parts{$key}){
 
1644           $missing_default_bins{$key}{missing_qty} = $max_qty - $qty_parts{$key};
 
1650   # Abfrage für Fehlerbehandlung (nur bei direction == out)
 
1651   if (scalar (keys %missing_default_bins)) {
 
1653     foreach my $fehler (keys %missing_default_bins) {
 
1655       my $ware = WH->get_part_description(parts_id => $fehler);
 
1656       if ($missing_default_bins{$fehler}{missing_bin}){
 
1657         $fehlertext .= "Kein Standardlagerplatz definiert bei $ware <br>";
 
1659       if ($missing_default_bins{$fehler}{missing_qty}) {  # missing_qty
 
1660         $fehlertext .= "Es fehlen " . $missing_default_bins{$fehler}{missing_qty}*-1 .
 
1661                        " von $ware auf dem Standard-Lagerplatz " . $part_info_map{$fehler}{bin} .   " zum Auslagern<br>";
 
1663       if ($missing_default_bins{$fehler}{chargenumber}){
 
1664         $fehlertext .= "Die Ware hat eine Chargennummer oder eine Mindesthaltbarkeit definiert.
 
1665                         Hier kann man nicht automatisch entscheiden.
 
1666                         Bitte diesen Lieferschein manuell auslagern.
 
1669       # auslagern soll immer gehen, auch wenn nicht genügend auf lager ist.
 
1670       # der lagerplatz ist hier extra konfigurierbar, bspw. Lager-Korrektur mit
 
1671       # Lagerplatz Lagerplatz-Korrektur
 
1672       my $default_warehouse_id_ignore_onhand = $::instance_conf->get_warehouse_id_ignore_onhand;
 
1673       my $default_bin_id_ignore_onhand       = $::instance_conf->get_bin_id_ignore_onhand;
 
1674       if ($::instance_conf->get_transfer_default_ignore_onhand && $default_bin_id_ignore_onhand) {
 
1675         # entsprechende defaults holen
 
1676         # falls chargenumber, bestbefore oder anzahl nicht stimmt, auf automatischen
 
1677         # lagerplatz wegbuchen!
 
1678         foreach (@all_requests) {
 
1679           if ($_->{parts_id} eq $fehler){
 
1680           $_->{bin_id}        = $default_bin_id_ignore_onhand;
 
1681           $_->{warehouse_id}  = $default_warehouse_id_ignore_onhand;
 
1685         #$main::lxdebug->message(0, 'Fehlertext: ' . $fehlertext);
 
1686         $form->show_generic_error($locale->text("Cannot transfer. <br> Reason:<br>#1", $fehlertext ), 'back_button' => 1);
 
1692   # hier der eigentliche fallunterschied für in oder out
 
1693   my $prefix   = $params{direction} eq 'in' ? 'in' : 'out';
 
1695   # dieser array_ref ist für DO->save da:
 
1696   # einmal die all_requests in YAML verwandeln, damit delivery_order_items_stock
 
1697   # gefüllt werden kann.
 
1699   foreach (@all_requests){
 
1701     next unless scalar(%{ $_ });
 
1702     $form->{"stock_${prefix}_$i"} = YAML::Dump([$_]);
 
1705   save(no_redirect => 1); # Wir können auslagern, deshalb beleg speichern
 
1706                           # und in delivery_order_items_stock speichern
 
1707   DO->transfer_in_out('direction' => $prefix,
 
1708                       'requests'  => \@all_requests);
 
1710   SL::DB::DeliveryOrder->new(id => $form->{id})->load->update_attributes(delivered => 1);
 
1712   $form->{callback} = 'do.pl?action=edit&type=sales_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'out';
 
1713   $form->{callback} = 'do.pl?action=edit&type=purchase_delivery_order&id=' . $form->escape($form->{id}) if $params{direction} eq 'in';