4e109d81211c3925161715f75396a75400a5a8a8
[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.itime, dord.mtime,
689          dord.globalproject_id, dord.delivered, dord.transaction_description,
690          dord.taxzone_id, dord.taxincluded, dord.payment_id, (SELECT cu.name FROM currencies cu WHERE cu.id=dord.currency_id) AS currency,
691          dord.delivery_term_id, dord.itime::DATE AS insertdate
692        FROM delivery_orders dord
693        JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
694        LEFT JOIN employee e ON (dord.employee_id = e.id)
695        LEFT JOIN department d ON (dord.department_id = d.id)
696        WHERE dord.id IN ($do_ids_placeholders)|;
697   $sth = prepare_execute_query($form, $dbh, $query, @do_ids);
698
699   delete $form->{"${vc}_id"};
700   my $pos = 0;
701   $form->{ordnumber_array} = ' ';
702   $form->{cusordnumber_array} = ' ';
703   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
704     if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
705       $sth->finish();
706       $main::lxdebug->leave_sub();
707
708       return 0;
709     }
710
711     map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
712     $form->{donumber_array} .= $form->{donumber} . ' ';
713     $pos = index($form->{ordnumber_array},' ' . $form->{ordnumber} . ' ');
714     if ($pos == -1) {
715       $form->{ordnumber_array} .= $form->{ordnumber} . ' ';
716     }
717     $pos = index($form->{cusordnumber_array},' ' . $form->{cusordnumber} . ' ');
718     if ($pos == -1) {
719       $form->{cusordnumber_array} .= $form->{cusordnumber} . ' ';
720     }
721   }
722   $sth->finish();
723   $form->{mtime}   ||= $form->{itime};
724   $form->{lastmtime} = $form->{mtime};
725   $form->{donumber_array} =~ s/\s*$//g;
726   $form->{ordnumber_array} =~ s/ //;
727   $form->{ordnumber_array} =~ s/\s*$//g;
728   $form->{cusordnumber_array} =~ s/ //;
729   $form->{cusordnumber_array} =~ s/\s*$//g;
730
731   $form->{saved_donumber} = $form->{donumber};
732   $form->{saved_ordnumber} = $form->{ordnumber};
733   $form->{saved_cusordnumber} = $form->{cusordnumber};
734
735   # if not given, fill transdate with current_date
736   $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
737
738   if ($mode eq 'single') {
739     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
740     $sth   = prepare_execute_query($form, $dbh, $query, $form->{id});
741
742     $ref   = $sth->fetchrow_hashref("NAME_lc");
743     delete $ref->{id};
744     map { $form->{$_} = $ref->{$_} } keys %$ref;
745     $sth->finish();
746
747     # get printed, emailed and queued
748     $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
749     $sth   = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
750
751     while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
752       $form->{printed} .= "$ref->{formname} " if $ref->{printed};
753       $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
754       $form->{queued}  .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
755     }
756     $sth->finish();
757     map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
758
759   } else {
760     delete $form->{id};
761   }
762
763   # retrieve individual items
764   # this query looks up all information about the items
765   # stuff different from the whole will not be overwritten, but saved with a suffix.
766   $query =
767     qq|SELECT doi.id AS delivery_order_items_id,
768          p.partnumber, p.assembly, p.listprice, doi.description, doi.qty,
769          doi.sellprice, doi.parts_id AS id, doi.unit, doi.discount, p.notes AS partnotes,
770          doi.reqdate, doi.project_id, doi.serialnumber, doi.lastcost,
771          doi.ordnumber, doi.transdate, doi.cusordnumber, doi.longdescription,
772          doi.price_factor_id, doi.price_factor, doi.marge_price_factor, doi.pricegroup_id,
773          doi.active_price_source, doi.active_discount_source,
774          pr.projectnumber, dord.transdate AS dord_transdate, dord.donumber,
775          pg.partsgroup
776        FROM delivery_order_items doi
777        JOIN parts p ON (doi.parts_id = p.id)
778        JOIN delivery_orders dord ON (doi.delivery_order_id = dord.id)
779        LEFT JOIN project pr ON (doi.project_id = pr.id)
780        LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
781        WHERE doi.delivery_order_id IN ($do_ids_placeholders)
782        ORDER BY doi.delivery_order_id, doi.position|;
783
784   $form->{form_details} = selectall_hashref_query($form, $dbh, $query, @do_ids);
785
786   # Retrieve custom variables.
787   foreach my $doi (@{ $form->{form_details} }) {
788     my $cvars = CVar->get_custom_variables(dbh        => $dbh,
789                                            module     => 'IC',
790                                            sub_module => 'delivery_order_items',
791                                            trans_id   => $doi->{delivery_order_items_id},
792                                           );
793     map { $doi->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
794   }
795
796   if ($mode eq 'single') {
797     my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
798
799     $query =
800       qq|SELECT id as delivery_order_items_stock_id, qty, unit, bin_id,
801                 warehouse_id, chargenumber, bestbefore
802          FROM delivery_order_items_stock
803          WHERE delivery_order_item_id = ?|;
804     my $sth = prepare_query($form, $dbh, $query);
805
806     foreach my $doi (@{ $form->{form_details} }) {
807       do_statement($form, $sth, $query, conv_i($doi->{delivery_order_items_id}));
808       my $requests = [];
809       while (my $ref = $sth->fetchrow_hashref()) {
810         push @{ $requests }, $ref;
811       }
812
813       $doi->{"stock_${in_out}"} = YAML::Dump($requests);
814     }
815
816     $sth->finish();
817   }
818
819   Common::webdav_folder($form);
820
821   $main::lxdebug->leave_sub();
822
823   return 1;
824 }
825
826 sub order_details {
827   $main::lxdebug->enter_sub();
828
829   my ($self, $myconfig, $form) = @_;
830
831   # connect to database
832   my $dbh = $form->get_standard_dbh($myconfig);
833   my $query;
834   my @values = ();
835   my $sth;
836   my $item;
837   my $i;
838   my @partsgroup = ();
839   my $partsgroup;
840   my $position = 0;
841   my $subtotal_header = 0;
842   my $subposition = 0;
843   my $si_position = 0;
844
845   my (@project_ids);
846
847   push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
848
849   # sort items by partsgroup
850   for $i (1 .. $form->{rowcount}) {
851     $partsgroup = "";
852     if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
853       $partsgroup = $form->{"partsgroup_$i"};
854     }
855     push @partsgroup, [$i, $partsgroup];
856     push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
857   }
858
859   my $projects = [];
860   my %projects_by_id;
861   if (@project_ids) {
862     $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
863     %projects_by_id = map { $_->id => $_ } @$projects;
864   }
865
866   if ($projects_by_id{$form->{"globalproject_id"}}) {
867     $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
868     $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
869
870     for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
871       $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
872     }
873   }
874
875   my $q_pg     = qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
876                     FROM assembly a
877                     JOIN parts p ON (a.parts_id = p.id)
878                     LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
879                     WHERE a.bom = '1'
880                       AND a.id = ?|;
881   my $h_pg     = prepare_query($form, $dbh, $q_pg);
882
883   my $q_bin_wh = qq|SELECT (SELECT description FROM bin       WHERE id = ?) AS bin,
884                            (SELECT description FROM warehouse WHERE id = ?) AS warehouse|;
885   my $h_bin_wh = prepare_query($form, $dbh, $q_bin_wh);
886
887   my $in_out   = $form->{type} =~ /^sales/ ? 'out' : 'in';
888
889   my $num_si   = 0;
890
891   my $ic_cvar_configs = CVar->get_configs(module => 'IC');
892   my $project_cvar_configs = CVar->get_configs(module => 'Projects');
893
894   # get some values of parts from db on store them in extra array,
895   # so that they can be sorted in later
896   my %prepared_template_arrays = IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
897   my @prepared_arrays          = keys %prepared_template_arrays;
898
899   $form->{TEMPLATE_ARRAYS} = { };
900
901   my @arrays =
902     qw(runningnumber number description longdescription qty qty_nofmt unit
903        partnotes serialnumber reqdate projectnumber projectdescription
904        weight weight_nofmt lineweight lineweight_nofmt
905        si_runningnumber si_number si_description
906        si_warehouse si_bin si_chargenumber si_bestbefore
907        si_qty si_qty_nofmt si_unit);
908
909   map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @prepared_arrays);
910
911   push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
912   push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
913
914   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
915   my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
916
917   my $totalweight = 0;
918   my $sameitem = "";
919   foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
920     $i = $item->[0];
921
922     next if (!$form->{"id_$i"});
923
924     if ($item->[1] ne $sameitem) {
925       push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'partsgroup');
926       push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|);
927       $sameitem = $item->[1];
928
929       map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
930       map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
931       $si_position++;
932     }
933
934     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
935
936     # add number, description and qty to $form->{number}, ....
937     if ($form->{"subtotal_$i"} && !$subtotal_header) {
938       $subtotal_header = $i;
939       $position = int($position);
940       $subposition = 0;
941       $position++;
942     } elsif ($subtotal_header) {
943       $subposition += 1;
944       $position = int($position);
945       $position = $position.".".$subposition;
946     } else {
947       $position = int($position);
948       $position++;
949     }
950
951     $si_position++;
952
953     my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
954     my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
955
956     push(@{ $form->{TEMPLATE_ARRAYS}{$_} },              $prepared_template_arrays{$_}[$i - 1]) for @prepared_arrays;
957
958     push @{ $form->{TEMPLATE_ARRAYS}{entry_type} },      'normal';
959     push @{ $form->{TEMPLATE_ARRAYS}{runningnumber} },   $position;
960     push @{ $form->{TEMPLATE_ARRAYS}{number} },          $form->{"partnumber_$i"};
961     push @{ $form->{TEMPLATE_ARRAYS}{description} },     $form->{"description_$i"};
962     push @{ $form->{TEMPLATE_ARRAYS}{longdescription} }, $form->{"longdescription_$i"};
963     push @{ $form->{TEMPLATE_ARRAYS}{qty} },             $form->format_amount($myconfig, $form->{"qty_$i"});
964     push @{ $form->{TEMPLATE_ARRAYS}{qty_nofmt} },       $form->{"qty_$i"};
965     push @{ $form->{TEMPLATE_ARRAYS}{unit} },            $form->{"unit_$i"};
966     push @{ $form->{TEMPLATE_ARRAYS}{partnotes} },       $form->{"partnotes_$i"};
967     push @{ $form->{TEMPLATE_ARRAYS}{serialnumber} },    $form->{"serialnumber_$i"};
968     push @{ $form->{TEMPLATE_ARRAYS}{reqdate} },         $form->{"reqdate_$i"};
969     push @{ $form->{TEMPLATE_ARRAYS}{projectnumber} },   $project->projectnumber;
970     push @{ $form->{TEMPLATE_ARRAYS}{projectdescription} }, $project->description;
971
972     if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
973       $subtotal_header     = 0;
974     }
975
976     my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
977     $totalweight += $lineweight;
978     push @{ $form->{TEMPLATE_ARRAYS}->{weight} },            $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
979     push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} },      $form->{"weight_$i"};
980     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} },        $form->format_amount($myconfig, $lineweight, 3);
981     push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} },  $lineweight;
982
983     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
984
985     foreach my $si (@{ $stock_info }) {
986       $num_si++;
987
988       do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id}));
989       my $bin_wh = $h_bin_wh->fetchrow_hashref();
990
991       push @{ $form->{TEMPLATE_ARRAYS}{si_runningnumber}[$si_position-1] }, $num_si;
992       push @{ $form->{TEMPLATE_ARRAYS}{si_number}[$si_position-1] },        $form->{"partnumber_$i"};
993       push @{ $form->{TEMPLATE_ARRAYS}{si_description}[$si_position-1] },   $form->{"description_$i"};
994       push @{ $form->{TEMPLATE_ARRAYS}{si_warehouse}[$si_position-1] },     $bin_wh->{warehouse};
995       push @{ $form->{TEMPLATE_ARRAYS}{si_bin}[$si_position-1] },           $bin_wh->{bin};
996       push @{ $form->{TEMPLATE_ARRAYS}{si_chargenumber}[$si_position-1] },  $si->{chargenumber};
997       push @{ $form->{TEMPLATE_ARRAYS}{si_bestbefore}[$si_position-1] },    $si->{bestbefore};
998       push @{ $form->{TEMPLATE_ARRAYS}{si_qty}[$si_position-1] },           $form->format_amount($myconfig, $si->{qty} * 1);
999       push @{ $form->{TEMPLATE_ARRAYS}{si_qty_nofmt}[$si_position-1] },     $si->{qty} * 1;
1000       push @{ $form->{TEMPLATE_ARRAYS}{si_unit}[$si_position-1] },          $si->{unit};
1001     }
1002
1003     if ($form->{"assembly_$i"}) {
1004       $sameitem = "";
1005
1006       # get parts and push them onto the stack
1007       my $sortorder = "";
1008       if ($form->{groupitems}) {
1009         $sortorder =
1010           qq|ORDER BY pg.partsgroup, a.oid|;
1011       } else {
1012         $sortorder = qq|ORDER BY a.oid|;
1013       }
1014
1015       do_statement($form, $h_pg, $q_pg, conv_i($form->{"id_$i"}));
1016
1017       while (my $ref = $h_pg->fetchrow_hashref("NAME_lc")) {
1018         if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
1019           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
1020           map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
1021           $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1022           push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  }, 'assembly-item-partsgroup');
1023           push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
1024           $si_position++;
1025         }
1026
1027         push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type}  },  'assembly-item');
1028         push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq| -- $ref->{partnumber}, $ref->{description}|);
1029         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
1030         map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
1031         $si_position++;
1032       }
1033     }
1034
1035     CVar->get_non_editable_ic_cvars(form               => $form,
1036                                     dbh                => $dbh,
1037                                     row                => $i,
1038                                     sub_module         => 'delivery_order_items',
1039                                     may_converted_from => ['orderitems', 'delivery_order_items']);
1040
1041     push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
1042       CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
1043         for @{ $ic_cvar_configs };
1044
1045     push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
1046   }
1047
1048   $form->{totalweight}       = $form->format_amount($myconfig, $totalweight, 3);
1049   $form->{totalweight_nofmt} = $totalweight;
1050   my $defaults = AM->get_defaults();
1051   $form->{weightunit}        = $defaults->{weightunit};
1052
1053   $h_pg->finish();
1054   $h_bin_wh->finish();
1055
1056   $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
1057   $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
1058   $form->{department}    = SL::DB::Manager::Department->find_by(id => $form->{department_id})->load->description if $form->{department_id};
1059
1060   $form->{username} = $myconfig->{name};
1061
1062   $main::lxdebug->leave_sub();
1063 }
1064
1065 sub project_description {
1066   $main::lxdebug->enter_sub();
1067
1068   my ($self, $dbh, $id) = @_;
1069
1070   my $form     =  $main::form;
1071
1072   my $query = qq|SELECT description FROM project WHERE id = ?|;
1073   my ($value) = selectrow_query($form, $dbh, $query, $id);
1074
1075   $main::lxdebug->leave_sub();
1076
1077   return $value;
1078 }
1079
1080 sub unpack_stock_information {
1081   $main::lxdebug->enter_sub();
1082
1083   my $self   = shift;
1084   my %params = @_;
1085
1086   Common::check_params_x(\%params, qw(packed));
1087
1088   my $unpacked;
1089
1090   eval { $unpacked = $params{packed} ? YAML::Load($params{packed}) : []; };
1091
1092   $unpacked = [] if (!$unpacked || ('ARRAY' ne ref $unpacked));
1093
1094   foreach my $entry (@{ $unpacked }) {
1095     next if ('HASH' eq ref $entry);
1096     $unpacked = [];
1097     last;
1098   }
1099
1100   $main::lxdebug->leave_sub();
1101
1102   return $unpacked;
1103 }
1104
1105 sub get_item_availability {
1106   $::lxdebug->enter_sub;
1107
1108   my $self     = shift;
1109   my %params   = @_;
1110
1111   Common::check_params(\%params, qw(parts_id));
1112
1113   my @parts_ids = 'ARRAY' eq ref $params{parts_id} ? @{ $params{parts_id} } : ($params{parts_id});
1114
1115   my $query     =
1116     qq|SELECT i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, SUM(qty) AS qty, i.parts_id,
1117          w.description AS warehousedescription,
1118          b.description AS bindescription
1119        FROM inventory i
1120        LEFT JOIN warehouse w ON (i.warehouse_id = w.id)
1121        LEFT JOIN bin b       ON (i.bin_id       = b.id)
1122        WHERE (i.parts_id IN (| . join(', ', ('?') x scalar(@parts_ids)) . qq|))
1123        GROUP BY i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, i.parts_id, w.description, b.description
1124        HAVING SUM(qty) > 0
1125        ORDER BY LOWER(w.description), LOWER(b.description), LOWER(i.chargenumber), i.bestbefore
1126 |;
1127   my $contents = selectall_hashref_query($::form, $::form->get_standard_dbh, $query, @parts_ids);
1128
1129   $::lxdebug->leave_sub;
1130
1131   return @{ $contents };
1132 }
1133
1134
1135 sub check_stock_availability {
1136   $main::lxdebug->enter_sub();
1137
1138   my $self     = shift;
1139   my %params   = @_;
1140
1141   Common::check_params(\%params, qw(requests parts_id));
1142
1143   my $myconfig    = \%main::myconfig;
1144   my $form        =  $main::form;
1145
1146   my $dbh         = $form->get_standard_dbh($myconfig);
1147
1148   my $units       = AM->retrieve_units($myconfig, $form);
1149
1150   my ($partunit)  = selectrow_query($form, $dbh, qq|SELECT unit FROM parts WHERE id = ?|, conv_i($params{parts_id}));
1151   my $unit_factor = $units->{$partunit}->{factor} || 1;
1152
1153   my @contents    = $self->get_item_availability(%params);
1154
1155   my @errors;
1156
1157   foreach my $sinfo (@{ $params{requests} }) {
1158     my $found = 0;
1159
1160     foreach my $row (@contents) {
1161       next if (($row->{bin_id}       != $sinfo->{bin_id}) ||
1162                ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1163                ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1164                ($row->{bestbefore}   ne $sinfo->{bestbefore}));
1165
1166       $found       = 1;
1167
1168       my $base_qty = $sinfo->{qty} * $units->{$sinfo->{unit}}->{factor} / $unit_factor;
1169
1170       if ($base_qty > $row->{qty}) {
1171         $sinfo->{error} = 1;
1172         push @errors, $sinfo;
1173
1174         last;
1175       }
1176     }
1177
1178     push @errors, $sinfo if (!$found);
1179   }
1180
1181   $main::lxdebug->leave_sub();
1182
1183   return @errors;
1184 }
1185
1186 sub transfer_in_out {
1187   $main::lxdebug->enter_sub();
1188
1189   my $self     = shift;
1190   my %params   = @_;
1191
1192   Common::check_params(\%params, qw(direction requests));
1193
1194   if (!@{ $params{requests} }) {
1195     $main::lxdebug->leave_sub();
1196     return;
1197   }
1198
1199   my $myconfig = \%main::myconfig;
1200   my $form     = $main::form;
1201
1202   my $prefix   = $params{direction} eq 'in' ? 'dst' : 'src';
1203
1204   my @transfers;
1205
1206   foreach my $request (@{ $params{requests} }) {
1207     push @transfers, {
1208       'parts_id'                      => $request->{parts_id},
1209       "${prefix}_warehouse_id"        => $request->{warehouse_id},
1210       "${prefix}_bin_id"              => $request->{bin_id},
1211       'chargenumber'                  => $request->{chargenumber},
1212       'bestbefore'                    => $request->{bestbefore},
1213       'qty'                           => $request->{qty},
1214       'unit'                          => $request->{unit},
1215       'oe_id'                         => $form->{id},
1216       'shippingdate'                  => 'current_date',
1217       'transfer_type'                 => $params{direction} eq 'in' ? 'stock' : 'shipped',
1218       'project_id'                    => $request->{project_id},
1219       'delivery_order_items_stock_id' => $request->{delivery_order_items_stock_id},
1220       'comment'                       => $request->{comment},
1221     };
1222   }
1223
1224   WH->transfer(@transfers);
1225
1226   $main::lxdebug->leave_sub();
1227 }
1228
1229 sub get_shipped_qty {
1230   $main::lxdebug->enter_sub();
1231
1232   my $self     = shift;
1233   my %params   = @_;
1234
1235   Common::check_params(\%params, qw(type oe_id));
1236
1237   my $myconfig = \%main::myconfig;
1238   my $form     = $main::form;
1239
1240   my $dbh      = $params{dbh} || $form->get_standard_dbh($myconfig);
1241
1242   my @links    = RecordLinks->get_links('dbh'        => $dbh,
1243                                         'from_table' => 'oe',
1244                                         'from_id'    => $params{oe_id},
1245                                         'to_table'   => 'delivery_orders');
1246   my @values   = map { $_->{to_id} } @links;
1247
1248   if (!scalar @values) {
1249     $main::lxdebug->leave_sub();
1250     return ();
1251   }
1252
1253   my $query =
1254     qq|SELECT doi.parts_id, doi.qty, doi.unit, p.unit AS partunit
1255        FROM delivery_order_items doi
1256        LEFT JOIN delivery_orders o ON (doi.delivery_order_id = o.id)
1257        LEFT JOIN parts p ON (doi.parts_id = p.id)
1258        WHERE o.id IN (| . join(', ', ('?') x scalar @values) . qq|)|;
1259
1260   my %ship      = ();
1261   my $entries   = selectall_hashref_query($form, $dbh, $query, @values);
1262   my $all_units = AM->retrieve_all_units();
1263
1264   foreach my $entry (@{ $entries }) {
1265     $entry->{qty} *= AM->convert_unit($entry->{unit}, $entry->{partunit}, $all_units);
1266
1267     if (!$ship{$entry->{parts_id}}) {
1268       $ship{$entry->{parts_id}} = $entry;
1269     } else {
1270       $ship{$entry->{parts_id}}->{qty} += $entry->{qty};
1271     }
1272   }
1273
1274   $main::lxdebug->leave_sub();
1275
1276   return %ship;
1277 }
1278
1279 sub is_marked_as_delivered {
1280   $main::lxdebug->enter_sub();
1281
1282   my $self     = shift;
1283   my %params   = @_;
1284
1285   Common::check_params(\%params, qw(id));
1286
1287   my $myconfig    = \%main::myconfig;
1288   my $form        = $main::form;
1289
1290   my $dbh         = $params{dbh} || $form->get_standard_dbh($myconfig);
1291
1292   my ($delivered) = selectfirst_array_query($form, $dbh, qq|SELECT delivered FROM delivery_orders WHERE id = ?|, conv_i($params{id}));
1293
1294   $main::lxdebug->leave_sub();
1295
1296   return $delivered ? 1 : 0;
1297 }
1298
1299 1;