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