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) 1999-2003
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #======================================================================
 
  31 # Delivery Order entry module
 
  32 #======================================================================
 
  36 use List::Util qw(max);
 
  42 use SL::DB::DeliveryOrder;
 
  45 use SL::HTML::Restrict;
 
  53   $main::lxdebug->enter_sub();
 
  57   my $myconfig = \%main::myconfig;
 
  58   my $form     = $main::form;
 
  61   my $dbh = $form->get_standard_dbh($myconfig);
 
  63   my (@where, @values, $where);
 
  65   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
 
  68     qq|SELECT dord.id, dord.donumber, dord.ordnumber, dord.cusordnumber,
 
  69          dord.transdate, dord.reqdate,
 
  70          ct.${vc}number, ct.name, dord.${vc}_id, dord.globalproject_id,
 
  71          dord.closed, dord.delivered, dord.shippingpoint, dord.shipvia,
 
  72          dord.transaction_description,
 
  73          pr.projectnumber AS globalprojectnumber,
 
  74          dep.description AS department,
 
  77        FROM delivery_orders dord
 
  78        LEFT JOIN $vc ct ON (dord.${vc}_id = ct.id)
 
  79        LEFT JOIN contacts cp ON (dord.cp_id = cp.cp_id)
 
  80        LEFT JOIN employee e ON (dord.employee_id = e.id)
 
  81        LEFT JOIN employee sm ON (dord.salesman_id = sm.id)
 
  82        LEFT JOIN project pr ON (dord.globalproject_id = pr.id)
 
  83        LEFT JOIN department dep ON (dord.department_id = dep.id)
 
  86   push @where, ($form->{type} eq 'sales_delivery_order' ? '' : 'NOT ') . qq|COALESCE(dord.is_sales, FALSE)|;
 
  88   if ($form->{department_id}) {
 
  89     push @where,  qq|dord.department_id = ?|;
 
  90     push @values, conv_i($form->{department_id});
 
  93   if ($form->{project_id}) {
 
  95       qq|(dord.globalproject_id = ?) OR EXISTS
 
  96           (SELECT * FROM delivery_order_items doi
 
  97            WHERE (doi.project_id = ?) AND (doi.delivery_order_id = dord.id))|;
 
  98     push @values, conv_i($form->{project_id}), conv_i($form->{project_id});
 
 101   if ($form->{"${vc}_id"}) {
 
 102     push @where,  qq|dord.${vc}_id = ?|;
 
 103     push @values, $form->{"${vc}_id"};
 
 105   } elsif ($form->{$vc}) {
 
 106     push @where,  qq|ct.name ILIKE ?|;
 
 107     push @values, '%' . $form->{$vc} . '%';
 
 110   if ($form->{"cp_name"}) {
 
 111     push @where, "(cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
 
 112     push @values, ('%' . $form->{"cp_name"} . '%')x2;
 
 115   foreach my $item (qw(employee_id salesman_id)) {
 
 116     next unless ($form->{$item});
 
 117     push @where, "dord.$item = ?";
 
 118     push @values, conv_i($form->{$item});
 
 120   if (!$main::auth->assert('sales_all_edit', 1)) {
 
 121     push @where, qq|dord.employee_id = (select id from employee where login= ?)|;
 
 122     push @values, $form->{login};
 
 125   foreach my $item (qw(donumber ordnumber cusordnumber transaction_description)) {
 
 126     next unless ($form->{$item});
 
 127     push @where,  qq|dord.$item ILIKE ?|;
 
 128     push @values, '%' . $form->{$item} . '%';
 
 131   if (($form->{open} || $form->{closed}) &&
 
 132       ($form->{open} ne $form->{closed})) {
 
 133     push @where, ($form->{open} ? "NOT " : "") . "COALESCE(dord.closed, FALSE)";
 
 136   if (($form->{notdelivered} || $form->{delivered}) &&
 
 137       ($form->{notdelivered} ne $form->{delivered})) {
 
 138     push @where, ($form->{delivered} ? "" : "NOT ") . "COALESCE(dord.delivered, FALSE)";
 
 141   if ($form->{serialnumber}) {
 
 142     push @where, 'dord.id IN (SELECT doi.delivery_order_id FROM delivery_order_items doi WHERE doi.serialnumber LIKE ?)';
 
 143     push @values, '%' . $form->{serialnumber} . '%';
 
 146   if($form->{transdatefrom}) {
 
 147     push @where,  qq|dord.transdate >= ?|;
 
 148     push @values, conv_date($form->{transdatefrom});
 
 151   if($form->{transdateto}) {
 
 152     push @where,  qq|dord.transdate <= ?|;
 
 153     push @values, conv_date($form->{transdateto});
 
 156   if($form->{reqdatefrom}) {
 
 157     push @where,  qq|dord.reqdate >= ?|;
 
 158     push @values, conv_date($form->{reqdatefrom});
 
 161   if($form->{reqdateto}) {
 
 162     push @where,  qq|dord.reqdate <= ?|;
 
 163     push @values, conv_date($form->{reqdateto});
 
 167     $query .= " WHERE " . join(" AND ", map { "($_)" } @where);
 
 170   my %allowed_sort_columns = (
 
 171     "transdate"               => "dord.transdate",
 
 172     "reqdate"                 => "dord.reqdate",
 
 174     "donumber"                => "dord.donumber",
 
 175     "ordnumber"               => "dord.ordnumber",
 
 177     "employee"                => "e.name",
 
 178     "salesman"                => "sm.name",
 
 179     "shipvia"                 => "dord.shipvia",
 
 180     "transaction_description" => "dord.transaction_description",
 
 181     "department"              => "lower(dep.description)",
 
 184   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
 
 185   my $sortorder = "dord.id";
 
 186   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
 
 187     $sortorder = $allowed_sort_columns{$form->{sort}};
 
 190   $query .= qq| ORDER by | . $sortorder . " $sortdir";
 
 192   $form->{DO} = selectall_hashref_query($form, $dbh, $query, @values);
 
 194   if (scalar @{ $form->{DO} }) {
 
 198          WHERE NOT COALESCE(quotation, FALSE)
 
 200            AND (COALESCE(${vc}_id, 0) != 0)|;
 
 202     my $sth = prepare_query($form, $dbh, $query);
 
 204     foreach my $dord (@{ $form->{DO} }) {
 
 205       next unless ($dord->{ordnumber});
 
 206       do_statement($form, $sth, $query, $dord->{ordnumber});
 
 207       ($dord->{oe_id}) = $sth->fetchrow_array();
 
 213   $main::lxdebug->leave_sub();
 
 217   $main::lxdebug->enter_sub();
 
 221   my $myconfig = \%main::myconfig;
 
 222   my $form     = $main::form;
 
 224   # connect to database, turn off autocommit
 
 225   my $dbh = $form->get_standard_dbh($myconfig);
 
 226   my $restricter = SL::HTML::Restrict->create;
 
 228   my ($query, @values, $sth, $null);
 
 230   my $all_units = AM->retrieve_units($myconfig, $form);
 
 231   $form->{all_units} = $all_units;
 
 233   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
 
 236   my $trans_number     = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{donumber}, id => $form->{id});
 
 237   $form->{donumber}  ||= $trans_number->create_unique;
 
 238   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
 
 239   $form->get_employee($dbh) unless ($form->{employee_id});
 
 241   my $ml = ($form->{type} eq 'sales_delivery_order') ? 1 : -1;
 
 243   my (@processed_doi, @processed_dois);
 
 247     # only delete shipto complete
 
 248     $query = qq|DELETE FROM shipto WHERE trans_id = ? AND module = 'DO'|;
 
 249     do_query($form, $dbh, $query, conv_i($form->{id}));
 
 253     $query = qq|SELECT nextval('id')|;
 
 254     ($form->{id}) = selectrow_query($form, $dbh, $query);
 
 256     $query = qq|INSERT INTO delivery_orders (id, donumber, employee_id, currency_id, taxzone_id) VALUES (?, '', ?, (SELECT currency_id FROM defaults LIMIT 1), ?)|;
 
 257     do_query($form, $dbh, $query, $form->{id}, conv_i($form->{employee_id}), $form->{taxzone_id});
 
 263   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 264   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 267   my %part_id_map = map { $_ => 1 } grep { $_ } map { $form->{"id_$_"} } (1 .. $form->{rowcount});
 
 268   my @part_ids    = keys %part_id_map;
 
 272     $query         = qq|SELECT id, unit FROM parts WHERE id IN (| . join(', ', map { '?' } @part_ids) . qq|)|;
 
 273     %part_unit_map = selectall_as_map($form, $dbh, $query, 'id', 'unit', @part_ids);
 
 276     UPDATE delivery_order_items SET
 
 277        delivery_order_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?, base_qty = ?,
 
 278        sellprice = ?, discount = ?, unit = ?, reqdate = ?, project_id = ?, serialnumber = ?,
 
 279        ordnumber = ?, transdate = ?, cusordnumber = ?,
 
 280        lastcost = ? , price_factor_id = ?, price_factor = (SELECT factor FROM price_factors where id = ?),
 
 281        marge_price_factor = ?, pricegroup_id = ?, active_price_source = ?, active_discount_source = ?
 
 284   my $h_item = prepare_query($form, $dbh, $q_item);
 
 286   my $q_item_stock = <<SQL;
 
 287     UPDATE delivery_order_items_stock SET
 
 288       delivery_order_item_id = ?, qty = ?,  unit = ?,  warehouse_id = ?,
 
 289       bin_id = ?, chargenumber = ?, bestbefore = ?
 
 292   my $h_item_stock = prepare_query($form, $dbh, $q_item_stock);
 
 294   my $in_out       = $form->{type} =~ /^sales/ ? 'out' : 'in';
 
 296   for my $i (1 .. $form->{rowcount}) {
 
 297     next if (!$form->{"id_$i"});
 
 301     if (!$form->{"delivery_order_items_id_$i"}) {
 
 302       # there is no persistent id, therefore create one with all necessary constraints
 
 303       my $q_item_id = qq|SELECT nextval('delivery_order_items_id')|;
 
 304       my $h_item_id = prepare_query($form, $dbh, $q_item_id);
 
 305       do_statement($form, $h_item_id, $q_item_id);
 
 306       $form->{"delivery_order_items_id_$i"}  = $h_item_id->fetchrow_array();
 
 307       $query = qq|INSERT INTO delivery_order_items (id, delivery_order_id, position, parts_id) VALUES (?, ?, ?, ?)|;
 
 308       do_query($form, $dbh, $query, conv_i($form->{"delivery_order_items_id_$i"}),
 
 309                 conv_i($form->{"id"}), conv_i($position), conv_i($form->{"id_$i"}));
 
 310       $h_item_id->finish();
 
 312     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 314     my $item_unit = $part_unit_map{$form->{"id_$i"}};
 
 317     if (defined($all_units->{$item_unit}->{factor}) && (($all_units->{$item_unit}->{factor} * 1) != 0)) {
 
 318       $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
 
 320     my $baseqty = $form->{"qty_$i"} * $basefactor;
 
 322     # set values to 0 if nothing entered
 
 323     $form->{"discount_$i"}  = $form->parse_amount($myconfig, $form->{"discount_$i"});
 
 324     $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
 
 325     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"});
 
 327     $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
 
 328     my $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
 
 330     $items_reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
 
 333     # Get pricegroup_id and save it. Unfortunately the interface
 
 334     # also uses ID "0" for signalling that none is selected, but "0"
 
 335     # must not be stored in the database. Therefore we cannot simply
 
 337     my $pricegroup_id = $form->{"pricegroup_id_$i"} * 1;
 
 338     $pricegroup_id    = undef if !$pricegroup_id;
 
 340     # save detail record in delivery_order_items table
 
 341     @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
 
 342                $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}),
 
 343                $form->{"qty_$i"}, $baseqty,
 
 344                $form->{"sellprice_$i"}, $form->{"discount_$i"} / 100,
 
 345                $form->{"unit_$i"}, conv_date($items_reqdate), conv_i($form->{"project_id_$i"}),
 
 346                $form->{"serialnumber_$i"},
 
 347                $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
 
 348                $form->{"cusordnumber_$i"},
 
 349                $form->{"lastcost_$i"},
 
 350                conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
 
 351                conv_i($form->{"marge_price_factor_$i"}),
 
 353                $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
 
 354                conv_i($form->{"delivery_order_items_id_$i"}));
 
 355     do_statement($form, $h_item, $q_item, @values);
 
 356     push @processed_doi, $form->{"delivery_order_items_id_$i"}; # transaction safe?
 
 358     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
 
 360     foreach my $sinfo (@{ $stock_info }) {
 
 361       # if we have stock_info, we have to check for persistents entries
 
 362       if (!$sinfo->{"delivery_order_items_stock_id"}) {
 
 363         my $q_item_stock_id = qq|SELECT nextval('id')|;
 
 364         my $h_item_stock_id = prepare_query($form, $dbh, $q_item_stock_id);
 
 365         do_statement($form, $h_item_stock_id, $q_item_stock_id);
 
 366         $sinfo->{"delivery_order_items_stock_id"} = $h_item_stock_id->fetchrow_array();
 
 367         $query = qq|INSERT INTO delivery_order_items_stock (id, delivery_order_item_id, qty, unit, warehouse_id, bin_id)
 
 368                     VALUES (?, ?, ?, ?, ?, ?)|;
 
 369         do_query($form, $dbh, $query, conv_i($sinfo->{"delivery_order_items_stock_id"}),
 
 370                   conv_i($form->{"delivery_order_items_id_$i"}), $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
 
 371                   conv_i($sinfo->{bin_id}));
 
 372        $h_item_stock_id->finish();
 
 374       @values = ($form->{"delivery_order_items_id_$i"}, $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
 
 375                  conv_i($sinfo->{bin_id}), $sinfo->{chargenumber}, conv_date($sinfo->{bestbefore}),
 
 376                  conv_i($sinfo->{"delivery_order_items_stock_id"}));
 
 377       do_statement($form, $h_item_stock, $q_item_stock, @values);
 
 378       push @processed_dois, $sinfo->{"delivery_order_items_stock_id"};
 
 381     CVar->save_custom_variables(module       => 'IC',
 
 382                                 sub_module   => 'delivery_order_items',
 
 383                                 trans_id     => $form->{"delivery_order_items_id_$i"},
 
 384                                 configs      => $ic_cvar_configs,
 
 386                                 name_prefix  => 'ic_',
 
 387                                 name_postfix => "_$i",
 
 391   # 1. search for orphaned dois; processed_dois may be empty (no transfer) TODO: be supersafe and alter same statement for doi and oi
 
 392   $query  = sprintf 'SELECT id FROM delivery_order_items_stock WHERE delivery_order_item_id in
 
 393                       (select id from delivery_order_items where delivery_order_id = ?)';
 
 394   $query .= sprintf ' AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_dois if (scalar @processed_dois);
 
 395   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_dois);
 
 396   my @orphaned_dois_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
 
 397   if (scalar @orphaned_dois_ids) {
 
 398     # clean up delivery_order_items_stock
 
 399     $query  = sprintf 'DELETE FROM delivery_order_items_stock WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_dois_ids;
 
 400     do_query($form, $dbh, $query, @orphaned_dois_ids);
 
 402   # 2. search for orphaned doi
 
 403   $query  = sprintf 'SELECT id FROM delivery_order_items WHERE delivery_order_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_doi;
 
 404   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_doi);
 
 405   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
 
 406   if (scalar @orphaned_ids) {
 
 407     # clean up delivery_order_items
 
 408     $query  = sprintf 'DELETE FROM delivery_order_items WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
 
 409     do_query($form, $dbh, $query, @orphaned_ids);
 
 412   $h_item_stock->finish();
 
 415   # reqdate is last items reqdate (?: old behaviour) if not already set
 
 416   $form->{reqdate} ||= $items_reqdate;
 
 419     qq|UPDATE delivery_orders SET
 
 420          donumber = ?, ordnumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
 
 421          customer_id = ?, reqdate = ?,
 
 422          shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, closed = ?,
 
 423          delivered = ?, department_id = ?, language_id = ?, shipto_id = ?,
 
 424          globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?,
 
 425          is_sales = ?, taxzone_id = ?, taxincluded = ?, terms = ?, currency_id = (SELECT id FROM currencies WHERE name = ?),
 
 429   @values = ($form->{donumber}, $form->{ordnumber},
 
 430              $form->{cusordnumber}, conv_date($form->{transdate}),
 
 431              conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
 
 432              conv_date($form->{reqdate}), $form->{shippingpoint}, $form->{shipvia},
 
 433              $form->{notes}, $form->{intnotes},
 
 434              $form->{closed} ? 't' : 'f', $form->{delivered} ? "t" : "f",
 
 435              conv_i($form->{department_id}), conv_i($form->{language_id}), conv_i($form->{shipto_id}),
 
 436              conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
 
 437              conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
 
 438              $form->{transaction_description},
 
 439              $form->{type} =~ /^sales/ ? 't' : 'f',
 
 440              conv_i($form->{taxzone_id}), $form->{taxincluded} ? 't' : 'f', conv_i($form->{terms}), $form->{currency},
 
 441              conv_i($form->{delivery_term_id}),
 
 442              conv_i($form->{id}));
 
 443   do_query($form, $dbh, $query, @values);
 
 445   $form->{name} = $form->{ $form->{vc} };
 
 446   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
 
 449   if (!$form->{shipto_id}) {
 
 450     $form->add_shipto($dbh, $form->{id}, "DO");
 
 453   # save printed, emailed, queued
 
 454   $form->save_status($dbh);
 
 456   # Link this delivery order to the quotations it was created from.
 
 457   RecordLinks->create_links('dbh'        => $dbh,
 
 459                             'from_table' => 'oe',
 
 460                             'from_ids'   => $form->{convert_from_oe_ids},
 
 461                             'to_table'   => 'delivery_orders',
 
 462                             'to_id'      => $form->{id},
 
 464   delete $form->{convert_from_oe_ids};
 
 466   $self->mark_orders_if_delivered('do_id' => $form->{id},
 
 467                                   'type'  => $form->{type} eq 'sales_delivery_order' ? 'sales' : 'purchase',
 
 470   my $rc = $dbh->commit();
 
 472   $form->{saved_donumber} = $form->{donumber};
 
 473   $form->{saved_ordnumber} = $form->{ordnumber};
 
 474   $form->{saved_cusordnumber} = $form->{cusordnumber};
 
 476   Common::webdav_folder($form);
 
 478   $main::lxdebug->leave_sub();
 
 483 sub mark_orders_if_delivered {
 
 484   $main::lxdebug->enter_sub();
 
 489   Common::check_params(\%params, qw(do_id type));
 
 491   my $myconfig = \%main::myconfig;
 
 492   my $form     = $main::form;
 
 494   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
 496   my @links    = RecordLinks->get_links('dbh'        => $dbh,
 
 497                                         'from_table' => 'oe',
 
 498                                         'to_table'   => 'delivery_orders',
 
 499                                         'to_id'      => $params{do_id});
 
 501   my $oe_id  = @links ? $links[0]->{from_id} : undef;
 
 503   return $main::lxdebug->leave_sub() if (!$oe_id);
 
 505   my $all_units = AM->retrieve_all_units();
 
 507   my $query     = qq|SELECT oi.parts_id, oi.qty, oi.unit, p.unit AS partunit
 
 509                      LEFT JOIN parts p ON (oi.parts_id = p.id)
 
 510                      WHERE (oi.trans_id = ?)|;
 
 511   my $sth       = prepare_execute_query($form, $dbh, $query, $oe_id);
 
 513   my %shipped   = $self->get_shipped_qty('type'  => $params{type},
 
 517   while (my $ref = $sth->fetchrow_hashref()) {
 
 518     $ref->{baseqty} = $ref->{qty} * $all_units->{$ref->{unit}}->{factor} / $all_units->{$ref->{partunit}}->{factor};
 
 520     if ($ordered{$ref->{parts_id}}) {
 
 521       $ordered{$ref->{parts_id}}->{baseqty} += $ref->{baseqty};
 
 523       $ordered{$ref->{parts_id}}             = $ref;
 
 529   map { $_->{baseqty} = $_->{qty} * $all_units->{$_->{unit}}->{factor} / $all_units->{$_->{partunit}}->{factor} } values %shipped;
 
 532   foreach my $part (values %ordered) {
 
 533     if (!$shipped{$part->{parts_id}} || ($shipped{$part->{parts_id}}->{baseqty} < $part->{baseqty})) {
 
 540     $query = qq|UPDATE oe
 
 543     do_query($form, $dbh, $query, $oe_id);
 
 544     $dbh->commit() if (!$params{dbh});
 
 547   $main::lxdebug->leave_sub();
 
 551   $main::lxdebug->enter_sub();
 
 556   Common::check_params(\%params, qw(ids));
 
 558   if (('ARRAY' ne ref $params{ids}) || !scalar @{ $params{ids} }) {
 
 559     $main::lxdebug->leave_sub();
 
 563   my $myconfig = \%main::myconfig;
 
 564   my $form     = $main::form;
 
 566   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
 568   my $query    = qq|UPDATE delivery_orders SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar(@{ $params{ids} })) . qq|)|;
 
 570   do_query($form, $dbh, $query, map { conv_i($_) } @{ $params{ids} });
 
 572   $dbh->commit() unless ($params{dbh});
 
 574   $main::lxdebug->leave_sub();
 
 578   $main::lxdebug->enter_sub();
 
 582   my $myconfig = \%main::myconfig;
 
 583   my $form     = $main::form;
 
 584   my $spool    = $::lx_office_conf{paths}->{spool};
 
 586   my $rc = SL::DB::Order->new->db->with_transaction(sub {
 
 587     my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $form->{id} ]) };
 
 589     SL::DB::DeliveryOrder->new(id => $form->{id})->delete;
 
 591     my $spool = $::lx_office_conf{paths}->{spool};
 
 592     unlink map { "$spool/$_" } @spoolfiles if $spool;
 
 597   $main::lxdebug->leave_sub();
 
 603   $main::lxdebug->enter_sub();
 
 608   my $myconfig = \%main::myconfig;
 
 609   my $form     = $main::form;
 
 611   # connect to database
 
 612   my $dbh = $form->get_standard_dbh($myconfig);
 
 614   my ($query, $query_add, @values, $sth, $ref);
 
 616   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
 
 619   my $vc   = $params{vc} eq 'customer' ? 'customer' : 'vendor';
 
 621   my $mode = !$params{ids} ? 'default' : ref $params{ids} eq 'ARRAY' ? 'multi' : 'single';
 
 623   if ($mode eq 'default') {
 
 624     $ref = selectfirst_hashref_query($form, $dbh, qq|SELECT current_date AS transdate|);
 
 625     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 627     # if reqdate is not set from oe-workflow, set it to transdate (which is current date)
 
 628     $form->{reqdate} ||= $form->{transdate};
 
 631     $form->lastname_used($dbh, $myconfig, $vc) unless $form->{"${vc}_id"};
 
 633     $main::lxdebug->leave_sub();
 
 638   my @do_ids              = map { conv_i($_) } ($mode eq 'multi' ? @{ $params{ids} } : ($params{ids}));
 
 639   my $do_ids_placeholders = join(', ', ('?') x scalar(@do_ids));
 
 641   # retrieve order for single id
 
 642   # NOTE: this query is intended to fetch all information only ONCE.
 
 643   # so if any of these infos is important (or even different) for any item,
 
 644   # it will be killed out and then has to be fetched from the item scope query further down
 
 646     qq|SELECT dord.cp_id, dord.donumber, dord.ordnumber, dord.transdate, dord.reqdate,
 
 647          dord.shippingpoint, dord.shipvia, dord.notes, dord.intnotes,
 
 648          e.name AS employee, dord.employee_id, dord.salesman_id,
 
 649          dord.${vc}_id, cv.name AS ${vc},
 
 650          dord.closed, dord.reqdate, dord.department_id, dord.cusordnumber,
 
 651          d.description AS department, dord.language_id,
 
 653          dord.globalproject_id, dord.delivered, dord.transaction_description,
 
 654          dord.taxzone_id, dord.taxincluded, dord.terms, (SELECT cu.name FROM currencies cu WHERE cu.id=dord.currency_id) AS currency,
 
 655          dord.delivery_term_id
 
 656        FROM delivery_orders dord
 
 657        JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
 
 658        LEFT JOIN employee e ON (dord.employee_id = e.id)
 
 659        LEFT JOIN department d ON (dord.department_id = d.id)
 
 660        WHERE dord.id IN ($do_ids_placeholders)|;
 
 661   $sth = prepare_execute_query($form, $dbh, $query, @do_ids);
 
 663   delete $form->{"${vc}_id"};
 
 665   $form->{ordnumber_array} = ' ';
 
 666   $form->{cusordnumber_array} = ' ';
 
 667   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 668     if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
 
 670       $main::lxdebug->leave_sub();
 
 675     map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
 
 676     $form->{donumber_array} .= $form->{donumber} . ' ';
 
 677     $pos = index($form->{ordnumber_array},' ' . $form->{ordnumber} . ' ');
 
 679       $form->{ordnumber_array} .= $form->{ordnumber} . ' ';
 
 681     $pos = index($form->{cusordnumber_array},' ' . $form->{cusordnumber} . ' ');
 
 683       $form->{cusordnumber_array} .= $form->{cusordnumber} . ' ';
 
 688   $form->{donumber_array} =~ s/\s*$//g;
 
 689   $form->{ordnumber_array} =~ s/ //;
 
 690   $form->{ordnumber_array} =~ s/\s*$//g;
 
 691   $form->{cusordnumber_array} =~ s/ //;
 
 692   $form->{cusordnumber_array} =~ s/\s*$//g;
 
 694   $form->{saved_donumber} = $form->{donumber};
 
 695   $form->{saved_ordnumber} = $form->{ordnumber};
 
 696   $form->{saved_cusordnumber} = $form->{cusordnumber};
 
 698   # if not given, fill transdate with current_date
 
 699   $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
 
 701   if ($mode eq 'single') {
 
 702     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
 
 703     $sth   = prepare_execute_query($form, $dbh, $query, $form->{id});
 
 705     $ref   = $sth->fetchrow_hashref("NAME_lc");
 
 707     map { $form->{$_} = $ref->{$_} } keys %$ref;
 
 710     # get printed, emailed and queued
 
 711     $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
 
 712     $sth   = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
 
 714     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
 
 715       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
 
 716       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
 
 717       $form->{queued}  .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
 
 720     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
 
 726   # retrieve individual items
 
 727   # this query looks up all information about the items
 
 728   # stuff different from the whole will not be overwritten, but saved with a suffix.
 
 730     qq|SELECT doi.id AS delivery_order_items_id,
 
 731          p.partnumber, p.assembly, p.listprice, doi.description, doi.qty,
 
 732          doi.sellprice, doi.parts_id AS id, doi.unit, doi.discount, p.notes AS partnotes,
 
 733          doi.reqdate, doi.project_id, doi.serialnumber, doi.lastcost,
 
 734          doi.ordnumber, doi.transdate, doi.cusordnumber, doi.longdescription,
 
 735          doi.price_factor_id, doi.price_factor, doi.marge_price_factor, doi.pricegroup_id,
 
 736          doi.active_price_source, doi.active_discount_source,
 
 737          pr.projectnumber, dord.transdate AS dord_transdate, dord.donumber,
 
 739        FROM delivery_order_items doi
 
 740        JOIN parts p ON (doi.parts_id = p.id)
 
 741        JOIN delivery_orders dord ON (doi.delivery_order_id = dord.id)
 
 742        LEFT JOIN project pr ON (doi.project_id = pr.id)
 
 743        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 744        WHERE doi.delivery_order_id IN ($do_ids_placeholders)
 
 745        ORDER BY doi.delivery_order_id, doi.position|;
 
 747   $form->{form_details} = selectall_hashref_query($form, $dbh, $query, @do_ids);
 
 749   # Retrieve custom variables.
 
 750   foreach my $doi (@{ $form->{form_details} }) {
 
 751     my $cvars = CVar->get_custom_variables(dbh        => $dbh,
 
 753                                            sub_module => 'delivery_order_items',
 
 754                                            trans_id   => $doi->{delivery_order_items_id},
 
 756     map { $doi->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
 
 759   if ($mode eq 'single') {
 
 760     my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
 
 763       qq|SELECT id as delivery_order_items_stock_id, qty, unit, bin_id,
 
 764                 warehouse_id, chargenumber, bestbefore
 
 765          FROM delivery_order_items_stock
 
 766          WHERE delivery_order_item_id = ?|;
 
 767     my $sth = prepare_query($form, $dbh, $query);
 
 769     foreach my $doi (@{ $form->{form_details} }) {
 
 770       do_statement($form, $sth, $query, conv_i($doi->{delivery_order_items_id}));
 
 772       while (my $ref = $sth->fetchrow_hashref()) {
 
 773         push @{ $requests }, $ref;
 
 776       $doi->{"stock_${in_out}"} = YAML::Dump($requests);
 
 782   Common::webdav_folder($form);
 
 784   $main::lxdebug->leave_sub();
 
 790   $main::lxdebug->enter_sub();
 
 792   my ($self, $myconfig, $form) = @_;
 
 794   # connect to database
 
 795   my $dbh = $form->get_standard_dbh($myconfig);
 
 804   my $subtotal_header = 0;
 
 810   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
 
 812   # sort items by partsgroup
 
 813   for $i (1 .. $form->{rowcount}) {
 
 815     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
 
 816       $partsgroup = $form->{"partsgroup_$i"};
 
 818     push @partsgroup, [$i, $partsgroup];
 
 819     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
 
 825     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
 
 826     %projects_by_id = map { $_->id => $_ } @$projects;
 
 829   if ($projects_by_id{$form->{"globalproject_id"}}) {
 
 830     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
 
 831     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
 
 833     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
 
 834       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
 
 838   my $q_pg     = qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
 
 840                     JOIN parts p ON (a.parts_id = p.id)
 
 841                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
 
 844   my $h_pg     = prepare_query($form, $dbh, $q_pg);
 
 846   my $q_bin_wh = qq|SELECT (SELECT description FROM bin       WHERE id = ?) AS bin,
 
 847                            (SELECT description FROM warehouse WHERE id = ?) AS warehouse|;
 
 848   my $h_bin_wh = prepare_query($form, $dbh, $q_bin_wh);
 
 850   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
 
 854   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
 
 855   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
 
 857   $form->{TEMPLATE_ARRAYS} = { };
 
 858   IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
 
 861     qw(runningnumber number description longdescription qty unit
 
 862        partnotes serialnumber reqdate projectnumber projectdescription
 
 864        si_runningnumber si_number si_description
 
 865        si_warehouse si_bin si_chargenumber si_bestbefore
 
 866        si_qty si_qty_nofmt si_unit);
 
 868   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays);
 
 870   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
 
 871   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
 
 873   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
 
 874   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
 
 878   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
 
 881     next if (!$form->{"id_$i"});
 
 883     if ($item->[1] ne $sameitem) {
 
 884       push(@{ $form->{description} }, qq|$item->[1]|);
 
 885       $sameitem = $item->[1];
 
 887       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
 
 890     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
 
 892     # add number, description and qty to $form->{number}, ....
 
 893     if ($form->{"subtotal_$i"} && !$subtotal_header) {
 
 894       $subtotal_header = $i;
 
 895       $position = int($position);
 
 898     } elsif ($subtotal_header) {
 
 900       $position = int($position);
 
 901       $position = $position.".".$subposition;
 
 903       $position = int($position);
 
 909     my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
 
 910     my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
 
 912     push @{ $form->{TEMPLATE_ARRAYS}{runningnumber} },   $position;
 
 913     push @{ $form->{TEMPLATE_ARRAYS}{number} },          $form->{"partnumber_$i"};
 
 914     push @{ $form->{TEMPLATE_ARRAYS}{description} },     $form->{"description_$i"};
 
 915     push @{ $form->{TEMPLATE_ARRAYS}{longdescription} }, $form->{"longdescription_$i"};
 
 916     push @{ $form->{TEMPLATE_ARRAYS}{qty} },             $form->format_amount($myconfig, $form->{"qty_$i"});
 
 917     push @{ $form->{TEMPLATE_ARRAYS}{qty_nofmt} },       $form->{"qty_$i"};
 
 918     push @{ $form->{TEMPLATE_ARRAYS}{unit} },            $form->{"unit_$i"};
 
 919     push @{ $form->{TEMPLATE_ARRAYS}{partnotes} },       $form->{"partnotes_$i"};
 
 920     push @{ $form->{TEMPLATE_ARRAYS}{serialnumber} },    $form->{"serialnumber_$i"};
 
 921     push @{ $form->{TEMPLATE_ARRAYS}{reqdate} },         $form->{"reqdate_$i"};
 
 922     push @{ $form->{TEMPLATE_ARRAYS}{projectnumber} },   $project->projectnumber;
 
 923     push @{ $form->{TEMPLATE_ARRAYS}{projectdescription} }, $project->description;
 
 925     if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
 
 926       $subtotal_header     = 0;
 
 929     my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
 
 930     $totalweight += $lineweight;
 
 931     push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
 
 932     push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
 
 933     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
 
 934     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
 
 936     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
 
 938     foreach my $si (@{ $stock_info }) {
 
 941       do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id}));
 
 942       my $bin_wh = $h_bin_wh->fetchrow_hashref();
 
 944       push @{ $form->{TEMPLATE_ARRAYS}{si_runningnumber}[$si_position-1] }, $num_si;
 
 945       push @{ $form->{TEMPLATE_ARRAYS}{si_number}[$si_position-1] },        $form->{"partnumber_$i"};
 
 946       push @{ $form->{TEMPLATE_ARRAYS}{si_description}[$si_position-1] },   $form->{"description_$i"};
 
 947       push @{ $form->{TEMPLATE_ARRAYS}{si_warehouse}[$si_position-1] },     $bin_wh->{warehouse};
 
 948       push @{ $form->{TEMPLATE_ARRAYS}{si_bin}[$si_position-1] },           $bin_wh->{bin};
 
 949       push @{ $form->{TEMPLATE_ARRAYS}{si_chargenumber}[$si_position-1] },  $si->{chargenumber};
 
 950       push @{ $form->{TEMPLATE_ARRAYS}{si_bestbefore}[$si_position-1] },    $si->{bestbefore};
 
 951       push @{ $form->{TEMPLATE_ARRAYS}{si_qty}[$si_position-1] },           $form->format_amount($myconfig, $si->{qty} * 1);
 
 952       push @{ $form->{TEMPLATE_ARRAYS}{si_qty_nofmt}[$si_position-1] },     $si->{qty} * 1;
 
 953       push @{ $form->{TEMPLATE_ARRAYS}{si_unit}[$si_position-1] },          $si->{unit};
 
 956     if ($form->{"assembly_$i"}) {
 
 959       # get parts and push them onto the stack
 
 961       if ($form->{groupitems}) {
 
 963           qq|ORDER BY pg.partsgroup, a.oid|;
 
 965         $sortorder = qq|ORDER BY a.oid|;
 
 968       do_statement($form, $h_pg, $q_pg, conv_i($form->{"id_$i"}));
 
 970       while (my $ref = $h_pg->fetchrow_hashref("NAME_lc")) {
 
 971         if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
 
 972           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} @arrays));
 
 973           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
 
 974           $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
 
 975           push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
 
 979         push(@{ $form->{TEMPLATE_ARRAYS}->{"description"} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq| -- $ref->{partnumber}, $ref->{description}|);
 
 980         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} @arrays));
 
 981         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
 
 986     push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
 
 987       CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
 
 988         for @{ $ic_cvar_configs };
 
 990     push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
 
 993   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
 
 994   $form->{totalweight_nofmt} = $totalweight;
 
 995   my $defaults = AM->get_defaults();
 
 996   $form->{weightunit}        = $defaults->{weightunit};
 
1001   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
 
1002   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
 
1004   $form->{username} = $myconfig->{name};
 
1006   $main::lxdebug->leave_sub();
 
1009 sub project_description {
 
1010   $main::lxdebug->enter_sub();
 
1012   my ($self, $dbh, $id) = @_;
 
1014   my $form     =  $main::form;
 
1016   my $query = qq|SELECT description FROM project WHERE id = ?|;
 
1017   my ($value) = selectrow_query($form, $dbh, $query, $id);
 
1019   $main::lxdebug->leave_sub();
 
1024 sub unpack_stock_information {
 
1025   $main::lxdebug->enter_sub();
 
1030   Common::check_params_x(\%params, qw(packed));
 
1034   eval { $unpacked = $params{packed} ? YAML::Load($params{packed}) : []; };
 
1036   $unpacked = [] if (!$unpacked || ('ARRAY' ne ref $unpacked));
 
1038   foreach my $entry (@{ $unpacked }) {
 
1039     next if ('HASH' eq ref $entry);
 
1044   $main::lxdebug->leave_sub();
 
1049 sub get_item_availability {
 
1050   $::lxdebug->enter_sub;
 
1055   Common::check_params(\%params, qw(parts_id));
 
1057   my @parts_ids = 'ARRAY' eq ref $params{parts_id} ? @{ $params{parts_id} } : ($params{parts_id});
 
1060     qq|SELECT i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, SUM(qty) AS qty, i.parts_id,
 
1061          w.description AS warehousedescription,
 
1062          b.description AS bindescription
 
1064        LEFT JOIN warehouse w ON (i.warehouse_id = w.id)
 
1065        LEFT JOIN bin b       ON (i.bin_id       = b.id)
 
1066        WHERE (i.parts_id IN (| . join(', ', ('?') x scalar(@parts_ids)) . qq|))
 
1067        GROUP BY i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, i.parts_id, w.description, b.description
 
1069        ORDER BY LOWER(w.description), LOWER(b.description), LOWER(i.chargenumber), i.bestbefore
 
1071   my $contents = selectall_hashref_query($::form, $::form->get_standard_dbh, $query, @parts_ids);
 
1073   $::lxdebug->leave_sub;
 
1075   return @{ $contents };
 
1079 sub check_stock_availability {
 
1080   $main::lxdebug->enter_sub();
 
1085   Common::check_params(\%params, qw(requests parts_id));
 
1087   my $myconfig    = \%main::myconfig;
 
1088   my $form        =  $main::form;
 
1090   my $dbh         = $form->get_standard_dbh($myconfig);
 
1092   my $units       = AM->retrieve_units($myconfig, $form);
 
1094   my ($partunit)  = selectrow_query($form, $dbh, qq|SELECT unit FROM parts WHERE id = ?|, conv_i($params{parts_id}));
 
1095   my $unit_factor = $units->{$partunit}->{factor} || 1;
 
1097   my @contents    = $self->get_item_availability(%params);
 
1101   foreach my $sinfo (@{ $params{requests} }) {
 
1104     foreach my $row (@contents) {
 
1105       next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
 
1106                ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
 
1107                ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
 
1108                ($row->{bestbefore}   ne $sinfo->{bestbefore}));
 
1112       my $base_qty = $sinfo->{qty} * $units->{$sinfo->{unit}}->{factor} / $unit_factor;
 
1114       if ($base_qty > $row->{qty}) {
 
1115         $sinfo->{error} = 1;
 
1116         push @errors, $sinfo;
 
1122     push @errors, $sinfo if (!$found);
 
1125   $main::lxdebug->leave_sub();
 
1130 sub transfer_in_out {
 
1131   $main::lxdebug->enter_sub();
 
1136   Common::check_params(\%params, qw(direction requests));
 
1138   if (!@{ $params{requests} }) {
 
1139     $main::lxdebug->leave_sub();
 
1143   my $myconfig = \%main::myconfig;
 
1144   my $form     = $main::form;
 
1146   my $prefix   = $params{direction} eq 'in' ? 'dst' : 'src';
 
1150   foreach my $request (@{ $params{requests} }) {
 
1152       'parts_id'               => $request->{parts_id},
 
1153       "${prefix}_warehouse_id" => $request->{warehouse_id},
 
1154       "${prefix}_bin_id"       => $request->{bin_id},
 
1155       'chargenumber'           => $request->{chargenumber},
 
1156       'bestbefore'             => $request->{bestbefore},
 
1157       'qty'                    => $request->{qty},
 
1158       'unit'                   => $request->{unit},
 
1159       'oe_id'                  => $form->{id},
 
1160       'shippingdate'           => 'current_date',
 
1161       'transfer_type'          => $params{direction} eq 'in' ? 'stock' : 'shipped',
 
1162       'project_id'             => $request->{project_id},
 
1166   WH->transfer(@transfers);
 
1168   $main::lxdebug->leave_sub();
 
1171 sub get_shipped_qty {
 
1172   $main::lxdebug->enter_sub();
 
1177   Common::check_params(\%params, qw(type oe_id));
 
1179   my $myconfig = \%main::myconfig;
 
1180   my $form     = $main::form;
 
1182   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1184   my @links    = RecordLinks->get_links('dbh'        => $dbh,
 
1185                                         'from_table' => 'oe',
 
1186                                         'from_id'    => $params{oe_id},
 
1187                                         'to_table'   => 'delivery_orders');
 
1188   my @values   = map { $_->{to_id} } @links;
 
1190   if (!scalar @values) {
 
1191     $main::lxdebug->leave_sub();
 
1196     qq|SELECT doi.parts_id, doi.qty, doi.unit, p.unit AS partunit
 
1197        FROM delivery_order_items doi
 
1198        LEFT JOIN delivery_orders o ON (doi.delivery_order_id = o.id)
 
1199        LEFT JOIN parts p ON (doi.parts_id = p.id)
 
1200        WHERE o.id IN (| . join(', ', ('?') x scalar @values) . qq|)|;
 
1203   my $entries   = selectall_hashref_query($form, $dbh, $query, @values);
 
1204   my $all_units = AM->retrieve_all_units();
 
1206   foreach my $entry (@{ $entries }) {
 
1207     $entry->{qty} *= AM->convert_unit($entry->{unit}, $entry->{partunit}, $all_units);
 
1209     if (!$ship{$entry->{parts_id}}) {
 
1210       $ship{$entry->{parts_id}} = $entry;
 
1212       $ship{$entry->{parts_id}}->{qty} += $entry->{qty};
 
1216   $main::lxdebug->leave_sub();
 
1221 sub is_marked_as_delivered {
 
1222   $main::lxdebug->enter_sub();
 
1227   Common::check_params(\%params, qw(id));
 
1229   my $myconfig    = \%main::myconfig;
 
1230   my $form        = $main::form;
 
1232   my $dbh         = $params{dbh} || $form->get_standard_dbh($myconfig);
 
1234   my ($delivered) = selectfirst_array_query($form, $dbh, qq|SELECT delivered FROM delivery_orders WHERE id = ?|, conv_i($params{id}));
 
1236   $main::lxdebug->leave_sub();
 
1238   return $delivered ? 1 : 0;