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