Funktionalität für Mindesthaltbarkeitsdatum hinzugefügt.
[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
41 use warnings;
42 use strict;
43
44 sub transfer {
45   $main::lxdebug->enter_sub();
46
47   my $self = shift;
48
49   if (!@_) {
50     $main::lxdebug->leave_sub();
51     return;
52   }
53
54   my $myconfig = \%main::myconfig;
55   my $form     = $main::form;
56
57   my $dbh      = $form->get_standard_dbh($myconfig);
58
59   my $units    = AM->retrieve_units($myconfig, $form);
60
61   my $query    = qq|SELECT * FROM transfer_type|;
62   my $sth      = prepare_execute_query($form, $dbh, $query);
63
64   my %transfer_types;
65
66   while (my $ref = $sth->fetchrow_hashref()) {
67     $transfer_types{$ref->{direction}} ||= { };
68     $transfer_types{$ref->{direction}}->{$ref->{description}} = $ref->{id};
69   }
70
71   my @part_ids  = map { $_->{parts_id} } @_;
72   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);
73
74   my ($now)     = selectrow_query($form, $dbh, qq|SELECT current_date|);
75
76   $query = qq|INSERT INTO inventory (warehouse_id, bin_id, parts_id, chargenumber, bestbefore,
77                                      oe_id, orderitems_id, shippingdate,
78                                      employee_id, project_id, trans_id, trans_type_id, comment, qty)
79               VALUES (?, ?, ?, ?, ?, ?, ?, ?, (SELECT id FROM employee WHERE login = ?), ?, ?, ?, ?, ?)|;
80
81   $sth   = prepare_query($form, $dbh, $query);
82
83   my @directions = (undef, 'out', 'in', 'transfer');
84
85   while (@_) {
86     my $transfer   = shift;
87     my ($trans_id) = selectrow_query($form, $dbh, qq|SELECT nextval('id')|);
88
89     my ($direction, @values) = (0);
90
91     $direction |= 1 if ($transfer->{src_warehouse_id} && $transfer->{src_bin_id});
92     $direction |= 2 if ($transfer->{dst_warehouse_id} && $transfer->{dst_bin_id});
93
94     push @values, conv_i($transfer->{parts_id}), "$transfer->{chargenumber}", conv_date($transfer->{bestbefore}), conv_i($transfer->{oe_id}), conv_i($transfer->{orderitems_id});
95     push @values, $transfer->{shippingdate} eq 'current_date' ? $now : conv_date($transfer->{shippingdate}), $form->{login}, conv_i($transfer->{project_id}), $trans_id;
96
97     if ($transfer->{transfer_type_id}) {
98       push @values, $transfer->{transfer_type_id};
99     } else {
100       push @values, $transfer_types{$directions[$direction]}->{$transfer->{transfer_type}};
101     }
102
103     push @values, "$transfer->{comment}";
104
105     my $qty = $transfer->{qty};
106
107     if ($transfer->{unit}) {
108       my $partunit = $partunits{$transfer->{parts_id}};
109
110       $qty *= $units->{$transfer->{unit}}->{factor};
111       $qty /= $units->{$partunit}->{factor} || 1 if ($partunit);
112     }
113
114     if ($direction & 1) {
115       do_statement($form, $sth, $query, conv_i($transfer->{src_warehouse_id}), conv_i($transfer->{src_bin_id}), @values, $qty * -1);
116     }
117
118     if ($direction & 2) {
119       do_statement($form, $sth, $query, conv_i($transfer->{dst_warehouse_id}), conv_i($transfer->{dst_bin_id}), @values, $qty);
120     }
121   }
122
123   $sth->finish();
124
125   $dbh->commit();
126
127   $main::lxdebug->leave_sub();
128 }
129
130 sub transfer_assembly {
131   $main::lxdebug->enter_sub();
132
133   my $self     = shift;
134   my %params   = @_;
135   Common::check_params(\%params, qw(assembly_id dst_warehouse_id login qty unit dst_bin_id chargenumber bestbefore comment));
136
137 #  my $maxcreate=WH->check_assembly_max_create(assembly_id =>$params{'assembly_id'}, dbh => $my_dbh);
138
139   my $myconfig = \%main::myconfig;
140   my $form     = $main::form;
141   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
142
143
144   # Ablauferklärung
145   #
146   # ... Standard-Check oben Ende. Hier die eigentliche SQL-Abfrage
147   # select parts_id,qty from assembly where id=1064;
148   # Erweiterung für bug 935 am 23.4.09 - 
149   # Erzeugnisse können Dienstleistungen enthalten, die ja nicht 'lagerbar' sind.
150   # select parts_id,qty from assembly inner join parts on assembly.parts_id = parts.id  
151   # where assembly.id=1066 and inventory_accno_id IS NOT NULL;
152   #
153   # Erweiterung für bug 23.4.09 -2 Erzeugnisse in Erzeugnissen können nicht ausgelagert werden, 
154   # wenn assembly nicht überprüft wird ...
155   # patch von joachim eingespielt 24.4.2009:
156   # my $query    = qq|select parts_id,qty from assembly inner join parts
157   # on assembly.parts_id = parts.id  where assembly.id = ? and
158   # (inventory_accno_id IS NOT NULL or parts.assembly = TRUE)|;
159
160
161   my $query = qq|select parts_id,qty from assembly inner join parts on assembly.parts_id = parts.id 
162                   where assembly.id = ? and (inventory_accno_id IS NOT NULL or parts.assembly = TRUE)|;
163
164   my $sth_part_qty_assembly = prepare_execute_query($form, $dbh, $query, $params{assembly_id});
165
166   # Hier wird das prepared Statement für die Schleife über alle Lagerplätze vorbereitet
167   my $transferPartSQL = qq|INSERT INTO inventory (parts_id, warehouse_id, bin_id, chargenumber, bestbefore, comment, employee_id, qty, trans_id, trans_type_id)
168                            VALUES (?, ?, ?, ?, ?, ?, (SELECT id FROM employee WHERE login = ?), ?, nextval('id'),
169                            (SELECT id FROM transfer_type WHERE direction = 'out' AND description = 'used'))|;
170   my $sthTransferPartSQL   = prepare_query($form, $dbh, $transferPartSQL);
171
172   # der return-string für die fehlermeldung inkl. welche waren zum fertigen noch fehlen
173   my $kannNichtFertigen ="Für dieses Erzeugnis sind keine Einzelteile definiert.
174                           Dementsprechend kann auch nichts hergestellt werden";
175
176   while (my $hash_ref = $sth_part_qty_assembly->fetchrow_hashref()) { #Schleife für select parts_id,(...) from assembly
177     $kannNichtFertigen ="";  # Wieder auf erfolgreich setzen LEER == keine Fehlermeldung
178     my $partsQTY = $hash_ref->{qty} * $params{qty}; # benötigte teile * anzahl erzeugnisse
179     my $currentPart_ID = $hash_ref->{parts_id};
180
181     # Überprüfen, ob diese Anzahl gefertigt werden kann
182     my $max_parts = $self->get_max_qty_parts(parts_id => $currentPart_ID, # $self->method() == this.method()
183                                              warehouse_id => $params{dst_warehouse_id});
184
185     if ($partsQTY  > $max_parts){
186       # Gibt es hier ein Problem mit nicht "escapten" Zeichen? 
187       # 25.4.09 Antwort: Ja.  Aber erst wenn im Frontend die locales-Funktion aufgerufen wird
188      
189       $kannNichtFertigen .= "Zum Fertigen fehlen:" . abs($partsQTY - $max_parts) . 
190                             " Einheiten der Ware:" . $self->get_part_description(parts_id => $currentPart_ID) .
191                             ", um das Erzeugnis herzustellen. <br>"; # Konnte die Menge nicht mit der aktuellen Anzahl der Waren fertigen
192       next; # die weiteren Überprüfungen sind unnötig, daher das nächste elemente prüfen (genaue Ausgabe, was noch fehlt)
193     }
194
195     # Eine kurze Vorabfrage, um den Lagerplatz, Chargennummer und die Mindesthaltbarkeit zu bestimmen
196     # Offen: Die Summe über alle Lagerplätze wird noch nicht gebildet
197     # Gelöst: Wir haben vorher schon die Abfrage durchgeführt, ob wir fertigen können.
198     # Noch besser gelöst: Wir laufen durch alle benötigten Waren zum Fertigen und geben eine Rückmeldung an den Benutzer was noch fehlt
199     # und lösen den Rest dann so wie bei xplace im Barcode-Programm
200     # S.a. Kommentar im bin/mozilla-Code mb übernimmt und macht das in ordentlich
201
202     my $tempquery = qq|SELECT SUM(qty), bin_id, chargenumber, bestbefore   FROM inventory  
203                        WHERE warehouse_id = ? AND parts_id = ?  GROUP BY bin_id, chargenumber, bestbefore having SUM(qty)>0|;
204     my $tempsth   = prepare_execute_query($form, $dbh, $tempquery, $params{dst_warehouse_id}, $currentPart_ID);
205
206     # Alle Werte zu dem einzelnen Artikel, die wir später auslagern
207     my $tmpPartsQTY = $partsQTY;
208
209     while (my $temphash_ref = $tempsth->fetchrow_hashref()) {
210       my $temppart_bin_id       = $temphash_ref->{bin_id}; # kann man hier den quelllagerplatz beim verbauen angeben?
211       my $temppart_chargenumber = $temphash_ref->{chargenumber};
212       my $temppart_bestbefore   = $temphash_ref->{bestbefore};
213       my $temppart_qty          = $temphash_ref->{sum};
214
215       if ($tmpPartsQTY > $temppart_qty) {  # wir haben noch mehr waren zum wegbuchen. 
216                                            # Wir buchen den kompletten Lagerplatzbestand und zählen die Hilfsvariable runter
217         $tmpPartsQTY = $tmpPartsQTY - $temppart_qty;
218         $temppart_qty = $temppart_qty * -1; # TODO beim analyiseren des sql-trace, war dieser wert positiv, 
219                                             # wenn * -1 als berechnung in der parameter-übergabe angegeben wird. 
220                                             # Dieser Wert IST und BLEIBT positiv!! Hilfe. 
221                                             # Liegt das daran, dass dieser Wert aus einem SQL-Statement stammt?
222         do_statement($form, $sthTransferPartSQL, $transferPartSQL, $currentPart_ID, $params{dst_warehouse_id}, 
223                      $temppart_bin_id, $temppart_chargenumber, $temppart_bestbefore, 'Verbraucht für ' .
224                      $self->get_part_description(parts_id => $params{assembly_id}), $params{login}, $temppart_qty);
225
226         # hier ist noch ein fehler am besten mit definierten erzeugnissen debuggen 02/2009 jb
227         # idee: ausbuch algorithmus mit rekursion lösen und an- und abschaltbar machen
228         # das problem könnte sein, dass strict nicht an war und sth global eine andere zuweisung bekam
229         # auf jeden fall war der internal-server-error nach aktivierung von strict und warnings plus ein paar my-definitionen weg
230       } else { # okay, wir haben weniger oder gleich Waren die wir wegbuchen müssen, wir können also aufhören
231         $tmpPartsQTY *=-1;
232         do_statement($form, $sthTransferPartSQL, $transferPartSQL, $currentPart_ID, $params{dst_warehouse_id},
233                      $temppart_bin_id, $temppart_chargenumber, $temppart_bestbefore, 'Verbraucht für ' .
234                      $self->get_part_description(parts_id => $params{assembly_id}), $params{login}, $tmpPartsQTY);
235         last; # beendet die schleife (springt zum letzten element)
236       }
237     }  # ende while SELECT SUM(qty), bin_id, chargenumber, bestbefore   FROM inventory  WHERE warehouse_id
238   } #ende while select parts_id,qty from assembly where id = ?
239   if ($kannNichtFertigen) {
240     return $kannNichtFertigen;
241   }
242
243   # soweit alles gut. Jetzt noch die wirkliche Lagerbewegung für das Erzeugnis ausführen ...
244   my $transferAssemblySQL = qq|INSERT INTO inventory (parts_id, warehouse_id, bin_id, chargenumber, bestbefore,
245                                                       comment, employee_id, qty, trans_id, trans_type_id)
246                                VALUES (?, ?, ?, ?, ?, ?, (SELECT id FROM employee WHERE login = ?), ?, nextval('id'),
247                                (SELECT id FROM transfer_type WHERE direction = 'in' AND description = 'stock'))|;
248   my $sthTransferAssemblySQL   = prepare_query($form, $dbh, $transferAssemblySQL);
249   do_statement($form, $sthTransferAssemblySQL, $transferAssemblySQL, $params{assembly_id}, $params{dst_warehouse_id}, 
250                $params{dst_bin_id}, $params{chargenumber}, $params{bestbefore}, $params{comment}, $params{login}, $params{qty});
251   $dbh->commit();
252
253   $main::lxdebug->leave_sub();
254   return 1; # Alles erfolgreich
255 }
256
257 sub get_warehouse_journal {
258   $main::lxdebug->enter_sub();
259
260   my $self      = shift;
261   my %filter    = @_;
262
263   my $myconfig  = \%main::myconfig;
264   my $form      = $main::form;
265
266   my $all_units = AM->retrieve_units($myconfig, $form);
267
268   # connect to database
269   my $dbh = $form->get_standard_dbh($myconfig);
270
271   # filters
272   my (@filter_ary, @filter_vars, $joins, %select_tokens, %select);
273
274   if ($filter{warehouse_id} ne '') {
275     push @filter_ary, "w1.id = ? OR w2.id = ?";
276     push @filter_vars, $filter{warehouse_id}, $filter{warehouse_id};
277   }
278
279   if ($filter{bin_id} ne '') {
280     push @filter_ary, "b1.id = ? OR b2.id = ?";
281     push @filter_vars, $filter{bin_id}, $filter{bin_id};
282   }
283
284   if ($filter{partnumber}) {
285     push @filter_ary, "p.partnumber ILIKE ?";
286     push @filter_vars, '%' . $filter{partnumber} . '%';
287   }
288
289   if ($filter{description}) {
290     push @filter_ary, "(p.description ILIKE ?)";
291     push @filter_vars, '%' . $filter{description} . '%';
292   }
293
294   if ($filter{chargenumber}) {
295     push @filter_ary, "i1.chargenumber ILIKE ?";
296     push @filter_vars, '%' . $filter{chargenumber} . '%';
297   }
298
299   if ($form->{bestbefore}) {
300     push @filter_ary, "?::DATE = i1.bestbefore::DATE";
301     push @filter_vars, $form->{bestbefore};
302   }
303
304   if ($form->{fromdate}) {
305     push @filter_ary, "?::DATE <= i1.itime::DATE";
306     push @filter_vars, $form->{fromdate};
307   }
308
309   if ($form->{todate}) {
310     push @filter_ary, "?::DATE >= i1.itime::DATE";
311     push @filter_vars, $form->{todate};
312   }
313
314   if ($form->{l_employee}) {
315     $joins .= "";
316   }
317
318   # prepare qty comparison for later filtering
319   my ($f_qty_op, $f_qty, $f_qty_base_unit);
320   if ($filter{qty_op} && defined($filter{qty}) && $filter{qty_unit} && $all_units->{$filter{qty_unit}}) {
321     $f_qty_op        = $filter{qty_op};
322     $f_qty           = $filter{qty} * $all_units->{$filter{qty_unit}}->{factor};
323     $f_qty_base_unit = $all_units->{$filter{qty_unit}}->{base_unit};
324   }
325
326   map { $_ = "(${_})"; } @filter_ary;
327
328   # if of a property number or description is requested,
329   # automatically check the matching id too.
330   map { $form->{"l_${_}id"} = "Y" if ($form->{"l_${_}description"} || $form->{"l_${_}number"}); } qw(warehouse bin);
331
332   # customize shown entry for not available fields.
333   $filter{na} = '-' unless $filter{na};
334
335   # make order, search in $filter and $form
336   my $sort_col   = $form->{sort};
337   my $sort_order = $form->{order};
338
339   $sort_col      = $filter{sort}         unless $sort_col;
340   $sort_order    = ($sort_col = 'itime') unless $sort_col;
341   $sort_col      = 'itime'               if     $sort_col eq 'date';
342   $sort_order    = $filter{order}        unless $sort_order;
343   my $sort_spec  = "${sort_col} " . ($sort_order ? " DESC" : " ASC");
344
345   my $where_clause = join(" AND ", @filter_ary) . " AND " if (@filter_ary);
346
347   $select_tokens{'trans'} = {
348      "parts_id"             => "i1.parts_id",
349      "qty"                  => "ABS(SUM(i1.qty))",
350      "partnumber"           => "p.partnumber",
351      "partdescription"      => "p.description",
352      "bindescription"       => "b.description",
353      "chargenumber"         => "i1.chargenumber",
354      "bestbefore"           => "i1.bestbefore",
355      "warehousedescription" => "w.description",
356      "partunit"             => "p.unit",
357      "bin_from"             => "b1.description",
358      "bin_to"               => "b2.description",
359      "warehouse_from"       => "w1.description",
360      "warehouse_to"         => "w2.description",
361      "comment"              => "i1.comment",
362      "trans_type"           => "tt.description",
363      "trans_id"             => "i1.trans_id",
364      "oe_id"                => "COALESCE(i1.oe_id, i2.oe_id)",
365      "date"                 => "i1.itime::DATE",
366      "itime"                => "i1.itime",
367      "employee"             => "e.name",
368      "projectnumber"        => "COALESCE(pr.projectnumber, '$filter{na}')",
369      };
370
371   $select_tokens{'out'} = {
372      "bin_to"               => "'$filter{na}'",
373      "warehouse_to"         => "'$filter{na}'",
374      };
375
376   $select_tokens{'in'} = {
377      "bin_from"             => "'$filter{na}'",
378      "warehouse_from"       => "'$filter{na}'",
379      };
380
381   # build the select clauses.
382   # take all the requested ones from the first hash and overwrite them from the out/in hashes if present.
383   for my $i ('trans', 'out', 'in') {
384     $select{$i} = join ', ', map { +/^l_/; ($select_tokens{$i}{"$'"} || $select_tokens{'trans'}{"$'"}) . " AS r_$'" }
385           ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_qty l_partunit l_itime) );
386   }
387
388   my $group_clause = join ", ", map { +/^l_/; "r_$'" }
389         ( grep( { !/qty$/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form), qw(l_parts_id l_partunit l_itime) );
390
391   my $query =
392   qq|SELECT DISTINCT $select{trans}
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 i2.qty = -i1.qty AND i2.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) = 2 )
405     GROUP BY $group_clause
406
407     UNION
408
409     SELECT DISTINCT $select{out}
410     FROM inventory i1
411     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
412     LEFT JOIN parts p ON i1.parts_id = p.id
413     LEFT JOIN bin b1 ON i1.bin_id = b1.id
414     LEFT JOIN bin b2 ON i2.bin_id = b2.id
415     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
416     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
417     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
418     LEFT JOIN project pr ON i1.project_id = pr.id
419     LEFT JOIN employee e ON i1.employee_id = e.id
420     WHERE $where_clause i1.qty < 0 AND
421           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
422     GROUP BY $group_clause
423
424     UNION
425
426     SELECT DISTINCT $select{in}
427     FROM inventory i1
428     LEFT JOIN inventory i2 ON i1.trans_id = i2.trans_id
429     LEFT JOIN parts p ON i1.parts_id = p.id
430     LEFT JOIN bin b1 ON i1.bin_id = b1.id
431     LEFT JOIN bin b2 ON i2.bin_id = b2.id
432     LEFT JOIN warehouse w1 ON i1.warehouse_id = w1.id
433     LEFT JOIN warehouse w2 ON i2.warehouse_id = w2.id
434     LEFT JOIN transfer_type tt ON i1.trans_type_id = tt.id
435     LEFT JOIN project pr ON i1.project_id = pr.id
436     LEFT JOIN employee e ON i1.employee_id = e.id
437     WHERE $where_clause i1.qty > 0 AND
438           i1.trans_id IN ( SELECT i.trans_id FROM inventory i GROUP BY i.trans_id HAVING COUNT(i.trans_id) = 1 )
439     GROUP BY $group_clause
440     ORDER BY r_${sort_spec}|;
441
442   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars, @filter_vars, @filter_vars);
443
444   my ($h_oe_id, $q_oe_id);
445   if ($form->{l_oe_id}) {
446     $q_oe_id = <<SQL;
447       SELECT oe.id AS id,
448         CASE WHEN oe.quotation THEN oe.quonumber ELSE oe.ordnumber END AS number,
449         CASE
450           WHEN oe.customer_id IS NOT NULL AND     COALESCE(oe.quotation, FALSE) THEN 'sales_quotation'
451           WHEN oe.customer_id IS NOT NULL AND NOT COALESCE(oe.quotation, FALSE) THEN 'sales_order'
452           WHEN oe.customer_id IS     NULL AND     COALESCE(oe.quotation, FALSE) THEN 'request_quotation'
453           ELSE                                                                       'purchase_order'
454         END AS type
455       FROM oe
456       WHERE oe.id = ?
457
458       UNION
459
460       SELECT dord.id AS id, dord.donumber AS number,
461         CASE
462           WHEN dord.customer_id IS NULL THEN 'purchase_delivery_order'
463           ELSE                               'sales_delivery_order'
464         END AS type
465       FROM delivery_orders dord
466       WHERE dord.id = ?
467
468       UNION
469
470       SELECT ar.id AS id, ar.invnumber AS number, 'sales_invoice' AS type
471       FROM ar
472       WHERE ar.id = ?
473
474       UNION
475
476       SELECT ap.id AS id, ap.invnumber AS number, 'purchase_invoice' AS type
477       FROM ap
478       WHERE ap.id = ?
479 SQL
480     $h_oe_id = prepare_query($form, $dbh, $q_oe_id);
481   }
482
483   my @contents = ();
484   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
485     map { /^r_/; $ref->{"$'"} = $ref->{$_} } keys %$ref;
486     my $qty = $ref->{"qty"} * 1;
487
488     next unless ($qty > 0);
489
490     if ($f_qty_op) {
491       my $part_unit = $all_units->{$ref->{"partunit"}};
492       next unless ($part_unit && ($part_unit->{"base_unit"} eq $f_qty_base_unit));
493       $qty *= $part_unit->{"factor"};
494       next if (('=' eq $f_qty_op) && ($qty != $f_qty));
495       next if (('>=' eq $f_qty_op) && ($qty < $f_qty));
496       next if (('<=' eq $f_qty_op) && ($qty > $f_qty));
497     }
498
499     if ($h_oe_id && $ref->{oe_id}) {
500       do_statement($form, $h_oe_id, $q_oe_id, ($ref->{oe_id}) x 4);
501       $ref->{oe_id_info} = $h_oe_id->fetchrow_hashref() || {};
502     }
503
504     push @contents, $ref;
505   }
506
507   $sth->finish();
508   $h_oe_id->finish() if $h_oe_id;
509
510   $main::lxdebug->leave_sub();
511
512   return @contents;
513 }
514
515 #
516 # This sub is the primary function to retrieve information about items in warehouses.
517 # $filter is a hashref and supports the following keys:
518 #  - warehouse_id - will return matches with this warehouse_id only
519 #  - partnumber   - will return only matches where the given string is a substring of the partnumber
520 #  - partsid      - will return matches with this parts_id only
521 #  - description  - will return only matches where the given string is a substring of the description
522 #  - chargenumber - will return only matches where the given string is a substring of the chargenumber
523 #  - bestbefore   - will return only matches with this bestbefore date
524 #  - ean          - will return only matches where the given string is a substring of the ean as stored in the table parts (article)
525 #  - charge_ids   - must be an arrayref. will return contents with these ids only
526 #  - expires_in   - will only return matches that expire within the given number of days
527 #                   will also add a column named 'has_expired' containing if the match has already expired or not
528 #  - hazardous    - will return matches with the flag hazardous only
529 #  - oil          - will return matches with the flag oil only
530 #  - qty, qty_op  - quantity filter (more info to come)
531 #  - sort, order_by - sorting (more to come)
532 #  - reservation  - will provide an extra column containing the amount reserved of this match
533 # note: reservation flag turns off warehouse_* or bin_* information. both together don't make sense, since reserved info is stored separately
534 #
535 sub get_warehouse_report {
536   $main::lxdebug->enter_sub();
537
538   my $self      = shift;
539   my %filter    = @_;
540
541   my $myconfig  = \%main::myconfig;
542   my $form      = $main::form;
543
544   my $all_units = AM->retrieve_units($myconfig, $form);
545
546   # connect to database
547   my $dbh = $form->get_standard_dbh($myconfig);
548
549   # filters
550   my (@filter_ary, @filter_vars, @wh_bin_filter_ary, @wh_bin_filter_vars);
551
552   delete $form->{include_empty_bins} unless ($form->{l_warehousedescription} || $form->{l_bindescription});
553
554   if ($filter{warehouse_id}) {
555     push @wh_bin_filter_ary,  "w.id = ?";
556     push @wh_bin_filter_vars, $filter{warehouse_id};
557   }
558
559   if ($filter{bin_id}) {
560     push @wh_bin_filter_ary,  "b.id = ?";
561     push @wh_bin_filter_vars, $filter{bin_id};
562   }
563
564   push @filter_ary,  @wh_bin_filter_ary;
565   push @filter_vars, @wh_bin_filter_vars;
566
567   if ($filter{partnumber}) {
568     push @filter_ary,  "p.partnumber ILIKE ?";
569     push @filter_vars, '%' . $filter{partnumber} . '%';
570   }
571
572   if ($filter{description}) {
573     push @filter_ary,  "p.description ILIKE ?";
574     push @filter_vars, '%' . $filter{description} . '%';
575   }
576
577   if ($filter{partsid}) {
578     push @filter_ary,  "p.id = ?";
579     push @filter_vars, $filter{partsid};
580   }
581
582   if ($filter{chargenumber}) {
583     push @filter_ary,  "i.chargenumber ILIKE ?";
584     push @filter_vars, '%' . $filter{chargenumber} . '%';
585   }
586
587   if ($form->{bestbefore}) {
588     push @filter_ary, "?::DATE = i.bestbefore::DATE";
589     push @filter_vars, $form->{bestbefore};
590   }
591
592   if ($filter{ean}) {
593     push @filter_ary,  "p.ean ILIKE ?";
594     push @filter_vars, '%' . $filter{ean} . '%';
595   }
596
597   # prepare qty comparison for later filtering
598   my ($f_qty_op, $f_qty, $f_qty_base_unit);
599
600   if ($filter{qty_op} && defined $filter{qty} && $filter{qty_unit} && $all_units->{$filter{qty_unit}}) {
601     $f_qty_op        = $filter{qty_op};
602     $f_qty           = $filter{qty} * $all_units->{$filter{qty_unit}}->{factor};
603     $f_qty_base_unit = $all_units->{$filter{qty_unit}}->{base_unit};
604   }
605
606   map { $_ = "(${_})"; } @filter_ary;
607
608   # if of a property number or description is requested,
609   # automatically check the matching id too.
610   map { $form->{"l_${_}id"} = "Y" if ($form->{"l_${_}description"} || $form->{"l_${_}number"}); } qw(warehouse bin);
611
612   # make order, search in $filter and $form
613   my $sort_col    =  $form->{sort};
614   my $sort_order  = $form->{order};
615
616   $sort_col       =  $filter{sort}  unless $sort_col;
617   $sort_col       =  "parts_id"     unless $sort_col;
618   $sort_order     =  $filter{order} unless $sort_order;
619   $sort_col       =~ s/ASC|DESC//; # kill stuff left in from previous queries
620   my $orderby     =  $sort_col;
621   my $sort_spec   =  "${sort_col} " . ($sort_order ? " DESC" : " ASC");
622
623   my $where_clause = join " AND ", ("1=1", @filter_ary);
624
625   my %select_tokens = (
626      "parts_id"              => "i.parts_id",
627      "qty"                  => "SUM(i.qty)",
628      "warehouseid"          => "i.warehouse_id",
629      "partnumber"           => "p.partnumber",
630      "partdescription"      => "p.description",
631      "bindescription"       => "b.description",
632      "binid"                => "b.id",
633      "chargenumber"         => "i.chargenumber",
634      "bestbefore"           => "i.bestbefore",
635      "ean"                  => "p.ean",
636      "chargeid"             => "c.id",
637      "warehousedescription" => "w.description",
638      "partunit"             => "p.unit",
639      "stock_value"          => "p.lastcost / COALESCE(pfac.factor, 1)",
640   );
641   my $select_clause = join ', ', map { +/^l_/; "$select_tokens{$'} AS $'" }
642         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
643           qw(l_parts_id l_qty l_partunit) );
644
645   my $group_clause = join ", ", map { +/^l_/; "$'" }
646         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
647           qw(l_parts_id l_partunit) );
648
649   my %join_tokens = (
650     "stock_value" => "LEFT JOIN price_factors pfac ON (p.price_factor_id = pfac.id)",
651     );
652
653   my $joins = join ' ', grep { $_ } map { +/^l_/; $join_tokens{"$'"} }
654         ( grep( { !/qty/ and /^l_/ and $form->{$_} eq 'Y' } keys %$form),
655           qw(l_parts_id l_qty l_partunit) );
656
657   my $query =
658     qq|SELECT $select_clause
659       FROM inventory i
660       LEFT JOIN parts     p ON i.parts_id     = p.id
661       LEFT JOIN bin       b ON i.bin_id       = b.id
662       LEFT JOIN warehouse w ON i.warehouse_id = w.id
663       $joins
664       WHERE $where_clause
665       GROUP BY $group_clause
666       ORDER BY $sort_spec|;
667
668   my $sth = prepare_execute_query($form, $dbh, $query, @filter_vars);
669
670   my (%non_empty_bins, @all_fields, @contents);
671
672   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
673     $ref->{qty} *= 1;
674     my $qty      = $ref->{qty};
675
676     next unless ($qty != 0);
677
678     if ($f_qty_op) {
679       my $part_unit = $all_units->{$ref->{partunit}};
680       next if (!$part_unit || ($part_unit->{base_unit} ne $f_qty_base_unit));
681       $qty *= $part_unit->{factor};
682       next if (('='  eq $f_qty_op) && ($qty != $f_qty));
683       next if (('>=' eq $f_qty_op) && ($qty <  $f_qty));
684       next if (('<=' eq $f_qty_op) && ($qty >  $f_qty));
685     }
686
687     if ($form->{include_empty_bins}) {
688       $non_empty_bins{$ref->{binid}} = 1;
689       @all_fields                    = keys %{ $ref } unless (@all_fields);
690     }
691
692     $ref->{stock_value} = ($ref->{stock_value} || 0) * $ref->{qty};
693
694     push @contents, $ref;
695   }
696
697   $sth->finish();
698
699   if ($form->{include_empty_bins}) {
700     $query =
701       qq|SELECT
702            w.id AS warehouseid, w.description AS warehousedescription,
703            b.id AS binid, b.description AS bindescription
704          FROM bin b
705          LEFT JOIN warehouse w ON (b.warehouse_id = w.id)|;
706
707     @filter_ary  = @wh_bin_filter_ary;
708     @filter_vars = @wh_bin_filter_vars;
709
710     my @non_empty_bin_ids = keys %non_empty_bins;
711     if (@non_empty_bin_ids) {
712       push @filter_ary,  qq|NOT b.id IN (| . join(', ', map { '?' } @non_empty_bin_ids) . qq|)|;
713       push @filter_vars, @non_empty_bin_ids;
714     }
715
716     $query .= qq| WHERE | . join(' AND ', map { "($_)" } @filter_ary) if (@filter_ary);
717
718     $sth    = prepare_execute_query($form, $dbh, $query, @filter_vars);
719
720     while (my $ref = $sth->fetchrow_hashref()) {
721       map { $ref->{$_} ||= "" } @all_fields;
722       push @contents, $ref;
723     }
724     $sth->finish();
725
726     if (grep { $orderby eq $_ } qw(bindescription warehousedescription)) {
727       @contents = sort { ($a->{$orderby} cmp $b->{$orderby}) * (($form->{order}) ? 1 : -1) } @contents;
728     }
729   }
730
731   $main::lxdebug->leave_sub();
732
733   return @contents;
734 }
735
736 sub convert_qty_op {
737   $main::lxdebug->enter_sub();
738
739   my ($self, $qty_op) = @_;
740
741   if (!$qty_op || ($qty_op eq "dontcare")) {
742     $main::lxdebug->leave_sub();
743     return undef;
744   }
745
746   if ($qty_op eq "atleast") {
747     $qty_op = '>=';
748   } elsif ($qty_op eq "atmost") {
749     $qty_op = '<=';
750   } else {
751     $qty_op = '=';
752   }
753
754   $main::lxdebug->leave_sub();
755
756   return $qty_op;
757 }
758
759 sub retrieve_transfer_types {
760   $main::lxdebug->enter_sub();
761
762   my $self      = shift;
763   my $direction = shift;
764
765   my $myconfig  = \%main::myconfig;
766   my $form      = $main::form;
767
768   my $dbh       = $form->get_standard_dbh($myconfig);
769
770   my $types     = selectall_hashref_query($form, $dbh, qq|SELECT * FROM transfer_type WHERE direction = ? ORDER BY sortkey|, $direction);
771
772   $main::lxdebug->leave_sub();
773
774   return $types;
775 }
776
777 sub get_basic_bin_info {
778   $main::lxdebug->enter_sub();
779
780   my $self     = shift;
781   my %params   = @_;
782
783   Common::check_params(\%params, qw(id));
784
785   my $myconfig = \%main::myconfig;
786   my $form     = $main::form;
787
788   my $dbh      = $params{dbh} || $form->get_standard_dbh();
789
790   my @ids      = 'ARRAY' eq ref $params{id} ? @{ $params{id} } : ($params{id});
791
792   my $query    =
793     qq|SELECT b.id AS bin_id, b.description AS bin_description,
794          w.id AS warehouse_id, w.description AS warehouse_description
795        FROM bin b
796        LEFT JOIN warehouse w ON (b.warehouse_id = w.id)
797        WHERE b.id IN (| . join(', ', ('?') x scalar(@ids)) . qq|)|;
798
799   my $result = selectall_hashref_query($form, $dbh, $query, map { conv_i($_) } @ids);
800
801   if ('' eq ref $params{id}) {
802     $result = $result->[0] || { };
803     $main::lxdebug->leave_sub();
804
805     return $result;
806   }
807
808   $main::lxdebug->leave_sub();
809
810   return map { $_->{bin_id} => $_ } @{ $result };
811 }
812 #
813 # Eingabe:  Teilenummer, Lagernummer (warehouse)
814 # Ausgabe:  Die maximale Anzahl der Teile in diesem Lager
815 #
816 sub get_max_qty_parts {
817 $main::lxdebug->enter_sub();
818
819   my $self     = shift;
820   my %params   = @_;
821
822   Common::check_params(\%params, qw(parts_id warehouse_id)); #die brauchen wir
823
824   my $myconfig = \%main::myconfig;
825   my $form     = $main::form;
826
827   my $dbh      = $params{dbh} || $form->get_standard_dbh();
828
829   my $query = qq| SELECT SUM(qty), bin_id, chargenumber, bestbefore  FROM inventory where parts_id = ? AND warehouse_id = ? GROUP BY bin_id, chargenumber, bestbefore|;
830
831   my $sth_QTY      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}, $params{warehouse_id}); #info: aufruf an DBUtils.pm
832
833   my $max_qty_parts = 0; #Initialisierung mit 0
834   while (my $ref = $sth_QTY->fetchrow_hashref()) {  # wir laufen über alle Haltbarkeiten, chargen und Lagerorte (s.a. SQL-Query oben)
835     $max_qty_parts += $ref->{sum};
836   }
837
838   $main::lxdebug->leave_sub();
839
840   return $max_qty_parts;
841 }
842
843 #
844 # Eingabe:  Teilenummer, Lagernummer (warehouse)
845 # Ausgabe:  Die Beschreibung der Ware bzw. Erzeugnis
846 #
847 sub get_part_description {
848 $main::lxdebug->enter_sub();
849
850   my $self     = shift;
851   my %params   = @_;
852
853   Common::check_params(\%params, qw(parts_id)); #die brauchen wir
854
855   my $myconfig = \%main::myconfig;
856   my $form     = $main::form;
857
858   my $dbh      = $params{dbh} || $form->get_standard_dbh();
859
860   my $query = qq| SELECT partnumber, description FROM parts where id = ? |;
861
862   my $sth      = prepare_execute_query($form, $dbh, $query, ,$params{parts_id}); #info: aufruf zu DBUtils.pm
863
864   my $ref = $sth->fetchrow_hashref();
865   my $part_description = $ref->{partnumber} . " " . $ref->{description};
866
867   $main::lxdebug->leave_sub();
868
869   return $part_description;
870 }
871
872
873 1;