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