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