delivery_order_items_stock persistent machen Teil 3
[kivitendo-erp.git] / SL / DO.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 # Delivery Order entry module
32 #======================================================================
33
34 package DO;
35
36 use List::Util qw(max);
37 use YAML;
38
39 use SL::AM;
40 use SL::Common;
41 use SL::CVar;
42 use SL::DB::DeliveryOrder;
43 use SL::DB::Status;
44 use SL::DBUtils;
45 use SL::HTML::Restrict;
46 use SL::RecordLinks;
47 use SL::IC;
48 use SL::TransNumber;
49
50 use strict;
51
52 sub transactions {
53   $main::lxdebug->enter_sub();
54
55   my ($self)   = @_;
56
57   my $myconfig = \%main::myconfig;
58   my $form     = $main::form;
59
60   # connect to database
61   my $dbh = $form->get_standard_dbh($myconfig);
62
63   my (@where, @values, $where);
64
65   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
66
67   my $query =
68     qq|SELECT dord.id, dord.donumber, dord.ordnumber, dord.cusordnumber,
69          dord.transdate, dord.reqdate,
70          ct.${vc}number, ct.name, dord.${vc}_id, dord.globalproject_id,
71          dord.closed, dord.delivered, dord.shippingpoint, dord.shipvia,
72          dord.transaction_description,
73          pr.projectnumber AS globalprojectnumber,
74          dep.description AS department,
75          e.name AS employee,
76          sm.name AS salesman
77        FROM delivery_orders dord
78        LEFT JOIN $vc ct ON (dord.${vc}_id = ct.id)
79        LEFT JOIN contacts cp ON (dord.cp_id = cp.cp_id)
80        LEFT JOIN employee e ON (dord.employee_id = e.id)
81        LEFT JOIN employee sm ON (dord.salesman_id = sm.id)
82        LEFT JOIN project pr ON (dord.globalproject_id = pr.id)
83        LEFT JOIN department dep ON (dord.department_id = dep.id)
84 |;
85
86   push @where, ($form->{type} eq 'sales_delivery_order' ? '' : 'NOT ') . qq|COALESCE(dord.is_sales, FALSE)|;
87
88   if ($form->{department_id}) {
89     push @where,  qq|dord.department_id = ?|;
90     push @values, conv_i($form->{department_id});
91   }
92
93   if ($form->{project_id}) {
94     push @where,
95       qq|(dord.globalproject_id = ?) OR EXISTS
96           (SELECT * FROM delivery_order_items doi
97            WHERE (doi.project_id = ?) AND (doi.delivery_order_id = dord.id))|;
98     push @values, conv_i($form->{project_id}), conv_i($form->{project_id});
99   }
100
101   if ($form->{"${vc}_id"}) {
102     push @where,  qq|dord.${vc}_id = ?|;
103     push @values, $form->{"${vc}_id"};
104
105   } elsif ($form->{$vc}) {
106     push @where,  qq|ct.name ILIKE ?|;
107     push @values, '%' . $form->{$vc} . '%';
108   }
109
110   if ($form->{"cp_name"}) {
111     push @where, "(cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
112     push @values, ('%' . $form->{"cp_name"} . '%')x2;
113   }
114
115   foreach my $item (qw(employee_id salesman_id)) {
116     next unless ($form->{$item});
117     push @where, "dord.$item = ?";
118     push @values, conv_i($form->{$item});
119   }
120   if (!$main::auth->assert('sales_all_edit', 1)) {
121     push @where, qq|dord.employee_id = (select id from employee where login= ?)|;
122     push @values, $form->{login};
123   }
124
125   foreach my $item (qw(donumber ordnumber cusordnumber transaction_description)) {
126     next unless ($form->{$item});
127     push @where,  qq|dord.$item ILIKE ?|;
128     push @values, '%' . $form->{$item} . '%';
129   }
130
131   if (($form->{open} || $form->{closed}) &&
132       ($form->{open} ne $form->{closed})) {
133     push @where, ($form->{open} ? "NOT " : "") . "COALESCE(dord.closed, FALSE)";
134   }
135
136   if (($form->{notdelivered} || $form->{delivered}) &&
137       ($form->{notdelivered} ne $form->{delivered})) {
138     push @where, ($form->{delivered} ? "" : "NOT ") . "COALESCE(dord.delivered, FALSE)";
139   }
140
141   if ($form->{serialnumber}) {
142     push @where, 'dord.id IN (SELECT doi.delivery_order_id FROM delivery_order_items doi WHERE doi.serialnumber LIKE ?)';
143     push @values, '%' . $form->{serialnumber} . '%';
144   }
145
146   if($form->{transdatefrom}) {
147     push @where,  qq|dord.transdate >= ?|;
148     push @values, conv_date($form->{transdatefrom});
149   }
150
151   if($form->{transdateto}) {
152     push @where,  qq|dord.transdate <= ?|;
153     push @values, conv_date($form->{transdateto});
154   }
155
156   if($form->{reqdatefrom}) {
157     push @where,  qq|dord.reqdate >= ?|;
158     push @values, conv_date($form->{reqdatefrom});
159   }
160
161   if($form->{reqdateto}) {
162     push @where,  qq|dord.reqdate <= ?|;
163     push @values, conv_date($form->{reqdateto});
164   }
165
166   if (@where) {
167     $query .= " WHERE " . join(" AND ", map { "($_)" } @where);
168   }
169
170   my %allowed_sort_columns = (
171     "transdate"               => "dord.transdate",
172     "reqdate"                 => "dord.reqdate",
173     "id"                      => "dord.id",
174     "donumber"                => "dord.donumber",
175     "ordnumber"               => "dord.ordnumber",
176     "name"                    => "ct.name",
177     "employee"                => "e.name",
178     "salesman"                => "sm.name",
179     "shipvia"                 => "dord.shipvia",
180     "transaction_description" => "dord.transaction_description",
181     "department"              => "lower(dep.description)",
182   );
183
184   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
185   my $sortorder = "dord.id";
186   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
187     $sortorder = $allowed_sort_columns{$form->{sort}};
188   }
189
190   $query .= qq| ORDER by | . $sortorder . " $sortdir";
191
192   $form->{DO} = selectall_hashref_query($form, $dbh, $query, @values);
193
194   if (scalar @{ $form->{DO} }) {
195     $query =
196       qq|SELECT id
197          FROM oe
198          WHERE NOT COALESCE(quotation, FALSE)
199            AND (ordnumber = ?)
200            AND (COALESCE(${vc}_id, 0) != 0)|;
201
202     my $sth = prepare_query($form, $dbh, $query);
203
204     foreach my $dord (@{ $form->{DO} }) {
205       next unless ($dord->{ordnumber});
206       do_statement($form, $sth, $query, $dord->{ordnumber});
207       ($dord->{oe_id}) = $sth->fetchrow_array();
208     }
209
210     $sth->finish();
211   }
212
213   $main::lxdebug->leave_sub();
214 }
215
216 sub save {
217   $main::lxdebug->enter_sub();
218
219   my ($self)   = @_;
220
221   my $myconfig = \%main::myconfig;
222   my $form     = $main::form;
223
224   # connect to database, turn off autocommit
225   my $dbh = $form->get_standard_dbh($myconfig);
226   my $restricter = SL::HTML::Restrict->create;
227
228   my ($query, @values, $sth, $null);
229
230   my $all_units = AM->retrieve_units($myconfig, $form);
231   $form->{all_units} = $all_units;
232
233   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
234                                           dbh    => $dbh);
235
236   my $trans_number     = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{donumber}, id => $form->{id});
237   $form->{donumber}  ||= $trans_number->create_unique;
238   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
239   $form->get_employee($dbh) unless ($form->{employee_id});
240
241   my $ml = ($form->{type} eq 'sales_delivery_order') ? 1 : -1;
242
243   my (@processed_doi, @processed_dois);
244
245   if ($form->{id}) {
246
247     # only delete shipto complete
248     $query = qq|DELETE FROM shipto WHERE trans_id = ? AND module = 'DO'|;
249     do_query($form, $dbh, $query, conv_i($form->{id}));
250
251   } else {
252
253     $query = qq|SELECT nextval('id')|;
254     ($form->{id}) = selectrow_query($form, $dbh, $query);
255
256     $query = qq|INSERT INTO delivery_orders (id, donumber, employee_id, currency_id, taxzone_id) VALUES (?, '', ?, (SELECT currency_id FROM defaults LIMIT 1), ?)|;
257     do_query($form, $dbh, $query, $form->{id}, conv_i($form->{employee_id}), $form->{taxzone_id});
258   }
259
260   my $project_id;
261   my $items_reqdate;
262
263   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
264   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
265   my $price_factor;
266
267   my %part_id_map = map { $_ => 1 } grep { $_ } map { $form->{"id_$_"} } (1 .. $form->{rowcount});
268   my @part_ids    = keys %part_id_map;
269   my %part_unit_map;
270
271   if (@part_ids) {
272     $query         = qq|SELECT id, unit FROM parts WHERE id IN (| . join(', ', map { '?' } @part_ids) . qq|)|;
273     %part_unit_map = selectall_as_map($form, $dbh, $query, 'id', 'unit', @part_ids);
274   }
275   my $q_item = <<SQL;
276     UPDATE delivery_order_items SET
277        delivery_order_id = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?, base_qty = ?,
278        sellprice = ?, discount = ?, unit = ?, reqdate = ?, project_id = ?, serialnumber = ?,
279        ordnumber = ?, transdate = ?, cusordnumber = ?,
280        lastcost = ? , price_factor_id = ?, price_factor = (SELECT factor FROM price_factors where id = ?),
281        marge_price_factor = ?, pricegroup_id = ?, active_price_source = ?, active_discount_source = ?
282     WHERE id = ?
283 SQL
284   my $h_item = prepare_query($form, $dbh, $q_item);
285
286   my $q_item_stock = <<SQL;
287     UPDATE delivery_order_items_stock SET
288       delivery_order_item_id = ?, qty = ?,  unit = ?,  warehouse_id = ?,
289       bin_id = ?, chargenumber = ?, bestbefore = ?
290     WHERE id = ?
291 SQL
292   my $h_item_stock = prepare_query($form, $dbh, $q_item_stock);
293
294   my $in_out       = $form->{type} =~ /^sales/ ? 'out' : 'in';
295
296   for my $i (1 .. $form->{rowcount}) {
297     next if (!$form->{"id_$i"});
298
299     if (!$form->{"delivery_order_items_id_$i"}) {
300       # there is no persistent id, therefore create one with all necessary constraints
301       my $q_item_id = qq|SELECT nextval('delivery_order_items_id')|;
302       my $h_item_id = prepare_query($form, $dbh, $q_item_id);
303       do_statement($form, $h_item_id, $q_item_id);
304       $form->{"delivery_order_items_id_$i"}  = $h_item_id->fetchrow_array();
305       $query = qq|INSERT INTO delivery_order_items (id, delivery_order_id, parts_id) VALUES (?, ?, ?)|;
306       do_query($form, $dbh, $query, conv_i($form->{"delivery_order_items_id_$i"}),
307                 conv_i($form->{"id"}), conv_i($form->{"id_$i"}));
308       $h_item_id->finish();
309     }
310     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
311
312     my $item_unit = $part_unit_map{$form->{"id_$i"}};
313
314     my $basefactor = 1;
315     if (defined($all_units->{$item_unit}->{factor}) && (($all_units->{$item_unit}->{factor} * 1) != 0)) {
316       $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
317     }
318     my $baseqty = $form->{"qty_$i"} * $basefactor;
319
320     # set values to 0 if nothing entered
321     $form->{"discount_$i"}  = $form->parse_amount($myconfig, $form->{"discount_$i"});
322     $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
323     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"});
324
325     $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
326     my $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
327
328     $items_reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
329
330
331     # Get pricegroup_id and save it. Unfortunately the interface
332     # also uses ID "0" for signalling that none is selected, but "0"
333     # must not be stored in the database. Therefore we cannot simply
334     # use conv_i().
335     my $pricegroup_id = $form->{"pricegroup_id_$i"} * 1;
336     $pricegroup_id    = undef if !$pricegroup_id;
337
338     # save detail record in delivery_order_items table
339     @values = (conv_i($form->{id}), conv_i($form->{"id_$i"}),
340                $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}),
341                $form->{"qty_$i"}, $baseqty,
342                $form->{"sellprice_$i"}, $form->{"discount_$i"} / 100,
343                $form->{"unit_$i"}, conv_date($items_reqdate), conv_i($form->{"project_id_$i"}),
344                $form->{"serialnumber_$i"},
345                $form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
346                $form->{"cusordnumber_$i"},
347                $form->{"lastcost_$i"},
348                conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
349                conv_i($form->{"marge_price_factor_$i"}),
350                $pricegroup_id,
351                $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
352                conv_i($form->{"delivery_order_items_id_$i"}));
353     do_statement($form, $h_item, $q_item, @values);
354     push @processed_doi, $form->{"delivery_order_items_id_$i"}; # transaction safe?
355
356     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
357
358     foreach my $sinfo (@{ $stock_info }) {
359       # if we have stock_info, we have to check for persistents entries
360       if (!$sinfo->{"delivery_order_items_stock_id"}) {
361         my $q_item_stock_id = qq|SELECT nextval('id')|;
362         my $h_item_stock_id = prepare_query($form, $dbh, $q_item_stock_id);
363         do_statement($form, $h_item_stock_id, $q_item_stock_id);
364         $sinfo->{"delivery_order_items_stock_id"} = $h_item_stock_id->fetchrow_array();
365         $query = qq|INSERT INTO delivery_order_items_stock (id, delivery_order_item_id, qty, unit, warehouse_id, bin_id)
366                     VALUES (?, ?, ?, ?, ?, ?)|;
367         do_query($form, $dbh, $query, conv_i($sinfo->{"delivery_order_items_stock_id"}),
368                   conv_i($form->{"delivery_order_items_id_$i"}), $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
369                   conv_i($sinfo->{bin_id}));
370        $h_item_stock_id->finish();
371       }
372       @values = ($form->{"delivery_order_items_id_$i"}, $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
373                  conv_i($sinfo->{bin_id}), $sinfo->{chargenumber}, conv_date($sinfo->{bestbefore}),
374                  conv_i($sinfo->{"delivery_order_items_stock_id"}));
375       do_statement($form, $h_item_stock, $q_item_stock, @values);
376       push @processed_dois, $sinfo->{"delivery_order_items_stock_id"};
377     }
378
379     CVar->save_custom_variables(module       => 'IC',
380                                 sub_module   => 'delivery_order_items',
381                                 trans_id     => $form->{"delivery_order_items_id_$i"},
382                                 configs      => $ic_cvar_configs,
383                                 variables    => $form,
384                                 name_prefix  => 'ic_',
385                                 name_postfix => "_$i",
386                                 dbh          => $dbh);
387   }
388
389   # 1. search for orphaned dois; processed_dois may be empty (no transfer) TODO: be supersafe and alter same statement for doi and oi
390   $query  = sprintf 'SELECT id FROM delivery_order_items_stock WHERE delivery_order_item_id in
391                       (select id from delivery_order_items where delivery_order_id = ?)';
392   $query .= sprintf ' AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_dois if (scalar @processed_dois);
393   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_dois);
394   my @orphaned_dois_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
395   if (scalar @orphaned_dois_ids) {
396     # clean up delivery_order_items_stock
397     $query  = sprintf 'DELETE FROM delivery_order_items_stock WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_dois_ids;
398     do_query($form, $dbh, $query, @orphaned_dois_ids);
399   }
400   # 2. search for orphaned doi
401   $query  = sprintf 'SELECT id FROM delivery_order_items WHERE delivery_order_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_doi;
402   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_doi);
403   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
404   if (scalar @orphaned_ids) {
405     # clean up delivery_order_items
406     $query  = sprintf 'DELETE FROM delivery_order_items WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
407     do_query($form, $dbh, $query, @orphaned_ids);
408   }
409   $h_item->finish();
410   $h_item_stock->finish();
411
412
413   # reqdate is last items reqdate (?: old behaviour) if not already set
414   $form->{reqdate} ||= $items_reqdate;
415   # save DO record
416   $query =
417     qq|UPDATE delivery_orders SET
418          donumber = ?, ordnumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
419          customer_id = ?, reqdate = ?,
420          shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, closed = ?,
421          delivered = ?, department_id = ?, language_id = ?, shipto_id = ?,
422          globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?,
423          is_sales = ?, taxzone_id = ?, taxincluded = ?, terms = ?, currency_id = (SELECT id FROM currencies WHERE name = ?),
424          delivery_term_id = ?
425        WHERE id = ?|;
426
427   @values = ($form->{donumber}, $form->{ordnumber},
428              $form->{cusordnumber}, conv_date($form->{transdate}),
429              conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
430              conv_date($form->{reqdate}), $form->{shippingpoint}, $form->{shipvia},
431              $form->{notes}, $form->{intnotes},
432              $form->{closed} ? 't' : 'f', $form->{delivered} ? "t" : "f",
433              conv_i($form->{department_id}), conv_i($form->{language_id}), conv_i($form->{shipto_id}),
434              conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
435              conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
436              $form->{transaction_description},
437              $form->{type} =~ /^sales/ ? 't' : 'f',
438              conv_i($form->{taxzone_id}), $form->{taxincluded} ? 't' : 'f', conv_i($form->{terms}), $form->{currency},
439              conv_i($form->{delivery_term_id}),
440              conv_i($form->{id}));
441   do_query($form, $dbh, $query, @values);
442
443   $form->{name} = $form->{ $form->{vc} };
444   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
445
446   # add shipto
447   if (!$form->{shipto_id}) {
448     $form->add_shipto($dbh, $form->{id}, "DO");
449   }
450
451   # save printed, emailed, queued
452   $form->save_status($dbh);
453
454   # Link this delivery order to the quotations it was created from.
455   RecordLinks->create_links('dbh'        => $dbh,
456                             'mode'       => 'ids',
457                             'from_table' => 'oe',
458                             'from_ids'   => $form->{convert_from_oe_ids},
459                             'to_table'   => 'delivery_orders',
460                             'to_id'      => $form->{id},
461     );
462   delete $form->{convert_from_oe_ids};
463
464   $self->mark_orders_if_delivered('do_id' => $form->{id},
465                                   'type'  => $form->{type} eq 'sales_delivery_order' ? 'sales' : 'purchase',
466                                   'dbh'   => $dbh,);
467
468   my $rc = $dbh->commit();
469
470   $form->{saved_donumber} = $form->{donumber};
471   $form->{saved_ordnumber} = $form->{ordnumber};
472   $form->{saved_cusordnumber} = $form->{cusordnumber};
473
474   Common::webdav_folder($form);
475
476   $main::lxdebug->leave_sub();
477
478   return $rc;
479 }
480
481 sub mark_orders_if_delivered {
482   $main::lxdebug->enter_sub();
483
484   my $self   = shift;
485   my %params = @_;
486
487   Common::check_params(\%params, qw(do_id type));
488
489   my $myconfig = \%main::myconfig;
490   my $form     = $main::form;
491
492   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
493
494   my @links    = RecordLinks->get_links('dbh'        => $dbh,
495                                         'from_table' => 'oe',
496                                         'to_table'   => 'delivery_orders',
497                                         'to_id'      => $params{do_id});
498
499   my $oe_id  = @links ? $links[0]->{from_id} : undef;
500
501   return $main::lxdebug->leave_sub() if (!$oe_id);
502
503   my $all_units = AM->retrieve_all_units();
504
505   my $query     = qq|SELECT oi.parts_id, oi.qty, oi.unit, p.unit AS partunit
506                      FROM orderitems oi
507                      LEFT JOIN parts p ON (oi.parts_id = p.id)
508                      WHERE (oi.trans_id = ?)|;
509   my $sth       = prepare_execute_query($form, $dbh, $query, $oe_id);
510
511   my %shipped   = $self->get_shipped_qty('type'  => $params{type},
512                                          'oe_id' => $oe_id,);
513   my %ordered   = ();
514
515   while (my $ref = $sth->fetchrow_hashref()) {
516     $ref->{baseqty} = $ref->{qty} * $all_units->{$ref->{unit}}->{factor} / $all_units->{$ref->{partunit}}->{factor};
517
518     if ($ordered{$ref->{parts_id}}) {
519       $ordered{$ref->{parts_id}}->{baseqty} += $ref->{baseqty};
520     } else {
521       $ordered{$ref->{parts_id}}             = $ref;
522     }
523   }
524
525   $sth->finish();
526
527   map { $_->{baseqty} = $_->{qty} * $all_units->{$_->{unit}}->{factor} / $all_units->{$_->{partunit}}->{factor} } values %shipped;
528
529   my $delivered = 1;
530   foreach my $part (values %ordered) {
531     if (!$shipped{$part->{parts_id}} || ($shipped{$part->{parts_id}}->{baseqty} < $part->{baseqty})) {
532       $delivered = 0;
533       last;
534     }
535   }
536
537   if ($delivered) {
538     $query = qq|UPDATE oe
539                 SET delivered = TRUE
540                 WHERE id = ?|;
541     do_query($form, $dbh, $query, $oe_id);
542     $dbh->commit() if (!$params{dbh});
543   }
544
545   $main::lxdebug->leave_sub();
546 }
547
548 sub close_orders {
549   $main::lxdebug->enter_sub();
550
551   my $self     = shift;
552   my %params   = @_;
553
554   Common::check_params(\%params, qw(ids));
555
556   if (('ARRAY' ne ref $params{ids}) || !scalar @{ $params{ids} }) {
557     $main::lxdebug->leave_sub();
558     return;
559   }
560
561   my $myconfig = \%main::myconfig;
562   my $form     = $main::form;
563
564   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
565
566   my $query    = qq|UPDATE delivery_orders SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar(@{ $params{ids} })) . qq|)|;
567
568   do_query($form, $dbh, $query, map { conv_i($_) } @{ $params{ids} });
569
570   $dbh->commit() unless ($params{dbh});
571
572   $main::lxdebug->leave_sub();
573 }
574
575 sub delete {
576   $main::lxdebug->enter_sub();
577
578   my ($self)   = @_;
579
580   my $myconfig = \%main::myconfig;
581   my $form     = $main::form;
582   my $spool    = $::lx_office_conf{paths}->{spool};
583
584   my $rc = SL::DB::Order->new->db->with_transaction(sub {
585     my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $form->{id} ]) };
586
587     SL::DB::DeliveryOrder->new(id => $form->{id})->delete;
588
589     my $spool = $::lx_office_conf{paths}->{spool};
590     unlink map { "$spool/$_" } @spoolfiles if $spool;
591
592     1;
593   });
594
595   $main::lxdebug->leave_sub();
596
597   return $rc;
598 }
599
600 sub retrieve {
601   $main::lxdebug->enter_sub();
602
603   my $self     = shift;
604   my %params   = @_;
605
606   my $myconfig = \%main::myconfig;
607   my $form     = $main::form;
608
609   # connect to database
610   my $dbh = $form->get_standard_dbh($myconfig);
611
612   my ($query, $query_add, @values, $sth, $ref);
613
614   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
615                                           dbh    => $dbh);
616
617   my $vc   = $params{vc} eq 'customer' ? 'customer' : 'vendor';
618
619   my $mode = !$params{ids} ? 'default' : ref $params{ids} eq 'ARRAY' ? 'multi' : 'single';
620
621   if ($mode eq 'default') {
622     $ref = selectfirst_hashref_query($form, $dbh, qq|SELECT current_date AS transdate|);
623     map { $form->{$_} = $ref->{$_} } keys %$ref;
624
625     # if reqdate is not set from oe-workflow, set it to transdate (which is current date)
626     $form->{reqdate} ||= $form->{transdate};
627
628     # get last name used
629     $form->lastname_used($dbh, $myconfig, $vc) unless $form->{"${vc}_id"};
630
631     $main::lxdebug->leave_sub();
632
633     return 1;
634   }
635
636   my @do_ids              = map { conv_i($_) } ($mode eq 'multi' ? @{ $params{ids} } : ($params{ids}));
637   my $do_ids_placeholders = join(', ', ('?') x scalar(@do_ids));
638
639   # retrieve order for single id
640   # NOTE: this query is intended to fetch all information only ONCE.
641   # so if any of these infos is important (or even different) for any item,
642   # it will be killed out and then has to be fetched from the item scope query further down
643   $query =
644     qq|SELECT dord.cp_id, dord.donumber, dord.ordnumber, dord.transdate, dord.reqdate,
645          dord.shippingpoint, dord.shipvia, dord.notes, dord.intnotes,
646          e.name AS employee, dord.employee_id, dord.salesman_id,
647          dord.${vc}_id, cv.name AS ${vc},
648          dord.closed, dord.reqdate, dord.department_id, dord.cusordnumber,
649          d.description AS department, dord.language_id,
650          dord.shipto_id,
651          dord.globalproject_id, dord.delivered, dord.transaction_description,
652          dord.taxzone_id, dord.taxincluded, dord.terms, (SELECT cu.name FROM currencies cu WHERE cu.id=dord.currency_id) AS currency,
653          dord.delivery_term_id
654        FROM delivery_orders dord
655        JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
656        LEFT JOIN employee e ON (dord.employee_id = e.id)
657        LEFT JOIN department d ON (dord.department_id = d.id)
658        WHERE dord.id IN ($do_ids_placeholders)|;
659   $sth = prepare_execute_query($form, $dbh, $query, @do_ids);
660
661   delete $form->{"${vc}_id"};
662   my $pos = 0;
663   $form->{ordnumber_array} = ' ';
664   $form->{cusordnumber_array} = ' ';
665   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
666     if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
667       $sth->finish();
668       $main::lxdebug->leave_sub();
669
670       return 0;
671     }
672
673     map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
674     $form->{donumber_array} .= $form->{donumber} . ' ';
675     $pos = index($form->{ordnumber_array},' ' . $form->{ordnumber} . ' ');
676     if ($pos == -1) {
677       $form->{ordnumber_array} .= $form->{ordnumber} . ' ';
678     }
679     $pos = index($form->{cusordnumber_array},' ' . $form->{cusordnumber} . ' ');
680     if ($pos == -1) {
681       $form->{cusordnumber_array} .= $form->{cusordnumber} . ' ';
682     }
683   }
684   $sth->finish();
685
686   $form->{donumber_array} =~ s/\s*$//g;
687   $form->{ordnumber_array} =~ s/ //;
688   $form->{ordnumber_array} =~ s/\s*$//g;
689   $form->{cusordnumber_array} =~ s/ //;
690   $form->{cusordnumber_array} =~ s/\s*$//g;
691
692   $form->{saved_donumber} = $form->{donumber};
693   $form->{saved_ordnumber} = $form->{ordnumber};
694   $form->{saved_cusordnumber} = $form->{cusordnumber};
695
696   # if not given, fill transdate with current_date
697   $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
698
699   if ($mode eq 'single') {
700     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
701     $sth   = prepare_execute_query($form, $dbh, $query, $form->{id});
702
703     $ref   = $sth->fetchrow_hashref("NAME_lc");
704     delete $ref->{id};
705     map { $form->{$_} = $ref->{$_} } keys %$ref;
706     $sth->finish();
707
708     # get printed, emailed and queued
709     $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
710     $sth   = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
711
712     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
713       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
714       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
715       $form->{queued}  .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
716     }
717     $sth->finish();
718     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
719
720   } else {
721     delete $form->{id};
722   }
723
724   # retrieve individual items
725   # this query looks up all information about the items
726   # stuff different from the whole will not be overwritten, but saved with a suffix.
727   $query =
728     qq|SELECT doi.id AS delivery_order_items_id,
729          p.partnumber, p.assembly, p.listprice, doi.description, doi.qty,
730          doi.sellprice, doi.parts_id AS id, doi.unit, doi.discount, p.notes AS partnotes,
731          doi.reqdate, doi.project_id, doi.serialnumber, doi.lastcost,
732          doi.ordnumber, doi.transdate, doi.cusordnumber, doi.longdescription,
733          doi.price_factor_id, doi.price_factor, doi.marge_price_factor, doi.pricegroup_id,
734          doi.active_price_source, doi.active_discount_source,
735          pr.projectnumber, dord.transdate AS dord_transdate, dord.donumber,
736          pg.partsgroup
737        FROM delivery_order_items doi
738        JOIN parts p ON (doi.parts_id = p.id)
739        JOIN delivery_orders dord ON (doi.delivery_order_id = dord.id)
740        LEFT JOIN project pr ON (doi.project_id = pr.id)
741        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
742        WHERE doi.delivery_order_id IN ($do_ids_placeholders)
743        ORDER BY doi.oid|;
744
745   $form->{form_details} = selectall_hashref_query($form, $dbh, $query, @do_ids);
746
747   # Retrieve custom variables.
748   foreach my $doi (@{ $form->{form_details} }) {
749     my $cvars = CVar->get_custom_variables(dbh        => $dbh,
750                                            module     => 'IC',
751                                            sub_module => 'delivery_order_items',
752                                            trans_id   => $doi->{delivery_order_items_id},
753                                           );
754     map { $doi->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
755   }
756
757   if ($mode eq 'single') {
758     my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
759
760     $query =
761       qq|SELECT id as delivery_order_items_stock_id, qty, unit, bin_id,
762                 warehouse_id, chargenumber, bestbefore
763          FROM delivery_order_items_stock
764          WHERE delivery_order_item_id = ?|;
765     my $sth = prepare_query($form, $dbh, $query);
766
767     foreach my $doi (@{ $form->{form_details} }) {
768       do_statement($form, $sth, $query, conv_i($doi->{delivery_order_items_id}));
769       my $requests = [];
770       while (my $ref = $sth->fetchrow_hashref()) {
771         push @{ $requests }, $ref;
772       }
773
774       $doi->{"stock_${in_out}"} = YAML::Dump($requests);
775     }
776
777     $sth->finish();
778   }
779
780   Common::webdav_folder($form);
781
782   $main::lxdebug->leave_sub();
783
784   return 1;
785 }
786
787 sub order_details {
788   $main::lxdebug->enter_sub();
789
790   my ($self, $myconfig, $form) = @_;
791
792   # connect to database
793   my $dbh = $form->get_standard_dbh($myconfig);
794   my $query;
795   my @values = ();
796   my $sth;
797   my $item;
798   my $i;
799   my @partsgroup = ();
800   my $partsgroup;
801   my $position = 0;
802   my $subtotal_header = 0;
803   my $subposition = 0;
804   my $si_position = 0;
805
806   my (@project_ids);
807
808   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
809
810   # sort items by partsgroup
811   for $i (1 .. $form->{rowcount}) {
812     $partsgroup = "";
813     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
814       $partsgroup = $form->{"partsgroup_$i"};
815     }
816     push @partsgroup, [$i, $partsgroup];
817     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
818   }
819
820   my $projects = [];
821   my %projects_by_id;
822   if (@project_ids) {
823     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
824     %projects_by_id = map { $_->id => $_ } @$projects;
825   }
826
827   if ($projects_by_id{$form->{"globalproject_id"}}) {
828     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
829     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
830
831     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
832       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
833     }
834   }
835
836   my $q_pg     = qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
837                     FROM assembly a
838                     JOIN parts p ON (a.parts_id = p.id)
839                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
840                     WHERE a.bom = '1'
841                       AND a.id = ?|;
842   my $h_pg     = prepare_query($form, $dbh, $q_pg);
843
844   my $q_bin_wh = qq|SELECT (SELECT description FROM bin       WHERE id = ?) AS bin,
845                            (SELECT description FROM warehouse WHERE id = ?) AS warehouse|;
846   my $h_bin_wh = prepare_query($form, $dbh, $q_bin_wh);
847
848   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
849
850   my $num_si   = 0;
851
852   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
853   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
854
855   $form->{TEMPLATE_ARRAYS} = { };
856   IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
857
858   my @arrays =
859     qw(runningnumber number description longdescription qty unit
860        partnotes serialnumber reqdate projectnumber projectdescription
861        weight lineweight
862        si_runningnumber si_number si_description
863        si_warehouse si_bin si_chargenumber si_bestbefore
864        si_qty si_qty_nofmt si_unit);
865
866   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays);
867
868   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
869   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
870
871   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
872   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
873
874   my $totalweight = 0;
875   my $sameitem = "";
876   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
877     $i = $item->[0];
878
879     next if (!$form->{"id_$i"});
880
881     if ($item->[1] ne $sameitem) {
882       push(@{ $form->{description} }, qq|$item->[1]|);
883       $sameitem = $item->[1];
884
885       map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
886     }
887
888     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
889
890     # add number, description and qty to $form->{number}, ....
891     if ($form->{"subtotal_$i"} && !$subtotal_header) {
892       $subtotal_header = $i;
893       $position = int($position);
894       $subposition = 0;
895       $position++;
896     } elsif ($subtotal_header) {
897       $subposition += 1;
898       $position = int($position);
899       $position = $position.".".$subposition;
900     } else {
901       $position = int($position);
902       $position++;
903     }
904
905     $si_position++;
906
907     my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
908     my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
909
910     push @{ $form->{TEMPLATE_ARRAYS}{runningnumber} },   $position;
911     push @{ $form->{TEMPLATE_ARRAYS}{number} },          $form->{"partnumber_$i"};
912     push @{ $form->{TEMPLATE_ARRAYS}{description} },     $form->{"description_$i"};
913     push @{ $form->{TEMPLATE_ARRAYS}{longdescription} }, $form->{"longdescription_$i"};
914     push @{ $form->{TEMPLATE_ARRAYS}{qty} },             $form->format_amount($myconfig, $form->{"qty_$i"});
915     push @{ $form->{TEMPLATE_ARRAYS}{qty_nofmt} },       $form->{"qty_$i"};
916     push @{ $form->{TEMPLATE_ARRAYS}{unit} },            $form->{"unit_$i"};
917     push @{ $form->{TEMPLATE_ARRAYS}{partnotes} },       $form->{"partnotes_$i"};
918     push @{ $form->{TEMPLATE_ARRAYS}{serialnumber} },    $form->{"serialnumber_$i"};
919     push @{ $form->{TEMPLATE_ARRAYS}{reqdate} },         $form->{"reqdate_$i"};
920     push @{ $form->{TEMPLATE_ARRAYS}{projectnumber} },   $project->projectnumber;
921     push @{ $form->{TEMPLATE_ARRAYS}{projectdescription} }, $project->description;
922
923     if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
924       $subtotal_header     = 0;
925     }
926
927     my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
928     $totalweight += $lineweight;
929     push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
930     push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
931     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
932     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
933
934     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
935
936     foreach my $si (@{ $stock_info }) {
937       $num_si++;
938
939       do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id}));
940       my $bin_wh = $h_bin_wh->fetchrow_hashref();
941
942       push @{ $form->{TEMPLATE_ARRAYS}{si_runningnumber}[$si_position-1] }, $num_si;
943       push @{ $form->{TEMPLATE_ARRAYS}{si_number}[$si_position-1] },        $form->{"partnumber_$i"};
944       push @{ $form->{TEMPLATE_ARRAYS}{si_description}[$si_position-1] },   $form->{"description_$i"};
945       push @{ $form->{TEMPLATE_ARRAYS}{si_warehouse}[$si_position-1] },     $bin_wh->{warehouse};
946       push @{ $form->{TEMPLATE_ARRAYS}{si_bin}[$si_position-1] },           $bin_wh->{bin};
947       push @{ $form->{TEMPLATE_ARRAYS}{si_chargenumber}[$si_position-1] },  $si->{chargenumber};
948       push @{ $form->{TEMPLATE_ARRAYS}{si_bestbefore}[$si_position-1] },    $si->{bestbefore};
949       push @{ $form->{TEMPLATE_ARRAYS}{si_qty}[$si_position-1] },           $form->format_amount($myconfig, $si->{qty} * 1);
950       push @{ $form->{TEMPLATE_ARRAYS}{si_qty_nofmt}[$si_position-1] },     $si->{qty} * 1;
951       push @{ $form->{TEMPLATE_ARRAYS}{si_unit}[$si_position-1] },          $si->{unit};
952     }
953
954     if ($form->{"assembly_$i"}) {
955       $sameitem = "";
956
957       # get parts and push them onto the stack
958       my $sortorder = "";
959       if ($form->{groupitems}) {
960         $sortorder =
961           qq|ORDER BY pg.partsgroup, a.oid|;
962       } else {
963         $sortorder = qq|ORDER BY a.oid|;
964       }
965
966       do_statement($form, $h_pg, $q_pg, conv_i($form->{"id_$i"}));
967
968       while (my $ref = $h_pg->fetchrow_hashref("NAME_lc")) {
969         if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
970           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} @arrays));
971           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
972           $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
973           push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
974           $si_position++;
975         }
976
977         push(@{ $form->{TEMPLATE_ARRAYS}->{"description"} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq| -- $ref->{partnumber}, $ref->{description}|);
978         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} @arrays));
979         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
980         $si_position++;
981       }
982     }
983
984     push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
985       CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
986         for @{ $ic_cvar_configs };
987
988     push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
989   }
990
991   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
992   $form->{totalweight_nofmt} = $totalweight;
993   my $defaults = AM->get_defaults();
994   $form->{weightunit}        = $defaults->{weightunit};
995
996   $h_pg->finish();
997   $h_bin_wh->finish();
998
999   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
1000   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
1001
1002   $form->{username} = $myconfig->{name};
1003
1004   $main::lxdebug->leave_sub();
1005 }
1006
1007 sub project_description {
1008   $main::lxdebug->enter_sub();
1009
1010   my ($self, $dbh, $id) = @_;
1011
1012   my $form     =  $main::form;
1013
1014   my $query = qq|SELECT description FROM project WHERE id = ?|;
1015   my ($value) = selectrow_query($form, $dbh, $query, $id);
1016
1017   $main::lxdebug->leave_sub();
1018
1019   return $value;
1020 }
1021
1022 sub unpack_stock_information {
1023   $main::lxdebug->enter_sub();
1024
1025   my $self   = shift;
1026   my %params = @_;
1027
1028   Common::check_params_x(\%params, qw(packed));
1029
1030   my $unpacked;
1031
1032   eval { $unpacked = $params{packed} ? YAML::Load($params{packed}) : []; };
1033
1034   $unpacked = [] if (!$unpacked || ('ARRAY' ne ref $unpacked));
1035
1036   foreach my $entry (@{ $unpacked }) {
1037     next if ('HASH' eq ref $entry);
1038     $unpacked = [];
1039     last;
1040   }
1041
1042   $main::lxdebug->leave_sub();
1043
1044   return $unpacked;
1045 }
1046
1047 sub get_item_availability {
1048   $::lxdebug->enter_sub;
1049
1050   my $self     = shift;
1051   my %params   = @_;
1052
1053   Common::check_params(\%params, qw(parts_id));
1054
1055   my @parts_ids = 'ARRAY' eq ref $params{parts_id} ? @{ $params{parts_id} } : ($params{parts_id});
1056
1057   my $query     =
1058     qq|SELECT i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, SUM(qty) AS qty, i.parts_id,
1059          w.description AS warehousedescription,
1060          b.description AS bindescription
1061        FROM inventory i
1062        LEFT JOIN warehouse w ON (i.warehouse_id = w.id)
1063        LEFT JOIN bin b       ON (i.bin_id       = b.id)
1064        WHERE (i.parts_id IN (| . join(', ', ('?') x scalar(@parts_ids)) . qq|))
1065        GROUP BY i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, i.parts_id, w.description, b.description
1066        HAVING SUM(qty) > 0
1067        ORDER BY LOWER(w.description), LOWER(b.description), LOWER(i.chargenumber), i.bestbefore
1068 |;
1069   my $contents = selectall_hashref_query($::form, $::form->get_standard_dbh, $query, @parts_ids);
1070
1071   $::lxdebug->leave_sub;
1072
1073   return @{ $contents };
1074 }
1075
1076
1077 sub check_stock_availability {
1078   $main::lxdebug->enter_sub();
1079
1080   my $self     = shift;
1081   my %params   = @_;
1082
1083   Common::check_params(\%params, qw(requests parts_id));
1084
1085   my $myconfig    = \%main::myconfig;
1086   my $form        =  $main::form;
1087
1088   my $dbh         = $form->get_standard_dbh($myconfig);
1089
1090   my $units       = AM->retrieve_units($myconfig, $form);
1091
1092   my ($partunit)  = selectrow_query($form, $dbh, qq|SELECT unit FROM parts WHERE id = ?|, conv_i($params{parts_id}));
1093   my $unit_factor = $units->{$partunit}->{factor} || 1;
1094
1095   my @contents    = $self->get_item_availability(%params);
1096
1097   my @errors;
1098
1099   foreach my $sinfo (@{ $params{requests} }) {
1100     my $found = 0;
1101
1102     foreach my $row (@contents) {
1103       next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1104                ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1105                ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1106                ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1107
1108       $found       = 1;
1109
1110       my $base_qty = $sinfo->{qty} * $units->{$sinfo->{unit}}->{factor} / $unit_factor;
1111
1112       if ($base_qty > $row->{qty}) {
1113         $sinfo->{error} = 1;
1114         push @errors, $sinfo;
1115
1116         last;
1117       }
1118     }
1119
1120     push @errors, $sinfo if (!$found);
1121   }
1122
1123   $main::lxdebug->leave_sub();
1124
1125   return @errors;
1126 }
1127
1128 sub transfer_in_out {
1129   $main::lxdebug->enter_sub();
1130
1131   my $self     = shift;
1132   my %params   = @_;
1133
1134   Common::check_params(\%params, qw(direction requests));
1135
1136   if (!@{ $params{requests} }) {
1137     $main::lxdebug->leave_sub();
1138     return;
1139   }
1140
1141   my $myconfig = \%main::myconfig;
1142   my $form     = $main::form;
1143
1144   my $prefix   = $params{direction} eq 'in' ? 'dst' : 'src';
1145
1146   my @transfers;
1147
1148   foreach my $request (@{ $params{requests} }) {
1149     push @transfers, {
1150       'parts_id'               => $request->{parts_id},
1151       "${prefix}_warehouse_id" => $request->{warehouse_id},
1152       "${prefix}_bin_id"       => $request->{bin_id},
1153       'chargenumber'           => $request->{chargenumber},
1154       'bestbefore'             => $request->{bestbefore},
1155       'qty'                    => $request->{qty},
1156       'unit'                   => $request->{unit},
1157       'oe_id'                  => $form->{id},
1158       'shippingdate'           => 'current_date',
1159       'transfer_type'          => $params{direction} eq 'in' ? 'stock' : 'shipped',
1160       'project_id'             => $request->{project_id},
1161     };
1162   }
1163
1164   WH->transfer(@transfers);
1165
1166   $main::lxdebug->leave_sub();
1167 }
1168
1169 sub get_shipped_qty {
1170   $main::lxdebug->enter_sub();
1171
1172   my $self     = shift;
1173   my %params   = @_;
1174
1175   Common::check_params(\%params, qw(type oe_id));
1176
1177   my $myconfig = \%main::myconfig;
1178   my $form     = $main::form;
1179
1180   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
1181
1182   my @links    = RecordLinks->get_links('dbh'        => $dbh,
1183                                         'from_table' => 'oe',
1184                                         'from_id'    => $params{oe_id},
1185                                         'to_table'   => 'delivery_orders');
1186   my @values   = map { $_->{to_id} } @links;
1187
1188   if (!scalar @values) {
1189     $main::lxdebug->leave_sub();
1190     return ();
1191   }
1192
1193   my $query =
1194     qq|SELECT doi.parts_id, doi.qty, doi.unit, p.unit AS partunit
1195        FROM delivery_order_items doi
1196        LEFT JOIN delivery_orders o ON (doi.delivery_order_id = o.id)
1197        LEFT JOIN parts p ON (doi.parts_id = p.id)
1198        WHERE o.id IN (| . join(', ', ('?') x scalar @values) . qq|)|;
1199
1200   my %ship      = ();
1201   my $entries   = selectall_hashref_query($form, $dbh, $query, @values);
1202   my $all_units = AM->retrieve_all_units();
1203
1204   foreach my $entry (@{ $entries }) {
1205     $entry->{qty} *= AM->convert_unit($entry->{unit}, $entry->{partunit}, $all_units);
1206
1207     if (!$ship{$entry->{parts_id}}) {
1208       $ship{$entry->{parts_id}} = $entry;
1209     } else {
1210       $ship{$entry->{parts_id}}->{qty} += $entry->{qty};
1211     }
1212   }
1213
1214   $main::lxdebug->leave_sub();
1215
1216   return %ship;
1217 }
1218
1219 sub is_marked_as_delivered {
1220   $main::lxdebug->enter_sub();
1221
1222   my $self     = shift;
1223   my %params   = @_;
1224
1225   Common::check_params(\%params, qw(id));
1226
1227   my $myconfig    = \%main::myconfig;
1228   my $form        = $main::form;
1229
1230   my $dbh         = $params{dbh} || $form->get_standard_dbh($myconfig);
1231
1232   my ($delivered) = selectfirst_array_query($form, $dbh, qq|SELECT delivered FROM delivery_orders WHERE id = ?|, conv_i($params{id}));
1233
1234   $main::lxdebug->leave_sub();
1235
1236   return $delivered ? 1 : 0;
1237 }
1238
1239
1240 1;