Eine Warnung über undefinierte Werte vermeiden.
[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) . " 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
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   my $sort_col   = $form->{sort};
305   my $sort_order = $form->{order};
306
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");
312
313   my $where_clause = join(" AND ", @filter_ary) . " AND " if (@filter_ary);
314
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}')",
335      };
336
337   $select_tokens{'out'} = {
338      "bin_to"               => "'$filter{na}'",
339      "warehouse_to"         => "'$filter{na}'",
340      };
341
342   $select_tokens{'in'} = {
343      "bin_from"             => "'$filter{na}'",
344      "warehouse_from"       => "'$filter{na}'",
345      };
346
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) );
352   }
353
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) );
356
357   my $query =
358   qq|SELECT DISTINCT $select{trans}
359     FROM inventory i1
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
372
373     UNION
374
375     SELECT DISTINCT $select{out}
376     FROM inventory i1
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
389
390     UNION
391
392     SELECT DISTINCT $select{in}
393     FROM inventory i1
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}|;
407
408   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars, @filter_vars, @filter_vars);
409
410   my @contents = ();
411   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
412     map { /^r_/; $ref->{"$'"} = $ref->{$_} } keys %$ref;
413     my $qty = $ref->{"qty"} * 1;
414
415     next unless ($qty > 0);
416
417     if ($f_qty_op) {
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));
424     }
425
426     push @contents, $ref;
427   }
428
429   $sth->finish();
430
431   $main::lxdebug->leave_sub();
432
433   return @contents;
434 }
435
436 #
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
454 #
455 sub get_warehouse_report {
456   $main::lxdebug->enter_sub();
457
458   my $self      = shift;
459   my %filter    = @_;
460
461   my $myconfig  = \%main::myconfig;
462   my $form      = $main::form;
463
464   my $all_units = AM->retrieve_units($myconfig, $form);
465
466   # connect to database
467   my $dbh = $form->get_standard_dbh($myconfig);
468
469   # filters
470   my (@filter_ary, @filter_vars, @wh_bin_filter_ary, @wh_bin_filter_vars);
471
472   delete $form->{include_empty_bins} unless ($form->{l_warehousedescription} || $form->{l_bindescription});
473
474   if ($filter{warehouse_id}) {
475     push @wh_bin_filter_ary,  "w.id = ?";
476     push @wh_bin_filter_vars, $filter{warehouse_id};
477   }
478
479   if ($filter{bin_id}) {
480     push @wh_bin_filter_ary,  "b.id = ?";
481     push @wh_bin_filter_vars, $filter{bin_id};
482   }
483
484   push @filter_ary,  @wh_bin_filter_ary;
485   push @filter_vars, @wh_bin_filter_vars;
486
487   if ($filter{partnumber}) {
488     push @filter_ary,  "p.partnumber ILIKE ?";
489     push @filter_vars, '%' . $filter{partnumber} . '%';
490   }
491
492   if ($filter{description}) {
493     push @filter_ary,  "p.description ILIKE ?";
494     push @filter_vars, '%' . $filter{description} . '%';
495   }
496
497   if ($filter{partsid}) {
498     push @filter_ary,  "p.id = ?";
499     push @filter_vars, $filter{partsid};
500   }
501
502   if ($filter{chargenumber}) {
503     push @filter_ary,  "i.chargenumber ILIKE ?";
504     push @filter_vars, '%' . $filter{chargenumber} . '%';
505   }
506   if ($filter{ean}) {
507     push @filter_ary,  "p.ean ILIKE ?";
508     push @filter_vars, '%' . $filter{ean} . '%';
509   }
510
511   # prepare qty comparison for later filtering
512   my ($f_qty_op, $f_qty, $f_qty_base_unit);
513
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};
518   }
519
520   map { $_ = "(${_})"; } @filter_ary;
521
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);
525
526   # make order, search in $filter and $form
527   my $sort_col    =  $form->{sort};
528   my $sort_order  = $form->{order};
529
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");
536
537   my $where_clause = join " AND ", ("1=1", @filter_ary);
538
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",
546      "binid"                => "b.id",
547      "chargenumber"         => "i.chargenumber",
548      "ean"                  => "p.ean",
549      "chargeid"             => "c.id",
550      "warehousedescription" => "w.description",
551      "partunit"             => "p.unit",
552      "stock_value"          => "p.lastcost / COALESCE(pfac.factor, 1)",
553   );
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) );
557
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) );
561
562   my %join_tokens = (
563     "stock_value" => "LEFT JOIN price_factors pfac ON (p.price_factor_id = pfac.id)",
564     );
565
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) );
569
570   my $query =
571     qq|SELECT $select_clause
572       FROM inventory i
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
576       $joins
577       WHERE $where_clause
578       GROUP BY $group_clause
579       ORDER BY $sort_spec|;
580
581   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars);
582
583   my (%non_empty_bins, @all_fields, @contents);
584
585   while (my $ref = $sth->fetchrow_hashref(NAME_lc)) {
586     $ref->{qty} *= 1;
587     my $qty      = $ref->{qty};
588
589     next unless ($qty != 0);
590
591     if ($f_qty_op) {
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));
598     }
599
600     if ($form->{include_empty_bins}) {
601       $non_empty_bins{$ref->{binid}} = 1;
602       @all_fields                    = keys %{ $ref } unless (@all_fields);
603     }
604
605     $ref->{stock_value} = ($ref->{stock_value} || 0) * $ref->{qty};
606
607     push @contents, $ref;
608   }
609
610   $sth->finish();
611
612   if ($form->{include_empty_bins}) {
613     $query =
614       qq|SELECT
615            w.id AS warehouseid, w.description AS warehousedescription,
616            b.id AS binid, b.description AS bindescription
617          FROM bin b
618          LEFT JOIN warehouse w ON (b.warehouse_id = w.id)|;
619
620     @filter_ary  = @wh_bin_filter_ary;
621     @filter_vars = @wh_bin_filter_vars;
622
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;
627     }
628
629     $query .= qq| WHERE | . join(' AND ', map { "($_)" } @filter_ary) if (@filter_ary);
630
631     $sth    = prepare_execute_query($form, $dbh, $query, @filter_vars);
632
633     while (my $ref = $sth->fetchrow_hashref()) {
634       map { $ref->{$_} ||= "" } @all_fields;
635       push @contents, $ref;
636     }
637     $sth->finish();
638
639     if (grep { $orderby eq $_ } qw(bindescription warehousedescription)) {
640       @contents = sort { ($a->{$orderby} cmp $b->{$orderby}) * (($form->{order}) ? 1 : -1) } @contents;
641     }
642   }
643
644   $main::lxdebug->leave_sub();
645
646   return @contents;
647 }
648
649 sub convert_qty_op {
650   $main::lxdebug->enter_sub();
651
652   my ($self, $qty_op) = @_;
653
654   if (!$qty_op || ($qty_op eq "dontcare")) {
655     $main::lxdebug->leave_sub();
656     return undef;
657   }
658
659   if ($qty_op eq "atleast") {
660     $qty_op = '>=';
661   } elsif ($qty_op eq "atmost") {
662     $qty_op = '<=';
663   } else {
664     $qty_op = '=';
665   }
666
667   $main::lxdebug->leave_sub();
668
669   return $qty_op;
670 }
671
672 sub retrieve_transfer_types {
673   $main::lxdebug->enter_sub();
674
675   my $self      = shift;
676   my $direction = shift;
677
678   my $myconfig  = \%main::myconfig;
679   my $form      = $main::form;
680
681   my $dbh       = $form->get_standard_dbh($myconfig);
682
683   my $types     = selectall_hashref_query($form, $dbh, qq|SELECT * FROM transfer_type WHERE direction = ? ORDER BY sortkey|, $direction);
684
685   $main::lxdebug->leave_sub();
686
687   return $types;
688 }
689
690 sub get_basic_bin_info {
691   $main::lxdebug->enter_sub();
692
693   my $self     = shift;
694   my %params   = @_;
695
696   Common::check_params(\%params, qw(id));
697
698   my $myconfig = \%main::myconfig;
699   my $form     = $main::form;
700
701   my $dbh      = $params{dbh} || $form->get_standard_dbh();
702
703   my @ids      = 'ARRAY' eq ref $params{id} ? @{ $params{id} } : ($params{id});
704
705   my $query    =
706     qq|SELECT b.id AS bin_id, b.description AS bin_description,
707          w.id AS warehouse_id, w.description AS warehouse_description
708        FROM bin b
709        LEFT JOIN warehouse w ON (b.warehouse_id = w.id)
710        WHERE b.id IN (| . join(', ', ('?') x scalar(@ids)) . qq|)|;
711
712   my $result = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
713
714   if ('' eq ref $params{id}) {
715     $result = $result->[0] || { };
716     $main::lxdebug->leave_sub();
717
718     return $result;
719   }
720
721   $main::lxdebug->leave_sub();
722
723   return map { $_->{bin_id} => $_ } @{ $result };
724 }
725 #
726 # Eingabe:      Teilenummer, Lagernummer (warehouse)
727 # Ausgabe:      Die maximale Anzahl der Teile in diesem Lager
728 #
729 sub get_max_qty_parts {
730 $main::lxdebug->enter_sub();
731
732   my $self     = shift;
733   my %params   = @_;
734
735   Common::check_params(\%params, qw(parts_id warehouse_id)); #die brauchen wir 
736
737   my $myconfig = \%main::myconfig;
738   my $form     = $main::form;
739
740   my $dbh      = $params{dbh} || $form->get_standard_dbh();
741
742   my $query = qq| SELECT SUM(qty), bin_id, chargenumber  FROM inventory where parts_id = ? AND warehouse_id = ? GROUP BY bin_id, chargenumber|;
743
744   my $sth_QTY      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}, $params{warehouse_id}); #info: aufruf an DBUtils.pm
745   
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};      
749   }
750
751   $main::lxdebug->leave_sub();
752
753   return $max_qty_parts;
754 }
755
756 #
757 # Eingabe:      Teilenummer, Lagernummer (warehouse)
758 # Ausgabe:      Die Beschreibung der Ware bzw. Erzeugnis
759 #
760 sub get_part_description {
761 $main::lxdebug->enter_sub();
762
763   my $self     = shift;
764   my %params   = @_;
765
766   Common::check_params(\%params, qw(parts_id )); #die brauchen wir 
767
768   my $myconfig = \%main::myconfig;
769   my $form     = $main::form;
770
771   my $dbh      = $params{dbh} || $form->get_standard_dbh();
772
773   my $query = qq| SELECT partnumber, description FROM parts where id = ? |;
774
775   my $sth      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}); #info: aufruf zu DBUtils.pm
776   
777   my $ref = $sth->fetchrow_hashref(); 
778   my $part_description = $ref->{partnumber} . " " . $ref->{description};        
779
780   $main::lxdebug->leave_sub();
781
782   return $part_description;
783 }
784
785
786 1;