Erste Aenderung fuer die Umsetzung der Bugzilla Erweiterung 856 Warenbewegung im...
[kivitendo-erp.git] / SL / WH.pm
1 #====================================================================
2 # LX-Office ERP
3 # Copyright (C) 2004
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
6 #
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
10 #
11 #  Author: Dieter Simader
12 #   Email: dsimader@sql-ledger.org
13 #     Web: http://www.sql-ledger.org
14 #
15 #  Contributors:
16 #
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.
21 #
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 #======================================================================
30 #
31 #  Warehouse module
32 #
33 #======================================================================
34
35 package WH;
36
37 use SL::AM;
38 use SL::DBUtils;
39 use SL::Form;
40 use warnings;
41 #use strict;
42 sub transfer {
43   $main::lxdebug->enter_sub();
44
45   my $self = shift;
46
47   if (!@_) {
48     $main::lxdebug->leave_sub();
49     return;
50   }
51
52   my $myconfig = \%main::myconfig;
53   my $form     = $main::form;
54
55   my $dbh      = $form->get_standard_dbh($myconfig);
56
57   my $units    = AM->retrieve_units($myconfig, $form);
58
59   my $query    = qq|SELECT * FROM transfer_type|;
60   my $sth      = prepare_execute_query($form, $dbh, $query);
61
62   my %transfer_types;
63
64   while (my $ref = $sth->fetchrow_hashref()) {
65     $transfer_types{$ref->{direction}} ||= { };
66     $transfer_types{$ref->{direction}}->{$ref->{description}} = $ref->{id};
67   }
68
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);
71
72   my ($now)     = selectrow_query($form, $dbh, qq|SELECT current_date|);
73
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 = ?), ?, ?, ?, ?, ?)|;
77
78   $sth   = prepare_query($form, $dbh, $query);
79
80   my @directions = (undef, 'out', 'in', 'transfer');
81
82   while (@_) {
83     my $transfer   = shift;
84     my ($trans_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
85
86     my ($direction, @values) = (0);
87
88     $direction |= 1 if ($transfer->{src_warehouse_id} && $transfer->{src_bin_id});
89     $direction |= 2 if ($transfer->{dst_warehouse_id} && $transfer->{dst_bin_id});
90
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;
93
94     if ($transfer->{transfer_type_id}) {
95       push @values, $transfer->{transfer_type_id};
96     } else {
97       push @values, $transfer_types{$directions[$direction]}->{$transfer->{transfer_type}};
98     }
99
100     push @values, "$transfer->{comment}";
101
102     my $qty = $transfer->{qty};
103
104     if ($transfer->{unit}) {
105       my $partunit = $partunits{$transfer->{parts_id}};
106
107       $qty *= $units->{$transfer->{unit}}->{factor};
108       $qty /= $units->{$partunit}->{factor} || 1 if ($partunit);
109     }
110
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);
113     }
114
115     if ($direction & 2) {
116       do_statement($form, $sth, $query, conv_i($transfer->{dst_warehouse_id}), conv_i($transfer->{dst_bin_id}), @values, $qty);
117     }
118   }
119
120   $sth->finish();
121
122   $dbh->commit();
123
124   $main::lxdebug->leave_sub();
125 }
126
127 sub transfer_assembly {
128   $main::lxdebug->enter_sub();
129
130   my $self     = shift;
131   my %params   = @_;
132   Common::check_params(\%params, qw(assembly_id dst_warehouse_id login qty unit dst_bin_id chargenumber comment));
133
134 #  my $maxcreate=WH->check_assembly_max_create(assembly_id =>$params{'assembly_id'}, dbh => $my_dbh);
135
136   my $myconfig = \%main::myconfig;
137   my $form     = $main::form;
138   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
139
140
141   # Ablauferklärung
142   #
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)|;
152
153
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)|;
156
157   my $sth_part_qty_assembly      = prepare_execute_query($form, $dbh, $query, $params{assembly_id});
158
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);
164
165   my $kannNichtFertigen ="";    # der return-string für die fehlermeldung inkl. welche waren zum fertigen noch fehlen
166
167   while (my $hash_ref = $sth_part_qty_assembly->fetchrow_hashref()) {   # Schleife für $query=select parts_id,qty from assembly 
168
169     my $partsQTY = $hash_ref->{qty} * $params{qty}; # benötigte teile * anzahl erzeugnisse
170     my $currentPart_ID = $hash_ref->{parts_id};
171
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
174
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) . " Stueck 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
179     }
180
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
187
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);
190
191     # Alle Werte zu dem einzelnen Artikel, die wir später auslagern
192     my $tmpPartsQTY = $partsQTY;
193
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);
202
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
208         $tmpPartsQTY *=-1;
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)
211       }
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;
216   }
217
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});
224   $dbh->commit();
225
226   $main::lxdebug->leave_sub();
227   return 1;     # Alles erfolgreich
228 }
229
230 sub get_warehouse_journal {
231   $main::lxdebug->enter_sub();
232
233   my $self      = shift;
234   my %filter    = @_;
235
236   my $myconfig  = \%main::myconfig;
237   my $form      = $main::form;
238
239   my $all_units = AM->retrieve_units($myconfig, $form);
240
241   # connect to database
242   my $dbh = $form->get_standard_dbh($myconfig);
243
244   # filters
245   my (@filter_ary, @filter_vars, $joins);
246
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};
250   }
251
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};
255   }
256
257   if ($filter{partnumber}) {
258     push @filter_ary, "p.partnumber ILIKE ?";
259     push @filter_vars, '%' . $filter{partnumber} . '%';
260   }
261
262   if ($filter{description}) {
263     push @filter_ary, "(p.description ILIKE ?)";
264     push @filter_vars, '%' . $filter{description} . '%';
265   }
266
267   if ($filter{chargenumber}) {
268     push @filter_ary, "i1.chargenumber ILIKE ?";
269     push @filter_vars, '%' . $filter{chargenumber} . '%';
270   }
271
272   if ($form->{fromdate}) {
273     push @filter_ary, "?::DATE <= i1.itime::DATE";
274     push @filter_vars, $form->{fromdate};
275   }
276
277   if ($form->{todate}) {
278     push @filter_ary, "?::DATE >= i1.itime::DATE";
279     push @filter_vars, $form->{todate};
280   }
281
282   if ($form->{l_employee}) {
283     $joins .= "";
284   }
285
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};
292   }
293
294   map { $_ = "(${_})"; } @filter_ary;
295
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);
299
300   # customize shown entry for not available fields.
301   $filter{na} = '-' unless $filter{na};
302
303   # make order, search in $filter and $form
304   $form->{sort}   = $filter{sort}             unless $form->{sort};
305   $form->{order}  = ($form->{sort} = 'itime') unless $form->{sort};
306   $form->{sort}   = 'itime'                   if     $form->{sort} eq "date";
307   $form->{order}  = $filter{order}            unless $form->{order};
308   $form->{sort}  .= (($form->{order}) ? " DESC" : " ASC");
309
310   my $where_clause = join(" AND ", @filter_ary) . " AND " if (@filter_ary);
311
312   $select_tokens{'trans'} = {
313      "parts_id"             => "i1.parts_id",
314      "qty"                  => "ABS(SUM(i1.qty))",
315      "partnumber"           => "p.partnumber",
316      "partdescription"      => "p.description",
317      "bindescription"       => "b.description",
318      "chargenumber"         => "i1.chargenumber",
319      "warehousedescription" => "w.description",
320      "partunit"             => "p.unit",
321      "bin_from"             => "b1.description",
322      "bin_to"               => "b2.description",
323      "warehouse_from"       => "w1.description",
324      "warehouse_to"         => "w2.description",
325      "comment"              => "i1.comment",
326      "trans_type"           => "tt.description",
327      "trans_id"             => "i1.trans_id",
328      "date"                 => "i1.itime::DATE",
329      "itime"                => "i1.itime",
330      "employee"             => "e.name",
331      "projectnumber"        => "COALESCE(pr.projectnumber, '$filter{na}')",
332      };
333
334   $select_tokens{'out'} = {
335      "bin_to"               => "'$filter{na}'",
336      "warehouse_to"         => "'$filter{na}'",
337      };
338
339   $select_tokens{'in'} = {
340      "bin_from"             => "'$filter{na}'",
341      "warehouse_from"       => "'$filter{na}'",
342      };
343
344   # build the select clauses.
345   # take all the requested ones from the first hash and overwrite them from the out/in hashes if present.
346   for my $i ('trans', 'out', 'in') {
347     $select{$i} = join ', ', map { +/^l_/; ($select_tokens{$i}{"$'"} || $select_tokens{'trans'}{"$'"}) . " AS r_$'" }
348           ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_qty l_partunit l_itime) );
349   }
350
351   my $group_clause = join ", ", map { +/^l_/; "r_$'" }
352         ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_partunit l_itime) );
353
354   my $query =
355   qq|SELECT DISTINCT $select{trans}
356     FROM inventory i1
357     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
358     LEFT JOIN parts p ON i1.parts_id = p.id
359     LEFT JOIN bin b1 ON i1.bin_id = b1.id
360     LEFT JOIN bin b2 ON i2.bin_id = b2.id
361     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
362     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
363     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
364     LEFT JOIN project pr ON i1.project_id = pr.id
365     LEFT JOIN employee e ON i1.employee_id = e.id
366     WHERE $where_clause i2.qty = -i1.qty AND i2.qty > 0 AND
367           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 2 )
368     GROUP BY $group_clause
369
370     UNION
371
372     SELECT DISTINCT $select{out}
373     FROM inventory i1
374     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
375     LEFT JOIN parts p ON i1.parts_id = p.id
376     LEFT JOIN bin b1 ON i1.bin_id = b1.id
377     LEFT JOIN bin b2 ON i2.bin_id = b2.id
378     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
379     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
380     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
381     LEFT JOIN project pr ON i1.project_id = pr.id
382     LEFT JOIN employee e ON i1.employee_id = e.id
383     WHERE $where_clause i1.qty < 0 AND
384           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
385     GROUP BY $group_clause
386
387     UNION
388
389     SELECT DISTINCT $select{in}
390     FROM inventory i1
391     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
392     LEFT JOIN parts p ON i1.parts_id = p.id
393     LEFT JOIN bin b1 ON i1.bin_id = b1.id
394     LEFT JOIN bin b2 ON i2.bin_id = b2.id
395     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
396     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
397     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
398     LEFT JOIN project pr ON i1.project_id = pr.id
399     LEFT JOIN employee e ON i1.employee_id = e.id
400     WHERE $where_clause i1.qty > 0 AND
401           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
402     GROUP BY $group_clause
403     ORDER BY r_$form->{sort}|;
404
405   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars, @filter_vars, @filter_vars);
406
407   my @contents = ();
408   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
409     map { /^r_/; $ref->{"$'"} = $ref->{$_} } keys %$ref;
410     my $qty = $ref->{"qty"} * 1;
411
412     next unless ($qty > 0);
413
414     if ($f_qty_op) {
415       my $part_unit = $all_units->{$ref->{"partunit"}};
416       next unless ($part_unit && ($part_unit->{"base_unit"} eq $f_qty_base_unit));
417       $qty *= $part_unit->{"factor"};
418       next if (('=' eq $f_qty_op) && ($qty != $f_qty));
419       next if (('>=' eq $f_qty_op) && ($qty < $f_qty));
420       next if (('<=' eq $f_qty_op) && ($qty > $f_qty));
421     }
422
423     push @contents, $ref;
424   }
425
426   $sth->finish();
427
428   $main::lxdebug->leave_sub();
429
430   return @contents;
431 }
432
433 #
434 # This sub is the primary function to retrieve information about items in warehouses.
435 # $filter is a hashref and supports the following keys:
436 #  - warehouse_id - will return matches with this warehouse_id only
437 #  - partnumber   - will return only matches where the given string is a substring of the partnumber
438 #  - partsid      - will return matches with this parts_id only
439 #  - description  - will return only matches where the given string is a substring of the description
440 #  - chargenumber - will return only matches where the given string is a substring of the chargenumber
441 #  - ean          - will return only matches where the given string is a substring of the ean as stored in the table parts (article)
442 #  - charge_ids   - must be an arrayref. will return contents with these ids only
443 #  - expires_in   - will only return matches that expire within the given number of days
444 #                   will also add a column named 'has_expired' containing if the match has already expired or not
445 #  - hazardous    - will return matches with the flag hazardous only
446 #  - oil          - will return matches with the flag oil only
447 #  - qty, qty_op  - quantity filter (more info to come)
448 #  - sort, order_by - sorting (more to come)
449 #  - reservation  - will provide an extra column containing the amount reserved of this match
450 # note: reservation flag turns off warehouse_* or bin_* information. both together don't make sense, since reserved info is stored separately
451 #
452 sub get_warehouse_report {
453   $main::lxdebug->enter_sub();
454
455   my $self      = shift;
456   my %filter    = @_;
457
458   my $myconfig  = \%main::myconfig;
459   my $form      = $main::form;
460
461   my $all_units = AM->retrieve_units($myconfig, $form);
462
463   # connect to database
464   my $dbh = $form->get_standard_dbh($myconfig);
465
466   # filters
467   my (@filter_ary, @filter_vars, @wh_bin_filter_ary, @wh_bin_filter_vars, $columns, $group_by);
468
469   delete $form->{include_empty_bins} unless ($form->{l_warehousedescription} || $form->{l_bindescription});
470
471   if ($filter{warehouse_id}) {
472     push @wh_bin_filter_ary,  "w.id = ?";
473     push @wh_bin_filter_vars, $filter{warehouse_id};
474   }
475
476   if ($filter{bin_id}) {
477     push @wh_bin_filter_ary,  "b.id = ?";
478     push @wh_bin_filter_vars, $filter{bin_id};
479   }
480
481   push @filter_ary,  @wh_bin_filter_ary;
482   push @filter_vars, @wh_bin_filter_vars;
483
484   if ($filter{partnumber}) {
485     push @filter_ary,  "p.partnumber ILIKE ?";
486     push @filter_vars, '%' . $filter{partnumber} . '%';
487   }
488
489   if ($filter{description}) {
490     push @filter_ary,  "p.description ILIKE ?";
491     push @filter_vars, '%' . $filter{description} . '%';
492   }
493
494   if ($filter{partsid}) {
495     push @filter_ary,  "p.id = ?";
496     push @filter_vars, $filter{partsid};
497   }
498
499   if ($filter{chargenumber}) {
500     push @filter_ary,  "i.chargenumber ILIKE ?";
501     push @filter_vars, '%' . $filter{chargenumber} . '%';
502   }
503   if ($filter{ean}) {
504     push @filter_ary,  "p.ean ILIKE ?";
505     push @filter_vars, '%' . $filter{ean} . '%';
506   }
507
508   # prepare qty comparison for later filtering
509   my ($f_qty_op, $f_qty, $f_qty_base_unit);
510
511   if ($filter{qty_op} && defined $filter{qty} && $filter{qty_unit} && $all_units->{$filter{qty_unit}}) {
512     $f_qty_op        = $filter{qty_op};
513     $f_qty           = $filter{qty} * $all_units->{$filter{qty_unit}}->{factor};
514     $f_qty_base_unit = $all_units->{$filter{qty_unit}}->{base_unit};
515   }
516
517   map { $_ = "(${_})"; } @filter_ary;
518
519   # if of a property number or description is requested,
520   # automatically check the matching id too.
521   map { $form->{"l_${_}id"} = "Y" if ($form->{"l_${_}description"} || $form->{"l_${_}number"}); } qw(warehouse bin);
522
523   # make order, search in $filter and $form
524   $form->{sort}  =  $filter{sort}  unless $form->{sort};
525   $form->{sort}  =  "parts_id"     unless $form->{sort};
526   $form->{order} =  $filter{order} unless $form->{order};
527   $form->{sort}  =~ s/ASC|DESC//; # kill stuff left in from previous queries
528   my $orderby    =  $form->{sort};
529   $form->{sort} .=  (($form->{order}) ? " DESC" : " ASC");
530
531   my $where_clause = join " AND ", ("1=1", @filter_ary);
532
533   my %select_tokens = (
534      "parts_id"              => "i.parts_id",
535      "qty"                  => "SUM(i.qty)",
536      "warehouseid"          => "i.warehouse_id",
537      "partnumber"           => "p.partnumber",
538      "partdescription"      => "p.description",
539      "bindescription"       => "b.description",
540      "binid"                => "b.id",
541      "chargenumber"         => "i.chargenumber",
542      "ean"                  => "p.ean",
543      "chargeid"             => "c.id",
544      "warehousedescription" => "w.description",
545      "partunit"             => "p.unit",
546      "stock_value"          => "p.lastcost / COALESCE(pfac.factor, 1)",
547   );
548   my $select_clause = join ', ', map { +/^l_/; "$select_tokens{$'} AS $'" }
549         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
550           qw(l_parts_id l_qty l_partunit) );
551
552   my $group_clause = join ", ", map { +/^l_/; "$'" }
553         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
554           qw(l_parts_id l_partunit) );
555
556   my %join_tokens = (
557     "stock_value" => "LEFT JOIN price_factors pfac ON (p.price_factor_id = pfac.id)",
558     );
559
560   my $joins = join ' ', grep { $_ } map { +/^l_/; $join_tokens{"$'"} }
561         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
562           qw(l_parts_id l_qty l_partunit) );
563
564   my $query =
565     qq|SELECT $select_clause
566       $columns
567       FROM inventory i
568       LEFT JOIN parts     p ON i.parts_id     = p.id
569       LEFT JOIN bin       b ON i.bin_id       = b.id
570       LEFT JOIN warehouse w ON i.warehouse_id = w.id
571       $joins
572       WHERE $where_clause
573       GROUP BY $group_clause $group_by
574       ORDER BY $form->{sort}|;
575
576   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars);
577
578   my (%non_empty_bins, @all_fields, @contents);
579
580   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
581     $ref->{qty} *= 1;
582     my $qty      = $ref->{qty};
583
584     next unless ($qty != 0);
585
586     if ($f_qty_op) {
587       my $part_unit = $all_units->{$ref->{partunit}};
588       next if (!$part_unit || ($part_unit->{base_unit} ne $f_qty_base_unit));
589       $qty *= $part_unit->{factor};
590       next if (('='  eq $f_qty_op) && ($qty != $f_qty));
591       next if (('>=' eq $f_qty_op) && ($qty <  $f_qty));
592       next if (('<=' eq $f_qty_op) && ($qty >  $f_qty));
593     }
594
595     if ($form->{include_empty_bins}) {
596       $non_empty_bins{$ref->{binid}} = 1;
597       @all_fields                    = keys %{ $ref } unless (@all_fields);
598     }
599
600     $ref->{stock_value} *= $ref->{qty};
601
602     push @contents, $ref;
603   }
604
605   $sth->finish();
606
607   if ($form->{include_empty_bins}) {
608     $query =
609       qq|SELECT
610            w.id AS warehouseid, w.description AS warehousedescription,
611            b.id AS binid, b.description AS bindescription
612          FROM bin b
613          LEFT JOIN warehouse w ON (b.warehouse_id = w.id)|;
614
615     @filter_ary  = @wh_bin_filter_ary;
616     @filter_vars = @wh_bin_filter_vars;
617
618     my @non_empty_bin_ids = keys %non_empty_bins;
619     if (@non_empty_bin_ids) {
620       push @filter_ary,  qq|NOT b.id IN (| . join(', ', map { '?' } @non_empty_bin_ids) . qq|)|;
621       push @filter_vars, @non_empty_bin_ids;
622     }
623
624     $query .= qq| WHERE | . join(' AND ', map { "($_)" } @filter_ary) if (@filter_ary);
625
626     $sth    = prepare_execute_query($form, $dbh, $query, @filter_vars);
627
628     while (my $ref = $sth->fetchrow_hashref()) {
629       map { $ref->{$_} ||= "" } @all_fields;
630       push @contents, $ref;
631     }
632     $sth->finish();
633
634     if (grep { $orderby eq $_ } qw(bindescription warehousedescription)) {
635       @contents = sort { ($a->{$orderby} cmp $b->{$orderby}) * (($form->{order}) ? 1 : -1) } @contents;
636     }
637   }
638
639   $main::lxdebug->leave_sub();
640
641   return @contents;
642 }
643
644 sub convert_qty_op {
645   $main::lxdebug->enter_sub();
646
647   my ($self, $qty_op) = @_;
648
649   if (!$qty_op || ($qty_op eq "dontcare")) {
650     $main::lxdebug->leave_sub();
651     return undef;
652   }
653
654   if ($qty_op eq "atleast") {
655     $qty_op = '>=';
656   } elsif ($qty_op eq "atmost") {
657     $qty_op = '<=';
658   } else {
659     $qty_op = '=';
660   }
661
662   $main::lxdebug->leave_sub();
663
664   return $qty_op;
665 }
666
667 sub retrieve_transfer_types {
668   $main::lxdebug->enter_sub();
669
670   my $self      = shift;
671   my $direction = shift;
672
673   my $myconfig  = \%main::myconfig;
674   my $form      = $main::form;
675
676   my $dbh       = $form->get_standard_dbh($myconfig);
677
678   my $types     = selectall_hashref_query($form, $dbh, qq|SELECT * FROM transfer_type WHERE direction = ? ORDER BY sortkey|, $direction);
679
680   $main::lxdebug->leave_sub();
681
682   return $types;
683 }
684
685 sub get_basic_bin_info {
686   $main::lxdebug->enter_sub();
687
688   my $self     = shift;
689   my %params   = @_;
690
691   Common::check_params(\%params, qw(id));
692
693   my $myconfig = \%main::myconfig;
694   my $form     = $main::form;
695
696   my $dbh      = $params{dbh} || $form->get_standard_dbh();
697
698   my @ids      = 'ARRAY' eq ref $params{id} ? @{ $params{id} } : ($params{id});
699
700   my $query    =
701     qq|SELECT b.id AS bin_id, b.description AS bin_description,
702          w.id AS warehouse_id, w.description AS warehouse_description
703        FROM bin b
704        LEFT JOIN warehouse w ON (b.warehouse_id = w.id)
705        WHERE b.id IN (| . join(', ', ('?') x scalar(@ids)) . qq|)|;
706
707   my $result = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
708
709   if ('' eq ref $params{id}) {
710     $result = $result->[0] || { };
711     $main::lxdebug->leave_sub();
712
713     return $result;
714   }
715
716   $main::lxdebug->leave_sub();
717
718   return map { $_->{bin_id} => $_ } @{ $result };
719 }
720 #
721 # Eingabe:      Teilenummer, Lagernummer (warehouse)
722 # Ausgabe:      Die maximale Anzahl der Teile in diesem Lager
723 #
724 sub get_max_qty_parts {
725 $main::lxdebug->enter_sub();
726
727   my $self     = shift;
728   my %params   = @_;
729
730   Common::check_params(\%params, qw(parts_id warehouse_id)); #die brauchen wir 
731
732   my $myconfig = \%main::myconfig;
733   my $form     = $main::form;
734
735   my $dbh      = $params{dbh} || $form->get_standard_dbh();
736
737   my $query = qq| SELECT SUM(qty), bin_id, chargenumber  FROM inventory where parts_id = ? AND warehouse_id = ? GROUP BY bin_id, chargenumber|;
738
739   my $sth_QTY      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}, $params{warehouse_id}); #info: aufruf an DBUtils.pm
740   
741   my $max_qty_parts = 0; #Initialisierung mit 0
742   while (my $ref = $sth_QTY->fetchrow_hashref()) {      # wir laufen über alle chargen und Lagerorte (s.a. SQL-Query oben)
743     $max_qty_parts += $ref->{sum};      
744   }
745
746   $main::lxdebug->leave_sub();
747
748   return $max_qty_parts;
749 }
750
751 #
752 # Eingabe:      Teilenummer, Lagernummer (warehouse)
753 # Ausgabe:      Die Beschreibung der Ware bzw. Erzeugnis
754 #
755 sub get_part_description {
756 $main::lxdebug->enter_sub();
757
758   my $self     = shift;
759   my %params   = @_;
760
761   Common::check_params(\%params, qw(parts_id )); #die brauchen wir 
762
763   my $myconfig = \%main::myconfig;
764   my $form     = $main::form;
765
766   my $dbh      = $params{dbh} || $form->get_standard_dbh();
767
768   my $query = qq| SELECT partnumber, description FROM parts where id = ? |;
769
770   my $sth      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}); #info: aufruf zu DBUtils.pm
771   
772   my $ref = $sth->fetchrow_hashref(); 
773   my $part_description = $ref->{partnumber} . " " . $ref->{description};        
774
775   $main::lxdebug->leave_sub();
776
777   return $part_description;
778 }
779
780
781 1;