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 #======================================================================
 
  33 #======================================================================
 
  43   $main::lxdebug->enter_sub();
 
  48     $main::lxdebug->leave_sub();
 
  52   my $myconfig = \%main::myconfig;
 
  53   my $form     = $main::form;
 
  55   my $dbh      = $form->get_standard_dbh($myconfig);
 
  57   my $units    = AM->retrieve_units($myconfig, $form);
 
  59   my $query    = qq|SELECT * FROM transfer_type|;
 
  60   my $sth      = prepare_execute_query($form, $dbh, $query);
 
  64   while (my $ref = $sth->fetchrow_hashref()) {
 
  65     $transfer_types{$ref->{direction}} ||= { };
 
  66     $transfer_types{$ref->{direction}}->{$ref->{description}} = $ref->{id};
 
  69   my @part_ids  = map { $_->{parts_id} } @_;
 
  70   my %partunits = selectall_as_map($form, $dbh, qq|SELECT id, unit FROM parts WHERE id IN (| . join(', ', map { '?' } @part_ids ) . qq|)|, 'id', 'unit', @part_ids);
 
  72   my ($now)     = selectrow_query($form, $dbh, qq|SELECT current_date|);
 
  74   $query = qq|INSERT INTO inventory (warehouse_id, bin_id, parts_id, chargenumber, oe_id, orderitems_id, shippingdate,
 
  75                                      employee_id, project_id, trans_id, trans_type_id, comment, qty)
 
  76               VALUES (?, ?, ?, ?, ?, ?, ?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?, ?, ?)|;
 
  78   $sth   = prepare_query($form, $dbh, $query);
 
  80   my @directions = (undef, 'out', 'in', 'transfer');
 
  84     my ($trans_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
 
  86     my ($direction, @values) = (0);
 
  88     $direction |= 1 if ($transfer->{src_warehouse_id} && $transfer->{src_bin_id});
 
  89     $direction |= 2 if ($transfer->{dst_warehouse_id} && $transfer->{dst_bin_id});
 
  91     push @values, conv_i($transfer->{parts_id}), "$transfer->{chargenumber}", conv_i($transfer->{oe_id}), conv_i($transfer->{orderitems_id});
 
  92     push @values, $transfer->{shippingdate} eq 'current_date' ? $now : conv_date($transfer->{shippingdate}), $form->{login}, conv_i($transfer->{project_id}), $trans_id;
 
  94     if ($transfer->{transfer_type_id}) {
 
  95       push @values, $transfer->{transfer_type_id};
 
  97       push @values, $transfer_types{$directions[$direction]}->{$transfer->{transfer_type}};
 
 100     push @values, "$transfer->{comment}";
 
 102     my $qty = $transfer->{qty};
 
 104     if ($transfer->{unit}) {
 
 105       my $partunit = $partunits{$transfer->{parts_id}};
 
 107       $qty *= $units->{$transfer->{unit}}->{factor};
 
 108       $qty /= $units->{$partunit}->{factor} || 1 if ($partunit);
 
 111     if ($direction & 1) {
 
 112       do_statement($form, $sth, $query, conv_i($transfer->{src_warehouse_id}), conv_i($transfer->{src_bin_id}), @values, $qty * -1);
 
 115     if ($direction & 2) {
 
 116       do_statement($form, $sth, $query, conv_i($transfer->{dst_warehouse_id}), conv_i($transfer->{dst_bin_id}), @values, $qty);
 
 124   $main::lxdebug->leave_sub();
 
 127 sub transfer_assembly {
 
 128   $main::lxdebug->enter_sub();
 
 132   Common::check_params(\%params, qw(assembly_id dst_warehouse_id login qty unit dst_bin_id chargenumber comment));
 
 134 #  my $maxcreate=WH->check_assembly_max_create(assembly_id =>$params{'assembly_id'}, dbh => $my_dbh);
 
 136   my $myconfig = \%main::myconfig;
 
 137   my $form     = $main::form;
 
 138   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
 
 143   # ... Standard-Check oben Ende. Hier die eigentliche SQL-Abfrage
 
 144   # select parts_id,qty from assembly where id=1064;
 
 145   # Erweiterung für bug 935 am 23.4.09 - Erzeugnisse können Dienstleistungen enthalten, die ja nicht 'lagerbar' sind.
 
 146   # select parts_id,qty from assembly inner join parts on assembly.parts_id = parts.id  where assembly.id=1066 and inventory_accno_id IS NOT NULL;
 
 147   # Erweiterung für bug 23.4.09 -2 Erzeugnisse in Erzeugnissen können nicht ausgelagert werden, wenn assembly nicht überprüft wird ...
 
 148   # patch von joachim eingespielt 24.4.2009:
 
 149   # my $query    = qq|select parts_id,qty from assembly inner join parts
 
 150   # on assembly.parts_id = parts.id  where assembly.id = ? and
 
 151   # (inventory_accno_id IS NOT NULL or parts.assembly = TRUE)|;
 
 154   # my $query    = qq|select parts_id,qty from assembly where id = ?|;
 
 155   my $query     = qq|select parts_id,qty from assembly inner join parts on assembly.parts_id = parts.id  where assembly.id = ? and (inventory_accno_id IS NOT NULL or parts.assembly = TRUE)|;
 
 157   my $sth_part_qty_assembly      = prepare_execute_query($form, $dbh, $query, $params{assembly_id});
 
 159   # Hier wird das prepared Statement für die Schleife über alle Lagerplätze vorbereitet
 
 160   my $transferPartSQL = qq|INSERT INTO inventory (parts_id, warehouse_id, bin_id, chargenumber, comment, employee_id, qty, trans_id, trans_type_id)
 
 161                             VALUES (?, ?, ?, ?, ?,(SELECT id FROM employee WHERE login = ?), ?, nextval('id'), 
 
 162                                     (SELECT id FROM transfer_type WHERE direction = 'out' AND description = 'used'))|;
 
 163   my $sthTransferPartSQL   = prepare_query($form, $dbh, $transferPartSQL);
 
 165   my $kannNichtFertigen ="";    # der return-string für die fehlermeldung inkl. welche waren zum fertigen noch fehlen
 
 167   while (my $hash_ref = $sth_part_qty_assembly->fetchrow_hashref()) {   # Schleife für $query=select parts_id,qty from assembly 
 
 169     my $partsQTY = $hash_ref->{qty} * $params{qty}; # benötigte teile * anzahl erzeugnisse
 
 170     my $currentPart_ID = $hash_ref->{parts_id};
 
 172     # Überprüfen, ob diese Anzahl gefertigt werden kann
 
 173     my $max_parts = get_max_qty_parts($self, parts_id => $currentPart_ID, warehouse_id => $params{dst_warehouse_id}); #$self angeben, damit die Standardkonvention (Name, Parameter) eingehalten wird
 
 175     if ($partsQTY  > $max_parts){
 
 176       # Gibt es hier ein Problem mit nicht "escapten" Zeichen? 25.4.09 Antwort: Ja.  Aber erst wenn im Frontend die locales-Funktion aufgerufen wird
 
 177       $kannNichtFertigen .= "Zum Fertigen fehlen:" . abs($partsQTY - $max_parts) . " Einheiten der Ware:" . get_part_description($self, parts_id => $currentPart_ID) . ", um das Erzeugnis herzustellen. <br>"; # Konnte die Menge nicht mit der aktuellen Anzahl der Waren fertigen
 
 178       next;     # die weiteren Überprüfungen sind unnötig
 
 181     # Eine kurze Vorabfrage, um den Lagerplatz und die Chargennummber zu bestimmen
 
 182     # Offen: Die Summe über alle Lagerplätze wird noch nicht gebildet
 
 183     # Gelöst: Wir haben vorher schon die Abfrage durchgeführt, ob wir fertigen können.
 
 184     # Noch besser gelöst: Wir laufen durch alle benötigten Waren zum Fertigen und geben eine Rückmeldung an den Benutzer was noch fehlt
 
 185     # und lösen den Rest dann so wie bei xplace im Barcode-Programm
 
 186     # S.a. Kommentar im bin/mozilla-Code mb übernimmt und macht das in ordentlich
 
 188     my $tempquery =     qq|SELECT SUM(qty), bin_id, chargenumber   FROM inventory  WHERE warehouse_id = ? AND parts_id = ?  GROUP BY bin_id, chargenumber having SUM(qty)>0|;
 
 189     my $tempsth   =     prepare_execute_query($form, $dbh, $tempquery, $params{dst_warehouse_id}, $currentPart_ID);
 
 191     # Alle Werte zu dem einzelnen Artikel, die wir später auslagern
 
 192     my $tmpPartsQTY = $partsQTY;
 
 194     while (my $temphash_ref = $tempsth->fetchrow_hashref()) {
 
 195       my $temppart_bin_id       = $temphash_ref->{bin_id}; # kann man hier den quelllagerplatz beim verbauen angeben?
 
 196       my $temppart_chargenumber = $temphash_ref->{chargenumber};
 
 197       my $temppart_qty  = $temphash_ref->{sum};
 
 198       if ($tmpPartsQTY > $temppart_qty) {       # wir haben noch mehr waren zum wegbuchen. Wir buchen den kompletten Lagerplatzbestand und zählen die Hilfsvariable runter
 
 199         $tmpPartsQTY = $tmpPartsQTY - $temppart_qty;
 
 200         $temppart_qty = $temppart_qty * -1;     # beim analyiseren des sql-trace, war dieser wert positiv, wenn * -1 als berechnung in der parameter-übergabe angegeben wird. Dieser Wert IST und BLEIBT positiv!! Hilfe. Liegt das daran, dass dieser Wert aus einem SQL-Statement stammt?
 
 201         do_statement($form, $sthTransferPartSQL, $transferPartSQL, $currentPart_ID, $params{dst_warehouse_id}, $temppart_bin_id, $temppart_chargenumber, 'Verbraucht für ' . get_part_description($self, parts_id => $params{assembly_id}), $params{login}, $temppart_qty);
 
 203         # hier ist noch ein fehler am besten mit definierten erzeugnissen debuggen 02/2009 jb
 
 204         # idee: ausbuch algorithmus mit rekursion lösen und an- und abschaltbar machen
 
 205         # das problem könnte sein, dass strict nicht an war und sth global eine andere zuweisung bekam
 
 206         # auf jeden fall war der internal-server-error nach aktivierung von strict und warnings plus ein paar my-definitionen weg
 
 207       } else {  # okay, wir haben weniger oder gleich Waren die wir wegbuchen müssen, wir können also aufhören
 
 209         do_statement($form, $sthTransferPartSQL, $transferPartSQL, $currentPart_ID, $params{dst_warehouse_id}, $temppart_bin_id, $temppart_chargenumber, 'Verbraucht für ' . get_part_description($self, parts_id => $params{assembly_id}), $params{login}, $tmpPartsQTY);
 
 210         last;   # beendet die schleife (springt zum letzten element)
 
 212     }   # ende while SELECT SUM(qty), bin_id, chargenumber   FROM inventory  WHERE warehouse_id
 
 213   } #ende while select parts_id,qty from assembly where id = ?
 
 214   if ($kannNichtFertigen) {
 
 215     return $kannNichtFertigen;
 
 218   # soweit alles gut. Jetzt noch die wirkliche Lagerbewegung für das Erzeugnis ausführen ... 
 
 219   my $transferAssemblySQL = qq|INSERT INTO inventory (parts_id, warehouse_id, bin_id, chargenumber, comment, employee_id, qty, trans_id, trans_type_id)
 
 220                             VALUES (?, ?, ?, ?, ?, (SELECT id FROM employee WHERE login = ?), ?, nextval('id'), 
 
 221                                     (SELECT id FROM transfer_type WHERE direction = 'in' AND description = 'stock'))|;
 
 222   my $sthTransferAssemblySQL   = prepare_query($form, $dbh, $transferAssemblySQL);
 
 223   do_statement($form, $sthTransferAssemblySQL, $transferAssemblySQL, $params{assembly_id}, $params{dst_warehouse_id}, $params{dst_bin_id}, $params{chargenumber}, $params{comment}, $params{login}, $params{qty});
 
 226   $main::lxdebug->leave_sub();
 
 227   return 1;     # Alles erfolgreich
 
 230 sub get_warehouse_journal {
 
 231   $main::lxdebug->enter_sub();
 
 236   my $myconfig  = \%main::myconfig;
 
 237   my $form      = $main::form;
 
 239   my $all_units = AM->retrieve_units($myconfig, $form);
 
 241   # connect to database
 
 242   my $dbh = $form->get_standard_dbh($myconfig);
 
 245   my (@filter_ary, @filter_vars, $joins);
 
 247   if ($filter{warehouse_id} ne '') {
 
 248     push @filter_ary, "w1.id = ? OR w2.id = ?";
 
 249     push @filter_vars, $filter{warehouse_id}, $filter{warehouse_id};
 
 252   if ($filter{bin_id} ne '') {
 
 253     push @filter_ary, "b1.id = ? OR b2.id = ?";
 
 254     push @filter_vars, $filter{bin_id}, $filter{bin_id};
 
 257   if ($filter{partnumber}) {
 
 258     push @filter_ary, "p.partnumber ILIKE ?";
 
 259     push @filter_vars, '%' . $filter{partnumber} . '%';
 
 262   if ($filter{description}) {
 
 263     push @filter_ary, "(p.description ILIKE ?)";
 
 264     push @filter_vars, '%' . $filter{description} . '%';
 
 267   if ($filter{chargenumber}) {
 
 268     push @filter_ary, "i1.chargenumber ILIKE ?";
 
 269     push @filter_vars, '%' . $filter{chargenumber} . '%';
 
 272   if ($form->{fromdate}) {
 
 273     push @filter_ary, "?::DATE <= i1.itime::DATE";
 
 274     push @filter_vars, $form->{fromdate};
 
 277   if ($form->{todate}) {
 
 278     push @filter_ary, "?::DATE >= i1.itime::DATE";
 
 279     push @filter_vars, $form->{todate};
 
 282   if ($form->{l_employee}) {
 
 286   # prepare qty comparison for later filtering
 
 287   my ($f_qty_op, $f_qty, $f_qty_base_unit);
 
 288   if ($filter{qty_op} && defined($filter{qty}) && $filter{qty_unit} && $all_units->{$filter{qty_unit}}) {
 
 289     $f_qty_op        = $filter{qty_op};
 
 290     $f_qty           = $filter{qty} * $all_units->{$filter{qty_unit}}->{factor};
 
 291     $f_qty_base_unit = $all_units->{$filter{qty_unit}}->{base_unit};
 
 294   map { $_ = "(${_})"; } @filter_ary;
 
 296   # if of a property number or description is requested,
 
 297   # automatically check the matching id too.
 
 298   map { $form->{"l_${_}id"} = "Y" if ($form->{"l_${_}description"} || $form->{"l_${_}number"}); } qw(warehouse bin);
 
 300   # customize shown entry for not available fields.
 
 301   $filter{na} = '-' unless $filter{na};
 
 303   # make order, search in $filter and $form
 
 304   my $sort_col   = $form->{sort};
 
 305   my $sort_order = $form->{order};
 
 307   $sort_col      = $filter{sort}         unless $sort_col;
 
 308   $sort_order    = ($sort_col = 'itime') unless $sort_col;
 
 309   $sort_col      = 'itime'               if     $sort_col eq 'date';
 
 310   $sort_order    = $filter{order}        unless $sort_order;
 
 311   my $sort_spec  = "${sort_col} " . ($sort_order ? " DESC" : " ASC");
 
 313   my $where_clause = join(" AND ", @filter_ary) . " AND " if (@filter_ary);
 
 315   $select_tokens{'trans'} = {
 
 316      "parts_id"             => "i1.parts_id",
 
 317      "qty"                  => "ABS(SUM(i1.qty))",
 
 318      "partnumber"           => "p.partnumber",
 
 319      "partdescription"      => "p.description",
 
 320      "bindescription"       => "b.description",
 
 321      "chargenumber"         => "i1.chargenumber",
 
 322      "warehousedescription" => "w.description",
 
 323      "partunit"             => "p.unit",
 
 324      "bin_from"             => "b1.description",
 
 325      "bin_to"               => "b2.description",
 
 326      "warehouse_from"       => "w1.description",
 
 327      "warehouse_to"         => "w2.description",
 
 328      "comment"              => "i1.comment",
 
 329      "trans_type"           => "tt.description",
 
 330      "trans_id"             => "i1.trans_id",
 
 331      "date"                 => "i1.itime::DATE",
 
 332      "itime"                => "i1.itime",
 
 333      "employee"             => "e.name",
 
 334      "projectnumber"        => "COALESCE(pr.projectnumber, '$filter{na}')",
 
 337   $select_tokens{'out'} = {
 
 338      "bin_to"               => "'$filter{na}'",
 
 339      "warehouse_to"         => "'$filter{na}'",
 
 342   $select_tokens{'in'} = {
 
 343      "bin_from"             => "'$filter{na}'",
 
 344      "warehouse_from"       => "'$filter{na}'",
 
 347   # build the select clauses.
 
 348   # take all the requested ones from the first hash and overwrite them from the out/in hashes if present.
 
 349   for my $i ('trans', 'out', 'in') {
 
 350     $select{$i} = join ', ', map { +/^l_/; ($select_tokens{$i}{"$'"} || $select_tokens{'trans'}{"$'"}) . " AS r_$'" }
 
 351           ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_qty l_partunit l_itime) );
 
 354   my $group_clause = join ", ", map { +/^l_/; "r_$'" }
 
 355         ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_partunit l_itime) );
 
 358   qq|SELECT DISTINCT $select{trans}
 
 360     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
 
 361     LEFT JOIN parts p ON i1.parts_id = p.id
 
 362     LEFT JOIN bin b1 ON i1.bin_id = b1.id
 
 363     LEFT JOIN bin b2 ON i2.bin_id = b2.id
 
 364     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
 
 365     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
 
 366     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
 
 367     LEFT JOIN project pr ON i1.project_id = pr.id
 
 368     LEFT JOIN employee e ON i1.employee_id = e.id
 
 369     WHERE $where_clause i2.qty = -i1.qty AND i2.qty > 0 AND
 
 370           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 2 )
 
 371     GROUP BY $group_clause
 
 375     SELECT DISTINCT $select{out}
 
 377     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
 
 378     LEFT JOIN parts p ON i1.parts_id = p.id
 
 379     LEFT JOIN bin b1 ON i1.bin_id = b1.id
 
 380     LEFT JOIN bin b2 ON i2.bin_id = b2.id
 
 381     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
 
 382     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
 
 383     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
 
 384     LEFT JOIN project pr ON i1.project_id = pr.id
 
 385     LEFT JOIN employee e ON i1.employee_id = e.id
 
 386     WHERE $where_clause i1.qty < 0 AND
 
 387           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
 
 388     GROUP BY $group_clause
 
 392     SELECT DISTINCT $select{in}
 
 394     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
 
 395     LEFT JOIN parts p ON i1.parts_id = p.id
 
 396     LEFT JOIN bin b1 ON i1.bin_id = b1.id
 
 397     LEFT JOIN bin b2 ON i2.bin_id = b2.id
 
 398     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
 
 399     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
 
 400     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
 
 401     LEFT JOIN project pr ON i1.project_id = pr.id
 
 402     LEFT JOIN employee e ON i1.employee_id = e.id
 
 403     WHERE $where_clause i1.qty > 0 AND
 
 404           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
 
 405     GROUP BY $group_clause
 
 406     ORDER BY r_${sort_spec}|;
 
 408   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars, @filter_vars, @filter_vars);
 
 411   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 412     map { /^r_/; $ref->{"$'"} = $ref->{$_} } keys %$ref;
 
 413     my $qty = $ref->{"qty"} * 1;
 
 415     next unless ($qty > 0);
 
 418       my $part_unit = $all_units->{$ref->{"partunit"}};
 
 419       next unless ($part_unit && ($part_unit->{"base_unit"} eq $f_qty_base_unit));
 
 420       $qty *= $part_unit->{"factor"};
 
 421       next if (('=' eq $f_qty_op) && ($qty != $f_qty));
 
 422       next if (('>=' eq $f_qty_op) && ($qty < $f_qty));
 
 423       next if (('<=' eq $f_qty_op) && ($qty > $f_qty));
 
 426     push @contents, $ref;
 
 431   $main::lxdebug->leave_sub();
 
 437 # This sub is the primary function to retrieve information about items in warehouses.
 
 438 # $filter is a hashref and supports the following keys:
 
 439 #  - warehouse_id - will return matches with this warehouse_id only
 
 440 #  - partnumber   - will return only matches where the given string is a substring of the partnumber
 
 441 #  - partsid      - will return matches with this parts_id only
 
 442 #  - description  - will return only matches where the given string is a substring of the description
 
 443 #  - chargenumber - will return only matches where the given string is a substring of the chargenumber
 
 444 #  - ean          - will return only matches where the given string is a substring of the ean as stored in the table parts (article)
 
 445 #  - charge_ids   - must be an arrayref. will return contents with these ids only
 
 446 #  - expires_in   - will only return matches that expire within the given number of days
 
 447 #                   will also add a column named 'has_expired' containing if the match has already expired or not
 
 448 #  - hazardous    - will return matches with the flag hazardous only
 
 449 #  - oil          - will return matches with the flag oil only
 
 450 #  - qty, qty_op  - quantity filter (more info to come)
 
 451 #  - sort, order_by - sorting (more to come)
 
 452 #  - reservation  - will provide an extra column containing the amount reserved of this match
 
 453 # note: reservation flag turns off warehouse_* or bin_* information. both together don't make sense, since reserved info is stored separately
 
 455 sub get_warehouse_report {
 
 456   $main::lxdebug->enter_sub();
 
 461   my $myconfig  = \%main::myconfig;
 
 462   my $form      = $main::form;
 
 464   my $all_units = AM->retrieve_units($myconfig, $form);
 
 466   # connect to database
 
 467   my $dbh = $form->get_standard_dbh($myconfig);
 
 470   my (@filter_ary, @filter_vars, @wh_bin_filter_ary, @wh_bin_filter_vars);
 
 472   delete $form->{include_empty_bins} unless ($form->{l_warehousedescription} || $form->{l_bindescription});
 
 474   if ($filter{warehouse_id}) {
 
 475     push @wh_bin_filter_ary,  "w.id = ?";
 
 476     push @wh_bin_filter_vars, $filter{warehouse_id};
 
 479   if ($filter{bin_id}) {
 
 480     push @wh_bin_filter_ary,  "b.id = ?";
 
 481     push @wh_bin_filter_vars, $filter{bin_id};
 
 484   push @filter_ary,  @wh_bin_filter_ary;
 
 485   push @filter_vars, @wh_bin_filter_vars;
 
 487   if ($filter{partnumber}) {
 
 488     push @filter_ary,  "p.partnumber ILIKE ?";
 
 489     push @filter_vars, '%' . $filter{partnumber} . '%';
 
 492   if ($filter{description}) {
 
 493     push @filter_ary,  "p.description ILIKE ?";
 
 494     push @filter_vars, '%' . $filter{description} . '%';
 
 497   if ($filter{partsid}) {
 
 498     push @filter_ary,  "p.id = ?";
 
 499     push @filter_vars, $filter{partsid};
 
 502   if ($filter{chargenumber}) {
 
 503     push @filter_ary,  "i.chargenumber ILIKE ?";
 
 504     push @filter_vars, '%' . $filter{chargenumber} . '%';
 
 507     push @filter_ary,  "p.ean ILIKE ?";
 
 508     push @filter_vars, '%' . $filter{ean} . '%';
 
 511   # prepare qty comparison for later filtering
 
 512   my ($f_qty_op, $f_qty, $f_qty_base_unit);
 
 514   if ($filter{qty_op} && defined $filter{qty} && $filter{qty_unit} && $all_units->{$filter{qty_unit}}) {
 
 515     $f_qty_op        = $filter{qty_op};
 
 516     $f_qty           = $filter{qty} * $all_units->{$filter{qty_unit}}->{factor};
 
 517     $f_qty_base_unit = $all_units->{$filter{qty_unit}}->{base_unit};
 
 520   map { $_ = "(${_})"; } @filter_ary;
 
 522   # if of a property number or description is requested,
 
 523   # automatically check the matching id too.
 
 524   map { $form->{"l_${_}id"} = "Y" if ($form->{"l_${_}description"} || $form->{"l_${_}number"}); } qw(warehouse bin);
 
 526   # make order, search in $filter and $form
 
 527   my $sort_col    =  $form->{sort};
 
 528   my $sort_order  = $form->{order};
 
 530   $sort_col       =  $filter{sort}  unless $sort_col;
 
 531   $sort_col       =  "parts_id"     unless $sort_col;
 
 532   $sort_order     =  $filter{order} unless $sort_order;
 
 533   $sort_col       =~ s/ASC|DESC//; # kill stuff left in from previous queries
 
 534   my $orderby     =  $sort_col;
 
 535   my $sort_spec   =  "${sort_col} " . ($sort_order ? " DESC" : " ASC");
 
 537   my $where_clause = join " AND ", ("1=1", @filter_ary);
 
 539   my %select_tokens = (
 
 540      "parts_id"              => "i.parts_id",
 
 541      "qty"                  => "SUM(i.qty)",
 
 542      "warehouseid"          => "i.warehouse_id",
 
 543      "partnumber"           => "p.partnumber",
 
 544      "partdescription"      => "p.description",
 
 545      "bindescription"       => "b.description",
 
 547      "chargenumber"         => "i.chargenumber",
 
 549      "chargeid"             => "c.id",
 
 550      "warehousedescription" => "w.description",
 
 551      "partunit"             => "p.unit",
 
 552      "stock_value"          => "p.lastcost / COALESCE(pfac.factor, 1)",
 
 554   my $select_clause = join ', ', map { +/^l_/; "$select_tokens{$'} AS $'" }
 
 555         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
 
 556           qw(l_parts_id l_qty l_partunit) );
 
 558   my $group_clause = join ", ", map { +/^l_/; "$'" }
 
 559         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
 
 560           qw(l_parts_id l_partunit) );
 
 563     "stock_value" => "LEFT JOIN price_factors pfac ON (p.price_factor_id = pfac.id)",
 
 566   my $joins = join ' ', grep { $_ } map { +/^l_/; $join_tokens{"$'"} }
 
 567         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
 
 568           qw(l_parts_id l_qty l_partunit) );
 
 571     qq|SELECT $select_clause
 
 573       LEFT JOIN parts     p ON i.parts_id     = p.id
 
 574       LEFT JOIN bin       b ON i.bin_id       = b.id
 
 575       LEFT JOIN warehouse w ON i.warehouse_id = w.id
 
 578       GROUP BY $group_clause
 
 579       ORDER BY $sort_spec|;
 
 581   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars);
 
 583   my (%non_empty_bins, @all_fields, @contents);
 
 585   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
 
 587     my $qty      = $ref->{qty};
 
 589     next unless ($qty != 0);
 
 592       my $part_unit = $all_units->{$ref->{partunit}};
 
 593       next if (!$part_unit || ($part_unit->{base_unit} ne $f_qty_base_unit));
 
 594       $qty *= $part_unit->{factor};
 
 595       next if (('='  eq $f_qty_op) && ($qty != $f_qty));
 
 596       next if (('>=' eq $f_qty_op) && ($qty <  $f_qty));
 
 597       next if (('<=' eq $f_qty_op) && ($qty >  $f_qty));
 
 600     if ($form->{include_empty_bins}) {
 
 601       $non_empty_bins{$ref->{binid}} = 1;
 
 602       @all_fields                    = keys %{ $ref } unless (@all_fields);
 
 605     $ref->{stock_value} = ($ref->{stock_value} || 0) * $ref->{qty};
 
 607     push @contents, $ref;
 
 612   if ($form->{include_empty_bins}) {
 
 615            w.id AS warehouseid, w.description AS warehousedescription,
 
 616            b.id AS binid, b.description AS bindescription
 
 618          LEFT JOIN warehouse w ON (b.warehouse_id = w.id)|;
 
 620     @filter_ary  = @wh_bin_filter_ary;
 
 621     @filter_vars = @wh_bin_filter_vars;
 
 623     my @non_empty_bin_ids = keys %non_empty_bins;
 
 624     if (@non_empty_bin_ids) {
 
 625       push @filter_ary,  qq|NOT b.id IN (| . join(', ', map { '?' } @non_empty_bin_ids) . qq|)|;
 
 626       push @filter_vars, @non_empty_bin_ids;
 
 629     $query .= qq| WHERE | . join(' AND ', map { "($_)" } @filter_ary) if (@filter_ary);
 
 631     $sth    = prepare_execute_query($form, $dbh, $query, @filter_vars);
 
 633     while (my $ref = $sth->fetchrow_hashref()) {
 
 634       map { $ref->{$_} ||= "" } @all_fields;
 
 635       push @contents, $ref;
 
 639     if (grep { $orderby eq $_ } qw(bindescription warehousedescription)) {
 
 640       @contents = sort { ($a->{$orderby} cmp $b->{$orderby}) * (($form->{order}) ? 1 : -1) } @contents;
 
 644   $main::lxdebug->leave_sub();
 
 650   $main::lxdebug->enter_sub();
 
 652   my ($self, $qty_op) = @_;
 
 654   if (!$qty_op || ($qty_op eq "dontcare")) {
 
 655     $main::lxdebug->leave_sub();
 
 659   if ($qty_op eq "atleast") {
 
 661   } elsif ($qty_op eq "atmost") {
 
 667   $main::lxdebug->leave_sub();
 
 672 sub retrieve_transfer_types {
 
 673   $main::lxdebug->enter_sub();
 
 676   my $direction = shift;
 
 678   my $myconfig  = \%main::myconfig;
 
 679   my $form      = $main::form;
 
 681   my $dbh       = $form->get_standard_dbh($myconfig);
 
 683   my $types     = selectall_hashref_query($form, $dbh, qq|SELECT * FROM transfer_type WHERE direction = ? ORDER BY sortkey|, $direction);
 
 685   $main::lxdebug->leave_sub();
 
 690 sub get_basic_bin_info {
 
 691   $main::lxdebug->enter_sub();
 
 696   Common::check_params(\%params, qw(id));
 
 698   my $myconfig = \%main::myconfig;
 
 699   my $form     = $main::form;
 
 701   my $dbh      = $params{dbh} || $form->get_standard_dbh();
 
 703   my @ids      = 'ARRAY' eq ref $params{id} ? @{ $params{id} } : ($params{id});
 
 706     qq|SELECT b.id AS bin_id, b.description AS bin_description,
 
 707          w.id AS warehouse_id, w.description AS warehouse_description
 
 709        LEFT JOIN warehouse w ON (b.warehouse_id = w.id)
 
 710        WHERE b.id IN (| . join(', ', ('?') x scalar(@ids)) . qq|)|;
 
 712   my $result = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
 
 714   if ('' eq ref $params{id}) {
 
 715     $result = $result->[0] || { };
 
 716     $main::lxdebug->leave_sub();
 
 721   $main::lxdebug->leave_sub();
 
 723   return map { $_->{bin_id} => $_ } @{ $result };
 
 726 # Eingabe:      Teilenummer, Lagernummer (warehouse)
 
 727 # Ausgabe:      Die maximale Anzahl der Teile in diesem Lager
 
 729 sub get_max_qty_parts {
 
 730 $main::lxdebug->enter_sub();
 
 735   Common::check_params(\%params, qw(parts_id warehouse_id)); #die brauchen wir 
 
 737   my $myconfig = \%main::myconfig;
 
 738   my $form     = $main::form;
 
 740   my $dbh      = $params{dbh} || $form->get_standard_dbh();
 
 742   my $query = qq| SELECT SUM(qty), bin_id, chargenumber  FROM inventory where parts_id = ? AND warehouse_id = ? GROUP BY bin_id, chargenumber|;
 
 744   my $sth_QTY      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}, $params{warehouse_id}); #info: aufruf an DBUtils.pm
 
 746   my $max_qty_parts = 0; #Initialisierung mit 0
 
 747   while (my $ref = $sth_QTY->fetchrow_hashref()) {      # wir laufen über alle chargen und Lagerorte (s.a. SQL-Query oben)
 
 748     $max_qty_parts += $ref->{sum};      
 
 751   $main::lxdebug->leave_sub();
 
 753   return $max_qty_parts;
 
 757 # Eingabe:      Teilenummer, Lagernummer (warehouse)
 
 758 # Ausgabe:      Die Beschreibung der Ware bzw. Erzeugnis
 
 760 sub get_part_description {
 
 761 $main::lxdebug->enter_sub();
 
 766   Common::check_params(\%params, qw(parts_id )); #die brauchen wir 
 
 768   my $myconfig = \%main::myconfig;
 
 769   my $form     = $main::form;
 
 771   my $dbh      = $params{dbh} || $form->get_standard_dbh();
 
 773   my $query = qq| SELECT partnumber, description FROM parts where id = ? |;
 
 775   my $sth      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}); #info: aufruf zu DBUtils.pm
 
 777   my $ref = $sth->fetchrow_hashref(); 
 
 778   my $part_description = $ref->{partnumber} . " " . $ref->{description};        
 
 780   $main::lxdebug->leave_sub();
 
 782   return $part_description;