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