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