Verkaufs-/Einkaufsbelege: beim Laden der Lieferadresse $form->{shipto_id} nicht übers...
[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 YAML;
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::HTML::Restrict;
48 use SL::RecordLinks;
49 use SL::IC;
50 use SL::TransNumber;
51 use SL::DB;
52 use SL::Util qw(trim);
53
54 use strict;
55
56 sub transactions {
57   $main::lxdebug->enter_sub();
58
59   my ($self)   = @_;
60
61   my $myconfig = \%main::myconfig;
62   my $form     = $main::form;
63
64   # connect to database
65   my $dbh = $form->get_standard_dbh($myconfig);
66
67   my (@where, @values, $where);
68
69   my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
70
71   my $query =
72     qq|SELECT dord.id, dord.donumber, dord.ordnumber, dord.cusordnumber,
73          dord.transdate, dord.reqdate,
74          ct.${vc}number, ct.name, ct.business_id,
75          dord.${vc}_id, dord.globalproject_id,
76          dord.closed, dord.delivered, dord.shippingpoint, dord.shipvia,
77          dord.transaction_description, dord.itime::DATE AS insertdate,
78          pr.projectnumber AS globalprojectnumber,
79          dep.description AS department,
80          e.name AS employee,
81          sm.name AS salesman
82        FROM delivery_orders dord
83        LEFT JOIN $vc ct ON (dord.${vc}_id = ct.id)
84        LEFT JOIN contacts cp ON (dord.cp_id = cp.cp_id)
85        LEFT JOIN employee e ON (dord.employee_id = e.id)
86        LEFT JOIN employee sm ON (dord.salesman_id = sm.id)
87        LEFT JOIN project pr ON (dord.globalproject_id = pr.id)
88        LEFT JOIN department dep ON (dord.department_id = dep.id)
89 |;
90
91   push @where, ($form->{type} eq 'sales_delivery_order' ? '' : 'NOT ') . qq|COALESCE(dord.is_sales, FALSE)|;
92
93   if ($form->{department_id}) {
94     push @where,  qq|dord.department_id = ?|;
95     push @values, conv_i($form->{department_id});
96   }
97
98   if ($form->{project_id}) {
99     push @where,
100       qq|(dord.globalproject_id = ?) OR EXISTS
101           (SELECT * FROM delivery_order_items doi
102            WHERE (doi.project_id = ?) AND (doi.delivery_order_id = dord.id))|;
103     push @values, conv_i($form->{project_id}), conv_i($form->{project_id});
104   }
105
106   if ($form->{"business_id"}) {
107     push @where,  qq|ct.business_id = ?|;
108     push @values, conv_i($form->{"business_id"});
109   }
110
111   if ($form->{"${vc}_id"}) {
112     push @where,  qq|dord.${vc}_id = ?|;
113     push @values, $form->{"${vc}_id"};
114
115   } elsif ($form->{$vc}) {
116     push @where,  qq|ct.name ILIKE ?|;
117     push @values, like($form->{$vc});
118   }
119
120   if ($form->{"cp_name"}) {
121     push @where, "(cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
122     push @values, (like($form->{"cp_name"}))x2;
123   }
124
125   foreach my $item (qw(employee_id salesman_id)) {
126     next unless ($form->{$item});
127     push @where, "dord.$item = ?";
128     push @values, conv_i($form->{$item});
129   }
130   if (!$main::auth->assert('sales_all_edit', 1)) {
131     push @where, qq|dord.employee_id = (select id from employee where login= ?)|;
132     push @values, $::myconfig{login};
133   }
134
135   foreach my $item (qw(donumber ordnumber cusordnumber transaction_description)) {
136     next unless ($form->{$item});
137     push @where,  qq|dord.$item ILIKE ?|;
138     push @values, like($form->{$item});
139   }
140
141   if (($form->{open} || $form->{closed}) &&
142       ($form->{open} ne $form->{closed})) {
143     push @where, ($form->{open} ? "NOT " : "") . "COALESCE(dord.closed, FALSE)";
144   }
145
146   if (($form->{notdelivered} || $form->{delivered}) &&
147       ($form->{notdelivered} ne $form->{delivered})) {
148     push @where, ($form->{delivered} ? "" : "NOT ") . "COALESCE(dord.delivered, FALSE)";
149   }
150
151   if ($form->{serialnumber}) {
152     push @where, 'dord.id IN (SELECT doi.delivery_order_id FROM delivery_order_items doi WHERE doi.serialnumber LIKE ?)';
153     push @values, like($form->{serialnumber});
154   }
155
156   if($form->{transdatefrom}) {
157     push @where,  qq|dord.transdate >= ?|;
158     push @values, conv_date($form->{transdatefrom});
159   }
160
161   if($form->{transdateto}) {
162     push @where,  qq|dord.transdate <= ?|;
163     push @values, conv_date($form->{transdateto});
164   }
165
166   if($form->{reqdatefrom}) {
167     push @where,  qq|dord.reqdate >= ?|;
168     push @values, conv_date($form->{reqdatefrom});
169   }
170
171   if($form->{reqdateto}) {
172     push @where,  qq|dord.reqdate <= ?|;
173     push @values, conv_date($form->{reqdateto});
174   }
175
176   if($form->{insertdatefrom}) {
177     push @where, qq|dord.itime::DATE >= ?|;
178     push@values, conv_date($form->{insertdatefrom});
179   }
180
181   if($form->{insertdateto}) {
182     push @where, qq|dord.itime::DATE <= ?|;
183     push @values, conv_date($form->{insertdateto});
184   }
185
186   if ($form->{parts_partnumber}) {
187     push @where, <<SQL;
188       EXISTS (
189         SELECT delivery_order_items.delivery_order_id
190         FROM delivery_order_items
191         LEFT JOIN parts ON (delivery_order_items.parts_id = parts.id)
192         WHERE (delivery_order_items.delivery_order_id = dord.id)
193           AND (parts.partnumber ILIKE ?)
194         LIMIT 1
195       )
196 SQL
197     push @values, like($form->{parts_partnumber});
198   }
199
200   if ($form->{parts_description}) {
201     push @where, <<SQL;
202       EXISTS (
203         SELECT delivery_order_items.delivery_order_id
204         FROM delivery_order_items
205         WHERE (delivery_order_items.delivery_order_id = dord.id)
206           AND (delivery_order_items.description ILIKE ?)
207         LIMIT 1
208       )
209 SQL
210     push @values, like($form->{parts_description});
211   }
212
213   if (@where) {
214     $query .= " WHERE " . join(" AND ", map { "($_)" } @where);
215   }
216
217   my %allowed_sort_columns = (
218     "transdate"               => "dord.transdate",
219     "reqdate"                 => "dord.reqdate",
220     "id"                      => "dord.id",
221     "donumber"                => "dord.donumber",
222     "ordnumber"               => "dord.ordnumber",
223     "name"                    => "ct.name",
224     "employee"                => "e.name",
225     "salesman"                => "sm.name",
226     "shipvia"                 => "dord.shipvia",
227     "transaction_description" => "dord.transaction_description",
228     "department"              => "lower(dep.description)",
229     "insertdate"              => "dord.itime",
230   );
231
232   my $sortdir   = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
233   my $sortorder = "dord.id";
234   if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
235     $sortorder = $allowed_sort_columns{$form->{sort}};
236   }
237
238   $query .= qq| ORDER by | . $sortorder . " $sortdir";
239
240   $form->{DO} = selectall_hashref_query($form, $dbh, $query, @values);
241
242   if (scalar @{ $form->{DO} }) {
243     $query =
244       qq|SELECT id
245          FROM oe
246          WHERE NOT COALESCE(quotation, FALSE)
247            AND (ordnumber = ?)
248            AND (COALESCE(${vc}_id, 0) != 0)|;
249
250     my $sth = prepare_query($form, $dbh, $query);
251
252     foreach my $dord (@{ $form->{DO} }) {
253       next unless ($dord->{ordnumber});
254       do_statement($form, $sth, $query, $dord->{ordnumber});
255       ($dord->{oe_id}) = $sth->fetchrow_array();
256     }
257
258     $sth->finish();
259   }
260
261   $main::lxdebug->leave_sub();
262 }
263
264 sub save {
265   my ($self) = @_;
266   $main::lxdebug->enter_sub();
267
268   my $rc = SL::DB->client->with_transaction(\&_save, $self);
269
270   $main::lxdebug->leave_sub();
271   return $rc;
272 }
273
274 sub _save {
275   $main::lxdebug->enter_sub();
276
277   my ($self)   = @_;
278
279   my $myconfig = \%main::myconfig;
280   my $form     = $main::form;
281
282   my $dbh = SL::DB->client->dbh;
283   my $restricter = SL::HTML::Restrict->create;
284
285   my ($query, @values, $sth, $null);
286
287   my $all_units = AM->retrieve_units($myconfig, $form);
288   $form->{all_units} = $all_units;
289
290   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
291                                           dbh    => $dbh);
292
293   my $trans_number     = SL::TransNumber->new(type => $form->{type}, dbh => $dbh, number => $form->{donumber}, id => $form->{id});
294   $form->{donumber}  ||= $trans_number->create_unique;
295   $form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
296   $form->get_employee($dbh) unless ($form->{employee_id});
297
298   my $ml = ($form->{type} eq 'sales_delivery_order') ? 1 : -1;
299
300   my (@processed_doi, @processed_dois);
301
302   if ($form->{id}) {
303
304     # only delete shipto complete
305     $query = qq|DELETE FROM custom_variables
306                 WHERE (config_id IN (SELECT id        FROM custom_variable_configs WHERE (module = 'ShipTo')))
307                   AND (trans_id  IN (SELECT shipto_id FROM shipto                  WHERE (module = 'DO') AND (trans_id = ?)))|;
308     do_query($form, $dbh, $query, $form->{id});
309
310     $query = qq|DELETE FROM shipto WHERE trans_id = ? AND module = 'DO'|;
311     do_query($form, $dbh, $query, conv_i($form->{id}));
312
313   } else {
314
315     $query = qq|SELECT nextval('id')|;
316     ($form->{id}) = selectrow_query($form, $dbh, $query);
317
318     $query = qq|INSERT INTO delivery_orders (id, donumber, employee_id, currency_id, taxzone_id) VALUES (?, '', ?, (SELECT currency_id FROM defaults LIMIT 1), ?)|;
319     do_query($form, $dbh, $query, $form->{id}, conv_i($form->{employee_id}), $form->{taxzone_id});
320   }
321
322   my $project_id;
323   my $items_reqdate;
324
325   $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
326   my %price_factors = map { $_->{id} => $_->{factor} *1 } @{ $form->{ALL_PRICE_FACTORS} };
327   my $price_factor;
328
329   my %part_id_map = map { $_ => 1 } grep { $_ } map { $form->{"id_$_"} } (1 .. $form->{rowcount});
330   my @part_ids    = keys %part_id_map;
331   my %part_unit_map;
332
333   if (@part_ids) {
334     $query         = qq|SELECT id, unit FROM parts WHERE id IN (| . join(', ', map { '?' } @part_ids) . qq|)|;
335     %part_unit_map = selectall_as_map($form, $dbh, $query, 'id', 'unit', @part_ids);
336   }
337   my $q_item = <<SQL;
338     UPDATE delivery_order_items SET
339        delivery_order_id = ?, position = ?, parts_id = ?, description = ?, longdescription = ?, qty = ?, base_qty = ?,
340        sellprice = ?, discount = ?, unit = ?, reqdate = ?, project_id = ?, serialnumber = ?,
341        lastcost = ? , price_factor_id = ?, price_factor = (SELECT factor FROM price_factors where id = ?),
342        marge_price_factor = ?, pricegroup_id = ?, active_price_source = ?, active_discount_source = ?
343     WHERE id = ?
344 SQL
345   my $h_item = prepare_query($form, $dbh, $q_item);
346
347   my $q_item_stock = <<SQL;
348     UPDATE delivery_order_items_stock SET
349       delivery_order_item_id = ?, qty = ?,  unit = ?,  warehouse_id = ?,
350       bin_id = ?, chargenumber = ?, bestbefore = ?
351     WHERE id = ?
352 SQL
353   my $h_item_stock = prepare_query($form, $dbh, $q_item_stock);
354
355   my $in_out       = $form->{type} =~ /^sales/ ? 'out' : 'in';
356
357   for my $i (1 .. $form->{rowcount}) {
358     next if (!$form->{"id_$i"});
359
360     CVar->get_non_editable_ic_cvars(form               => $form,
361                                     dbh                => $dbh,
362                                     row                => $i,
363                                     sub_module         => 'delivery_order_items',
364                                     may_converted_from => ['orderitems', 'delivery_order_items']);
365
366     my $position = $i;
367
368     if (!$form->{"delivery_order_items_id_$i"}) {
369       # there is no persistent id, therefore create one with all necessary constraints
370       my $q_item_id = qq|SELECT nextval('delivery_order_items_id')|;
371       my $h_item_id = prepare_query($form, $dbh, $q_item_id);
372       do_statement($form, $h_item_id, $q_item_id);
373       $form->{"delivery_order_items_id_$i"}  = $h_item_id->fetchrow_array();
374       $query = qq|INSERT INTO delivery_order_items (id, delivery_order_id, position, parts_id) VALUES (?, ?, ?, ?)|;
375       do_query($form, $dbh, $query, conv_i($form->{"delivery_order_items_id_$i"}),
376                 conv_i($form->{"id"}), conv_i($position), conv_i($form->{"id_$i"}));
377       $h_item_id->finish();
378     }
379
380     $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
381
382     my $item_unit = $part_unit_map{$form->{"id_$i"}};
383
384     my $basefactor = 1;
385     if (defined($all_units->{$item_unit}->{factor}) && (($all_units->{$item_unit}->{factor} * 1) != 0)) {
386       $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
387     }
388     my $baseqty = $form->{"qty_$i"} * $basefactor;
389
390     # set values to 0 if nothing entered
391     $form->{"discount_$i"}  = $form->parse_amount($myconfig, $form->{"discount_$i"});
392     $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
393     $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"});
394
395     $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
396     my $linetotal    = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
397
398     $items_reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
399
400
401     # Get pricegroup_id and save it. Unfortunately the interface
402     # also uses ID "0" for signalling that none is selected, but "0"
403     # must not be stored in the database. Therefore we cannot simply
404     # use conv_i().
405     my $pricegroup_id = $form->{"pricegroup_id_$i"} * 1;
406     $pricegroup_id    = undef if !$pricegroup_id;
407
408     # save detail record in delivery_order_items table
409     @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
410                $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}),
411                $form->{"qty_$i"}, $baseqty,
412                $form->{"sellprice_$i"}, $form->{"discount_$i"} / 100,
413                $form->{"unit_$i"}, conv_date($items_reqdate), conv_i($form->{"project_id_$i"}),
414                $form->{"serialnumber_$i"},
415                $form->{"lastcost_$i"},
416                conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
417                conv_i($form->{"marge_price_factor_$i"}),
418                $pricegroup_id,
419                $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
420                conv_i($form->{"delivery_order_items_id_$i"}));
421     do_statement($form, $h_item, $q_item, @values);
422     push @processed_doi, $form->{"delivery_order_items_id_$i"}; # transaction safe?
423
424     my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
425
426     foreach my $sinfo (@{ $stock_info }) {
427       # if we have stock_info, we have to check for persistents entries
428       if (!$sinfo->{"delivery_order_items_stock_id"}) {
429         my $q_item_stock_id = qq|SELECT nextval('id')|;
430         my $h_item_stock_id = prepare_query($form, $dbh, $q_item_stock_id);
431         do_statement($form, $h_item_stock_id, $q_item_stock_id);
432         $sinfo->{"delivery_order_items_stock_id"} = $h_item_stock_id->fetchrow_array();
433         $query = qq|INSERT INTO delivery_order_items_stock (id, delivery_order_item_id, qty, unit, warehouse_id, bin_id)
434                     VALUES (?, ?, ?, ?, ?, ?)|;
435         do_query($form, $dbh, $query, conv_i($sinfo->{"delivery_order_items_stock_id"}),
436                   conv_i($form->{"delivery_order_items_id_$i"}), $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
437                   conv_i($sinfo->{bin_id}));
438         $h_item_stock_id->finish();
439         # write back the id to the form (important if only transfer was clicked (id fk for invoice)
440         $form->{"stock_${in_out}_$i"} = YAML::Dump($stock_info);
441       }
442       @values = ($form->{"delivery_order_items_id_$i"}, $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
443                  conv_i($sinfo->{bin_id}), $sinfo->{chargenumber}, conv_date($sinfo->{bestbefore}),
444                  conv_i($sinfo->{"delivery_order_items_stock_id"}));
445       do_statement($form, $h_item_stock, $q_item_stock, @values);
446       push @processed_dois, $sinfo->{"delivery_order_items_stock_id"};
447     }
448
449     CVar->save_custom_variables(module       => 'IC',
450                                 sub_module   => 'delivery_order_items',
451                                 trans_id     => $form->{"delivery_order_items_id_$i"},
452                                 configs      => $ic_cvar_configs,
453                                 variables    => $form,
454                                 name_prefix  => 'ic_',
455                                 name_postfix => "_$i",
456                                 dbh          => $dbh);
457
458     # link order items with doi, for future extension look at foreach IS.pm
459     if (!$form->{saveasnew} && $form->{"converted_from_orderitems_id_$i"}) {
460       RecordLinks->create_links('dbh'        => $dbh,
461                                 'mode'       => 'ids',
462                                 'from_table' => 'orderitems',
463                                 'from_ids'   => $form->{"converted_from_orderitems_id_$i"},
464                                 'to_table'   => 'delivery_order_items',
465                                 'to_id'      =>  $form->{"delivery_order_items_id_$i"},
466       );
467     }
468     delete $form->{"converted_from_orderitems_id_$i"};
469   }
470
471   # 1. search for orphaned dois; processed_dois may be empty (no transfer) TODO: be supersafe and alter same statement for doi and oi
472   $query  = sprintf 'SELECT id FROM delivery_order_items_stock WHERE delivery_order_item_id in
473                       (select id from delivery_order_items where delivery_order_id = ?)';
474   $query .= sprintf ' AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_dois if (scalar @processed_dois);
475   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_dois);
476   my @orphaned_dois_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
477   if (scalar @orphaned_dois_ids) {
478     # clean up delivery_order_items_stock
479     $query  = sprintf 'DELETE FROM delivery_order_items_stock WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_dois_ids;
480     do_query($form, $dbh, $query, @orphaned_dois_ids);
481   }
482   # 2. search for orphaned doi
483   $query  = sprintf 'SELECT id FROM delivery_order_items WHERE delivery_order_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_doi;
484   @values = (conv_i($form->{id}), map { conv_i($_) } @processed_doi);
485   my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
486   if (scalar @orphaned_ids) {
487     # clean up delivery_order_items
488     $query  = sprintf 'DELETE FROM delivery_order_items WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
489     do_query($form, $dbh, $query, @orphaned_ids);
490   }
491   $h_item->finish();
492   $h_item_stock->finish();
493
494
495   # reqdate is last items reqdate (?: old behaviour) if not already set
496   $form->{reqdate} ||= $items_reqdate;
497   # save DO record
498   $query =
499     qq|UPDATE delivery_orders SET
500          donumber = ?, ordnumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
501          customer_id = ?, reqdate = ?,
502          shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, closed = ?,
503          delivered = ?, department_id = ?, language_id = ?, shipto_id = ?,
504          globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?,
505          is_sales = ?, taxzone_id = ?, taxincluded = ?, payment_id = ?, currency_id = (SELECT id FROM currencies WHERE name = ?),
506          delivery_term_id = ?
507        WHERE id = ?|;
508
509   @values = ($form->{donumber}, $form->{ordnumber},
510              $form->{cusordnumber}, conv_date($form->{transdate}),
511              conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
512              conv_date($form->{reqdate}), $form->{shippingpoint}, $form->{shipvia},
513              $restricter->process($form->{notes}), $form->{intnotes},
514              $form->{closed} ? 't' : 'f', $form->{delivered} ? "t" : "f",
515              conv_i($form->{department_id}), conv_i($form->{language_id}), conv_i($form->{shipto_id}),
516              conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
517              conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
518              $form->{transaction_description},
519              $form->{type} =~ /^sales/ ? 't' : 'f',
520              conv_i($form->{taxzone_id}), $form->{taxincluded} ? 't' : 'f', conv_i($form->{payment_id}), $form->{currency},
521              conv_i($form->{delivery_term_id}),
522              conv_i($form->{id}));
523   do_query($form, $dbh, $query, @values);
524
525   $form->new_lastmtime('delivery_orders');
526
527   $form->{name} = $form->{ $form->{vc} };
528   $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
529
530   # add shipto
531   if (!$form->{shipto_id}) {
532     $form->add_shipto($dbh, $form->{id}, "DO");
533   }
534
535   # save printed, emailed, queued
536   $form->save_status($dbh);
537
538   # Link this delivery order to the quotations it was created from.
539   RecordLinks->create_links('dbh'        => $dbh,
540                             'mode'       => 'ids',
541                             'from_table' => 'oe',
542                             'from_ids'   => $form->{convert_from_oe_ids},
543                             'to_table'   => 'delivery_orders',
544                             'to_id'      => $form->{id},
545     );
546   delete $form->{convert_from_oe_ids};
547
548   $self->mark_orders_if_delivered('do_id' => $form->{id},
549                                   'type'  => $form->{type} eq 'sales_delivery_order' ? 'sales' : 'purchase',
550                                   'dbh'   => $dbh,);
551
552   $form->{saved_donumber} = $form->{donumber};
553   $form->{saved_ordnumber} = $form->{ordnumber};
554   $form->{saved_cusordnumber} = $form->{cusordnumber};
555
556   Common::webdav_folder($form);
557
558   $main::lxdebug->leave_sub();
559
560   return 1;
561 }
562
563 sub mark_orders_if_delivered {
564   $main::lxdebug->enter_sub();
565
566   my $self   = shift;
567   my %params = @_;
568
569   Common::check_params(\%params, qw(do_id type));
570
571   my $myconfig = \%main::myconfig;
572   my $form     = $main::form;
573
574   SL::DB->client->with_transaction(sub {
575     my $dbh      = $params{dbh} || SL::DB->client->dbh;
576
577     my %ship = $self->get_shipped_qty('dbh' => $dbh, 'do_id' => $form->{id}, 'delivered' => 1);
578
579     foreach my $oe_id (keys %ship) {
580         do_query($form, $dbh,"UPDATE oe SET delivered = ".($ship{$oe_id}->{delivered}?"TRUE":"FALSE")." WHERE id = ?", $oe_id);
581     }
582     1;
583   }) or do { die SL::DB->client->error };
584
585   $main::lxdebug->leave_sub();
586 }
587
588 sub close_orders {
589   $main::lxdebug->enter_sub();
590
591   my $self     = shift;
592   my %params   = @_;
593
594   Common::check_params(\%params, qw(ids));
595
596   if (('ARRAY' ne ref $params{ids}) || !scalar @{ $params{ids} }) {
597     $main::lxdebug->leave_sub();
598     return;
599   }
600
601   my $myconfig = \%main::myconfig;
602   my $form     = $main::form;
603
604   SL::DB->client->with_transaction(sub {
605     my $dbh      = $params{dbh} || SL::DB->client->dbh;
606
607     my $query    = qq|UPDATE delivery_orders SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar(@{ $params{ids} })) . qq|)|;
608
609     do_query($form, $dbh, $query, map { conv_i($_) } @{ $params{ids} });
610     1;
611   }) or die { SL::DB->client->error };
612
613   $form->new_lastmtime('delivery_orders');
614
615   $main::lxdebug->leave_sub();
616 }
617
618 sub delete {
619   $main::lxdebug->enter_sub();
620
621   my ($self)   = @_;
622
623   my $myconfig = \%main::myconfig;
624   my $form     = $main::form;
625   my $spool    = $::lx_office_conf{paths}->{spool};
626
627   my $rc = SL::DB::Order->new->db->with_transaction(sub {
628     my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $form->{id} ]) };
629
630     SL::DB::DeliveryOrder->new(id => $form->{id})->delete;
631
632     my $spool = $::lx_office_conf{paths}->{spool};
633     unlink map { "$spool/$_" } @spoolfiles if $spool;
634
635     1;
636   });
637
638   $main::lxdebug->leave_sub();
639
640   return $rc;
641 }
642
643 sub retrieve {
644   $main::lxdebug->enter_sub();
645
646   my $self     = shift;
647   my %params   = @_;
648
649   my $myconfig = \%main::myconfig;
650   my $form     = $main::form;
651
652   # connect to database
653   my $dbh = $form->get_standard_dbh($myconfig);
654
655   my ($query, $query_add, @values, $sth, $ref);
656
657   my $ic_cvar_configs = CVar->get_configs(module => 'IC',
658                                           dbh    => $dbh);
659
660   my $vc   = $params{vc} eq 'customer' ? 'customer' : 'vendor';
661
662   my $mode = !$params{ids} ? 'default' : ref $params{ids} eq 'ARRAY' ? 'multi' : 'single';
663
664   if ($mode eq 'default') {
665     $ref = selectfirst_hashref_query($form, $dbh, qq|SELECT current_date AS transdate|);
666     map { $form->{$_} = $ref->{$_} } keys %$ref;
667
668     # if reqdate is not set from oe-workflow, set it to transdate (which is current date)
669     $form->{reqdate} ||= $form->{transdate};
670
671     # get last name used
672     $form->lastname_used($dbh, $myconfig, $vc) unless $form->{"${vc}_id"};
673
674     $main::lxdebug->leave_sub();
675
676     return 1;
677   }
678
679   my @do_ids              = map { conv_i($_) } ($mode eq 'multi' ? @{ $params{ids} } : ($params{ids}));
680   my $do_ids_placeholders = join(', ', ('?') x scalar(@do_ids));
681
682   # retrieve order for single id
683   # NOTE: this query is intended to fetch all information only ONCE.
684   # so if any of these infos is important (or even different) for any item,
685   # it will be killed out and then has to be fetched from the item scope query further down
686   $query =
687     qq|SELECT dord.cp_id, dord.donumber, dord.ordnumber, dord.transdate, dord.reqdate,
688          dord.shippingpoint, dord.shipvia, dord.notes, dord.intnotes,
689          e.name AS employee, dord.employee_id, dord.salesman_id,
690          dord.${vc}_id, cv.name AS ${vc},
691          dord.closed, dord.reqdate, dord.department_id, dord.cusordnumber,
692          d.description AS department, dord.language_id,
693          dord.shipto_id,
694          dord.itime, dord.mtime,
695          dord.globalproject_id, dord.delivered, dord.transaction_description,
696          dord.taxzone_id, dord.taxincluded, dord.payment_id, (SELECT cu.name FROM currencies cu WHERE cu.id=dord.currency_id) AS currency,
697          dord.delivery_term_id, dord.itime::DATE AS insertdate
698        FROM delivery_orders dord
699        JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
700        LEFT JOIN employee e ON (dord.employee_id = e.id)
701        LEFT JOIN department d ON (dord.department_id = d.id)
702        WHERE dord.id IN ($do_ids_placeholders)|;
703   $sth = prepare_execute_query($form, $dbh, $query, @do_ids);
704
705   delete $form->{"${vc}_id"};
706   my $pos = 0;
707   $form->{ordnumber_array} = ' ';
708   $form->{cusordnumber_array} = ' ';
709   while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
710     if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
711       $sth->finish();
712       $main::lxdebug->leave_sub();
713
714       return 0;
715     }
716
717     map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
718     $form->{donumber_array} .= $form->{donumber} . ' ';
719     $pos = index($form->{ordnumber_array},' ' . $form->{ordnumber} . ' ');
720     if ($pos == -1) {
721       $form->{ordnumber_array} .= $form->{ordnumber} . ' ';
722     }
723     $pos = index($form->{cusordnumber_array},' ' . $form->{cusordnumber} . ' ');
724     if ($pos == -1) {
725       $form->{cusordnumber_array} .= $form->{cusordnumber} . ' ';
726     }
727   }
728   $sth->finish();
729   $form->{mtime}   ||= $form->{itime};
730   $form->{lastmtime} = $form->{mtime};
731   $form->{donumber_array} =~ s/\s*$//g;
732   $form->{ordnumber_array} =~ s/ //;
733   $form->{ordnumber_array} =~ s/\s*$//g;
734   $form->{cusordnumber_array} =~ s/ //;
735   $form->{cusordnumber_array} =~ s/\s*$//g;
736
737   $form->{saved_donumber} = $form->{donumber};
738   $form->{saved_ordnumber} = $form->{ordnumber};
739   $form->{saved_cusordnumber} = $form->{cusordnumber};
740
741   # if not given, fill transdate with current_date
742   $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
743
744   if ($mode eq 'single') {
745     $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
746     $sth   = prepare_execute_query($form, $dbh, $query, $form->{id});
747
748     $ref   = $sth->fetchrow_hashref("NAME_lc");
749     $form->{$_} = $ref->{$_} for grep { m{^shipto(?!_id$)} } keys %$ref;
750     $sth->finish();
751
752     if ($ref->{shipto_id}) {
753       my $cvars = CVar->get_custom_variables(
754         dbh      => $dbh,
755         module   => 'ShipTo',
756         trans_id => $ref->{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;