1 #====================================================================
4 # Based on SQL-Ledger Version 2.1.9
5 # Web http://www.lx-office.org
7 #=====================================================================
8 # SQL-Ledger Accounting
9 # Copyright (C) 1999-2003
11 # Author: Dieter Simader
12 # Email: dsimader@sql-ledger.org
13 # Web: http://www.sql-ledger.org
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.
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 #======================================================================
31 # Delivery Order entry module
32 #======================================================================
36 use List::Util qw(max);
42 use SL::DB::DeliveryOrder;
45 use SL::HTML::Restrict;
53 $main::lxdebug->enter_sub();
57 my $myconfig = \%main::myconfig;
58 my $form = $main::form;
61 my $dbh = $form->get_standard_dbh($myconfig);
63 my (@where, @values, $where);
65 my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
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,
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)
87 push @where, ($form->{type} eq 'sales_delivery_order' ? '' : 'NOT ') . qq|COALESCE(dord.is_sales, FALSE)|;
89 if ($form->{department_id}) {
90 push @where, qq|dord.department_id = ?|;
91 push @values, conv_i($form->{department_id});
94 if ($form->{project_id}) {
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});
102 if ($form->{"business_id"}) {
103 push @where, qq|ct.business_id = ?|;
104 push @values, conv_i($form->{"business_id"});
107 if ($form->{"${vc}_id"}) {
108 push @where, qq|dord.${vc}_id = ?|;
109 push @values, $form->{"${vc}_id"};
111 } elsif ($form->{$vc}) {
112 push @where, qq|ct.name ILIKE ?|;
113 push @values, '%' . $form->{$vc} . '%';
116 if ($form->{"cp_name"}) {
117 push @where, "(cp.cp_name ILIKE ? OR cp.cp_givenname ILIKE ?)";
118 push @values, ('%' . $form->{"cp_name"} . '%')x2;
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});
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};
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} . '%';
137 if (($form->{open} || $form->{closed}) &&
138 ($form->{open} ne $form->{closed})) {
139 push @where, ($form->{open} ? "NOT " : "") . "COALESCE(dord.closed, FALSE)";
142 if (($form->{notdelivered} || $form->{delivered}) &&
143 ($form->{notdelivered} ne $form->{delivered})) {
144 push @where, ($form->{delivered} ? "" : "NOT ") . "COALESCE(dord.delivered, FALSE)";
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} . '%';
152 if($form->{transdatefrom}) {
153 push @where, qq|dord.transdate >= ?|;
154 push @values, conv_date($form->{transdatefrom});
157 if($form->{transdateto}) {
158 push @where, qq|dord.transdate <= ?|;
159 push @values, conv_date($form->{transdateto});
162 if($form->{reqdatefrom}) {
163 push @where, qq|dord.reqdate >= ?|;
164 push @values, conv_date($form->{reqdatefrom});
167 if($form->{reqdateto}) {
168 push @where, qq|dord.reqdate <= ?|;
169 push @values, conv_date($form->{reqdateto});
172 if($form->{insertdatefrom}) {
173 push @where, qq|dord.itime::DATE >= ?|;
174 push@values, conv_date($form->{insertdatefrom});
177 if($form->{insertdateto}) {
178 push @where, qq|dord.itime::DATE <= ?|;
179 push @values, conv_date($form->{insertdateto});
183 $query .= " WHERE " . join(" AND ", map { "($_)" } @where);
186 my %allowed_sort_columns = (
187 "transdate" => "dord.transdate",
188 "reqdate" => "dord.reqdate",
190 "donumber" => "dord.donumber",
191 "ordnumber" => "dord.ordnumber",
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",
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}};
207 $query .= qq| ORDER by | . $sortorder . " $sortdir";
209 $form->{DO} = selectall_hashref_query($form, $dbh, $query, @values);
211 if (scalar @{ $form->{DO} }) {
215 WHERE NOT COALESCE(quotation, FALSE)
217 AND (COALESCE(${vc}_id, 0) != 0)|;
219 my $sth = prepare_query($form, $dbh, $query);
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();
230 $main::lxdebug->leave_sub();
234 $main::lxdebug->enter_sub();
238 my $myconfig = \%main::myconfig;
239 my $form = $main::form;
241 # connect to database, turn off autocommit
242 my $dbh = $form->get_standard_dbh($myconfig);
243 my $restricter = SL::HTML::Restrict->create;
245 my ($query, @values, $sth, $null);
247 my $all_units = AM->retrieve_units($myconfig, $form);
248 $form->{all_units} = $all_units;
250 my $ic_cvar_configs = CVar->get_configs(module => 'IC',
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});
258 my $ml = ($form->{type} eq 'sales_delivery_order') ? 1 : -1;
260 my (@processed_doi, @processed_dois);
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}));
270 $query = qq|SELECT nextval('id')|;
271 ($form->{id}) = selectrow_query($form, $dbh, $query);
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});
280 $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
281 my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
284 my %part_id_map = map { $_ => 1 } grep { $_ } map { $form->{"id_$_"} } (1 .. $form->{rowcount});
285 my @part_ids = keys %part_id_map;
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);
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 lastcost = ? , price_factor_id = ?, price_factor = (SELECT factor FROM price_factors where id = ?),
297 marge_price_factor = ?, pricegroup_id = ?, active_price_source = ?, active_discount_source = ?
300 my $h_item = prepare_query($form, $dbh, $q_item);
302 my $q_item_stock = <<SQL;
303 UPDATE delivery_order_items_stock SET
304 delivery_order_item_id = ?, qty = ?, unit = ?, warehouse_id = ?,
305 bin_id = ?, chargenumber = ?, bestbefore = ?
308 my $h_item_stock = prepare_query($form, $dbh, $q_item_stock);
310 my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
312 for my $i (1 .. $form->{rowcount}) {
313 next if (!$form->{"id_$i"});
315 CVar->get_non_editable_ic_cvars(form => $form,
318 sub_module => 'delivery_order_items',
319 may_converted_from => ['orderitems', 'delivery_order_items']);
323 if (!$form->{"delivery_order_items_id_$i"}) {
324 # there is no persistent id, therefore create one with all necessary constraints
325 my $q_item_id = qq|SELECT nextval('delivery_order_items_id')|;
326 my $h_item_id = prepare_query($form, $dbh, $q_item_id);
327 do_statement($form, $h_item_id, $q_item_id);
328 $form->{"delivery_order_items_id_$i"} = $h_item_id->fetchrow_array();
329 $query = qq|INSERT INTO delivery_order_items (id, delivery_order_id, position, parts_id) VALUES (?, ?, ?, ?)|;
330 do_query($form, $dbh, $query, conv_i($form->{"delivery_order_items_id_$i"}),
331 conv_i($form->{"id"}), conv_i($position), conv_i($form->{"id_$i"}));
332 $h_item_id->finish();
335 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
337 my $item_unit = $part_unit_map{$form->{"id_$i"}};
340 if (defined($all_units->{$item_unit}->{factor}) && (($all_units->{$item_unit}->{factor} * 1) != 0)) {
341 $basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
343 my $baseqty = $form->{"qty_$i"} * $basefactor;
345 # set values to 0 if nothing entered
346 $form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"});
347 $form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
348 $form->{"lastcost_$i"} = $form->parse_amount($myconfig, $form->{"lastcost_$i"});
350 $price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
351 my $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
353 $items_reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
356 # Get pricegroup_id and save it. Unfortunately the interface
357 # also uses ID "0" for signalling that none is selected, but "0"
358 # must not be stored in the database. Therefore we cannot simply
360 my $pricegroup_id = $form->{"pricegroup_id_$i"} * 1;
361 $pricegroup_id = undef if !$pricegroup_id;
363 # save detail record in delivery_order_items table
364 @values = (conv_i($form->{id}), conv_i($position), conv_i($form->{"id_$i"}),
365 $form->{"description_$i"}, $restricter->process($form->{"longdescription_$i"}),
366 $form->{"qty_$i"}, $baseqty,
367 $form->{"sellprice_$i"}, $form->{"discount_$i"} / 100,
368 $form->{"unit_$i"}, conv_date($items_reqdate), conv_i($form->{"project_id_$i"}),
369 $form->{"serialnumber_$i"},
370 $form->{"lastcost_$i"},
371 conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
372 conv_i($form->{"marge_price_factor_$i"}),
374 $form->{"active_price_source_$i"}, $form->{"active_discount_source_$i"},
375 conv_i($form->{"delivery_order_items_id_$i"}));
376 do_statement($form, $h_item, $q_item, @values);
377 push @processed_doi, $form->{"delivery_order_items_id_$i"}; # transaction safe?
379 my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
381 foreach my $sinfo (@{ $stock_info }) {
382 # if we have stock_info, we have to check for persistents entries
383 if (!$sinfo->{"delivery_order_items_stock_id"}) {
384 my $q_item_stock_id = qq|SELECT nextval('id')|;
385 my $h_item_stock_id = prepare_query($form, $dbh, $q_item_stock_id);
386 do_statement($form, $h_item_stock_id, $q_item_stock_id);
387 $sinfo->{"delivery_order_items_stock_id"} = $h_item_stock_id->fetchrow_array();
388 $query = qq|INSERT INTO delivery_order_items_stock (id, delivery_order_item_id, qty, unit, warehouse_id, bin_id)
389 VALUES (?, ?, ?, ?, ?, ?)|;
390 do_query($form, $dbh, $query, conv_i($sinfo->{"delivery_order_items_stock_id"}),
391 conv_i($form->{"delivery_order_items_id_$i"}), $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
392 conv_i($sinfo->{bin_id}));
393 $h_item_stock_id->finish();
394 # write back the id to the form (important if only transfer was clicked (id fk for invoice)
395 $form->{"stock_${in_out}_$i"} = YAML::Dump($stock_info);
397 @values = ($form->{"delivery_order_items_id_$i"}, $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
398 conv_i($sinfo->{bin_id}), $sinfo->{chargenumber}, conv_date($sinfo->{bestbefore}),
399 conv_i($sinfo->{"delivery_order_items_stock_id"}));
400 do_statement($form, $h_item_stock, $q_item_stock, @values);
401 push @processed_dois, $sinfo->{"delivery_order_items_stock_id"};
404 CVar->save_custom_variables(module => 'IC',
405 sub_module => 'delivery_order_items',
406 trans_id => $form->{"delivery_order_items_id_$i"},
407 configs => $ic_cvar_configs,
409 name_prefix => 'ic_',
410 name_postfix => "_$i",
413 # link order items with doi, for future extension look at foreach IS.pm
414 if (!$form->{saveasnew} && $form->{"converted_from_orderitems_id_$i"}) {
415 RecordLinks->create_links('dbh' => $dbh,
417 'from_table' => 'orderitems',
418 'from_ids' => $form->{"converted_from_orderitems_id_$i"},
419 'to_table' => 'delivery_order_items',
420 'to_id' => $form->{"delivery_order_items_id_$i"},
423 delete $form->{"converted_from_orderitems_id_$i"};
426 # 1. search for orphaned dois; processed_dois may be empty (no transfer) TODO: be supersafe and alter same statement for doi and oi
427 $query = sprintf 'SELECT id FROM delivery_order_items_stock WHERE delivery_order_item_id in
428 (select id from delivery_order_items where delivery_order_id = ?)';
429 $query .= sprintf ' AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_dois if (scalar @processed_dois);
430 @values = (conv_i($form->{id}), map { conv_i($_) } @processed_dois);
431 my @orphaned_dois_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
432 if (scalar @orphaned_dois_ids) {
433 # clean up delivery_order_items_stock
434 $query = sprintf 'DELETE FROM delivery_order_items_stock WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_dois_ids;
435 do_query($form, $dbh, $query, @orphaned_dois_ids);
437 # 2. search for orphaned doi
438 $query = sprintf 'SELECT id FROM delivery_order_items WHERE delivery_order_id = ? AND NOT id IN (%s)', join ', ', ("?") x scalar @processed_doi;
439 @values = (conv_i($form->{id}), map { conv_i($_) } @processed_doi);
440 my @orphaned_ids = map { $_->{id} } selectall_hashref_query($form, $dbh, $query, @values);
441 if (scalar @orphaned_ids) {
442 # clean up delivery_order_items
443 $query = sprintf 'DELETE FROM delivery_order_items WHERE id IN (%s)', join ', ', ("?") x scalar @orphaned_ids;
444 do_query($form, $dbh, $query, @orphaned_ids);
447 $h_item_stock->finish();
450 # reqdate is last items reqdate (?: old behaviour) if not already set
451 $form->{reqdate} ||= $items_reqdate;
454 qq|UPDATE delivery_orders SET
455 donumber = ?, ordnumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
456 customer_id = ?, reqdate = ?,
457 shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, closed = ?,
458 delivered = ?, department_id = ?, language_id = ?, shipto_id = ?,
459 globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?,
460 is_sales = ?, taxzone_id = ?, taxincluded = ?, payment_id = ?, currency_id = (SELECT id FROM currencies WHERE name = ?),
464 @values = ($form->{donumber}, $form->{ordnumber},
465 $form->{cusordnumber}, conv_date($form->{transdate}),
466 conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
467 conv_date($form->{reqdate}), $form->{shippingpoint}, $form->{shipvia},
468 $restricter->process($form->{notes}), $form->{intnotes},
469 $form->{closed} ? 't' : 'f', $form->{delivered} ? "t" : "f",
470 conv_i($form->{department_id}), conv_i($form->{language_id}), conv_i($form->{shipto_id}),
471 conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
472 conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
473 $form->{transaction_description},
474 $form->{type} =~ /^sales/ ? 't' : 'f',
475 conv_i($form->{taxzone_id}), $form->{taxincluded} ? 't' : 'f', conv_i($form->{payment_id}), $form->{currency},
476 conv_i($form->{delivery_term_id}),
477 conv_i($form->{id}));
478 do_query($form, $dbh, $query, @values);
480 $form->{name} = $form->{ $form->{vc} };
481 $form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
484 if (!$form->{shipto_id}) {
485 $form->add_shipto($dbh, $form->{id}, "DO");
488 # save printed, emailed, queued
489 $form->save_status($dbh);
491 # Link this delivery order to the quotations it was created from.
492 RecordLinks->create_links('dbh' => $dbh,
494 'from_table' => 'oe',
495 'from_ids' => $form->{convert_from_oe_ids},
496 'to_table' => 'delivery_orders',
497 'to_id' => $form->{id},
499 delete $form->{convert_from_oe_ids};
501 $self->mark_orders_if_delivered('do_id' => $form->{id},
502 'type' => $form->{type} eq 'sales_delivery_order' ? 'sales' : 'purchase',
505 my $rc = $dbh->commit();
507 $form->{saved_donumber} = $form->{donumber};
508 $form->{saved_ordnumber} = $form->{ordnumber};
509 $form->{saved_cusordnumber} = $form->{cusordnumber};
511 Common::webdav_folder($form);
513 $main::lxdebug->leave_sub();
518 sub mark_orders_if_delivered {
519 $main::lxdebug->enter_sub();
524 Common::check_params(\%params, qw(do_id type));
526 my $myconfig = \%main::myconfig;
527 my $form = $main::form;
529 my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
531 my @links = RecordLinks->get_links('dbh' => $dbh,
532 'from_table' => 'oe',
533 'to_table' => 'delivery_orders',
534 'to_id' => $params{do_id});
536 my $oe_id = @links ? $links[0]->{from_id} : undef;
538 return $main::lxdebug->leave_sub() if (!$oe_id);
540 my $all_units = AM->retrieve_all_units();
542 my $query = qq|SELECT oi.parts_id, oi.qty, oi.unit, p.unit AS partunit
544 LEFT JOIN parts p ON (oi.parts_id = p.id)
545 WHERE (oi.trans_id = ?)|;
546 my $sth = prepare_execute_query($form, $dbh, $query, $oe_id);
548 my %shipped = $self->get_shipped_qty('type' => $params{type},
552 while (my $ref = $sth->fetchrow_hashref()) {
553 $ref->{baseqty} = $ref->{qty} * $all_units->{$ref->{unit}}->{factor} / $all_units->{$ref->{partunit}}->{factor};
555 if ($ordered{$ref->{parts_id}}) {
556 $ordered{$ref->{parts_id}}->{baseqty} += $ref->{baseqty};
558 $ordered{$ref->{parts_id}} = $ref;
564 map { $_->{baseqty} = $_->{qty} * $all_units->{$_->{unit}}->{factor} / $all_units->{$_->{partunit}}->{factor} } values %shipped;
567 foreach my $part (values %ordered) {
568 if (!$shipped{$part->{parts_id}} || ($shipped{$part->{parts_id}}->{baseqty} < $part->{baseqty})) {
575 $query = qq|UPDATE oe
578 do_query($form, $dbh, $query, $oe_id);
579 $dbh->commit() if (!$params{dbh});
582 $main::lxdebug->leave_sub();
586 $main::lxdebug->enter_sub();
591 Common::check_params(\%params, qw(ids));
593 if (('ARRAY' ne ref $params{ids}) || !scalar @{ $params{ids} }) {
594 $main::lxdebug->leave_sub();
598 my $myconfig = \%main::myconfig;
599 my $form = $main::form;
601 my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
603 my $query = qq|UPDATE delivery_orders SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar(@{ $params{ids} })) . qq|)|;
605 do_query($form, $dbh, $query, map { conv_i($_) } @{ $params{ids} });
607 $dbh->commit() unless ($params{dbh});
609 $main::lxdebug->leave_sub();
613 $main::lxdebug->enter_sub();
617 my $myconfig = \%main::myconfig;
618 my $form = $main::form;
619 my $spool = $::lx_office_conf{paths}->{spool};
621 my $rc = SL::DB::Order->new->db->with_transaction(sub {
622 my @spoolfiles = grep { $_ } map { $_->spoolfile } @{ SL::DB::Manager::Status->get_all(where => [ trans_id => $form->{id} ]) };
624 SL::DB::DeliveryOrder->new(id => $form->{id})->delete;
626 my $spool = $::lx_office_conf{paths}->{spool};
627 unlink map { "$spool/$_" } @spoolfiles if $spool;
632 $main::lxdebug->leave_sub();
638 $main::lxdebug->enter_sub();
643 my $myconfig = \%main::myconfig;
644 my $form = $main::form;
646 # connect to database
647 my $dbh = $form->get_standard_dbh($myconfig);
649 my ($query, $query_add, @values, $sth, $ref);
651 my $ic_cvar_configs = CVar->get_configs(module => 'IC',
654 my $vc = $params{vc} eq 'customer' ? 'customer' : 'vendor';
656 my $mode = !$params{ids} ? 'default' : ref $params{ids} eq 'ARRAY' ? 'multi' : 'single';
658 if ($mode eq 'default') {
659 $ref = selectfirst_hashref_query($form, $dbh, qq|SELECT current_date AS transdate|);
660 map { $form->{$_} = $ref->{$_} } keys %$ref;
662 # if reqdate is not set from oe-workflow, set it to transdate (which is current date)
663 $form->{reqdate} ||= $form->{transdate};
666 $form->lastname_used($dbh, $myconfig, $vc) unless $form->{"${vc}_id"};
668 $main::lxdebug->leave_sub();
673 my @do_ids = map { conv_i($_) } ($mode eq 'multi' ? @{ $params{ids} } : ($params{ids}));
674 my $do_ids_placeholders = join(', ', ('?') x scalar(@do_ids));
676 # retrieve order for single id
677 # NOTE: this query is intended to fetch all information only ONCE.
678 # so if any of these infos is important (or even different) for any item,
679 # it will be killed out and then has to be fetched from the item scope query further down
681 qq|SELECT dord.cp_id, dord.donumber, dord.ordnumber, dord.transdate, dord.reqdate,
682 dord.shippingpoint, dord.shipvia, dord.notes, dord.intnotes,
683 e.name AS employee, dord.employee_id, dord.salesman_id,
684 dord.${vc}_id, cv.name AS ${vc},
685 dord.closed, dord.reqdate, dord.department_id, dord.cusordnumber,
686 d.description AS department, dord.language_id,
688 dord.globalproject_id, dord.delivered, dord.transaction_description,
689 dord.taxzone_id, dord.taxincluded, dord.payment_id, (SELECT cu.name FROM currencies cu WHERE cu.id=dord.currency_id) AS currency,
690 dord.delivery_term_id, dord.itime::DATE AS insertdate
691 FROM delivery_orders dord
692 JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
693 LEFT JOIN employee e ON (dord.employee_id = e.id)
694 LEFT JOIN department d ON (dord.department_id = d.id)
695 WHERE dord.id IN ($do_ids_placeholders)|;
696 $sth = prepare_execute_query($form, $dbh, $query, @do_ids);
698 delete $form->{"${vc}_id"};
700 $form->{ordnumber_array} = ' ';
701 $form->{cusordnumber_array} = ' ';
702 while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
703 if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
705 $main::lxdebug->leave_sub();
710 map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
711 $form->{donumber_array} .= $form->{donumber} . ' ';
712 $pos = index($form->{ordnumber_array},' ' . $form->{ordnumber} . ' ');
714 $form->{ordnumber_array} .= $form->{ordnumber} . ' ';
716 $pos = index($form->{cusordnumber_array},' ' . $form->{cusordnumber} . ' ');
718 $form->{cusordnumber_array} .= $form->{cusordnumber} . ' ';
723 $form->{donumber_array} =~ s/\s*$//g;
724 $form->{ordnumber_array} =~ s/ //;
725 $form->{ordnumber_array} =~ s/\s*$//g;
726 $form->{cusordnumber_array} =~ s/ //;
727 $form->{cusordnumber_array} =~ s/\s*$//g;
729 $form->{saved_donumber} = $form->{donumber};
730 $form->{saved_ordnumber} = $form->{ordnumber};
731 $form->{saved_cusordnumber} = $form->{cusordnumber};
733 # if not given, fill transdate with current_date
734 $form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
736 if ($mode eq 'single') {
737 $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
738 $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
740 $ref = $sth->fetchrow_hashref("NAME_lc");
742 map { $form->{$_} = $ref->{$_} } keys %$ref;
745 # get printed, emailed and queued
746 $query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
747 $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
749 while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
750 $form->{printed} .= "$ref->{formname} " if $ref->{printed};
751 $form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
752 $form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
755 map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
761 # retrieve individual items
762 # this query looks up all information about the items
763 # stuff different from the whole will not be overwritten, but saved with a suffix.
765 qq|SELECT doi.id AS delivery_order_items_id,
766 p.partnumber, p.assembly, p.listprice, doi.description, doi.qty,
767 doi.sellprice, doi.parts_id AS id, doi.unit, doi.discount, p.notes AS partnotes,
768 doi.reqdate, doi.project_id, doi.serialnumber, doi.lastcost,
769 doi.ordnumber, doi.transdate, doi.cusordnumber, doi.longdescription,
770 doi.price_factor_id, doi.price_factor, doi.marge_price_factor, doi.pricegroup_id,
771 doi.active_price_source, doi.active_discount_source,
772 pr.projectnumber, dord.transdate AS dord_transdate, dord.donumber,
774 FROM delivery_order_items doi
775 JOIN parts p ON (doi.parts_id = p.id)
776 JOIN delivery_orders dord ON (doi.delivery_order_id = dord.id)
777 LEFT JOIN project pr ON (doi.project_id = pr.id)
778 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
779 WHERE doi.delivery_order_id IN ($do_ids_placeholders)
780 ORDER BY doi.delivery_order_id, doi.position|;
782 $form->{form_details} = selectall_hashref_query($form, $dbh, $query, @do_ids);
784 # Retrieve custom variables.
785 foreach my $doi (@{ $form->{form_details} }) {
786 my $cvars = CVar->get_custom_variables(dbh => $dbh,
788 sub_module => 'delivery_order_items',
789 trans_id => $doi->{delivery_order_items_id},
791 map { $doi->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
794 if ($mode eq 'single') {
795 my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
798 qq|SELECT id as delivery_order_items_stock_id, qty, unit, bin_id,
799 warehouse_id, chargenumber, bestbefore
800 FROM delivery_order_items_stock
801 WHERE delivery_order_item_id = ?|;
802 my $sth = prepare_query($form, $dbh, $query);
804 foreach my $doi (@{ $form->{form_details} }) {
805 do_statement($form, $sth, $query, conv_i($doi->{delivery_order_items_id}));
807 while (my $ref = $sth->fetchrow_hashref()) {
808 push @{ $requests }, $ref;
811 $doi->{"stock_${in_out}"} = YAML::Dump($requests);
817 Common::webdav_folder($form);
819 $main::lxdebug->leave_sub();
825 $main::lxdebug->enter_sub();
827 my ($self, $myconfig, $form) = @_;
829 # connect to database
830 my $dbh = $form->get_standard_dbh($myconfig);
839 my $subtotal_header = 0;
845 push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
847 # sort items by partsgroup
848 for $i (1 .. $form->{rowcount}) {
850 if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
851 $partsgroup = $form->{"partsgroup_$i"};
853 push @partsgroup, [$i, $partsgroup];
854 push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
860 $projects = SL::DB::Manager::Project->get_all(query => [ id => \@project_ids ]);
861 %projects_by_id = map { $_->id => $_ } @$projects;
864 if ($projects_by_id{$form->{"globalproject_id"}}) {
865 $form->{globalprojectnumber} = $projects_by_id{$form->{"globalproject_id"}}->projectnumber;
866 $form->{globalprojectdescription} = $projects_by_id{$form->{"globalproject_id"}}->description;
868 for (@{ $projects_by_id{$form->{"globalproject_id"}}->cvars_by_config }) {
869 $form->{"project_cvar_" . $_->config->name} = $_->value_as_text;
873 my $q_pg = qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
875 JOIN parts p ON (a.parts_id = p.id)
876 LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
879 my $h_pg = prepare_query($form, $dbh, $q_pg);
881 my $q_bin_wh = qq|SELECT (SELECT description FROM bin WHERE id = ?) AS bin,
882 (SELECT description FROM warehouse WHERE id = ?) AS warehouse|;
883 my $h_bin_wh = prepare_query($form, $dbh, $q_bin_wh);
885 my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
889 my $ic_cvar_configs = CVar->get_configs(module => 'IC');
890 my $project_cvar_configs = CVar->get_configs(module => 'Projects');
892 # get some values of parts from db on store them in extra array,
893 # so that they can be sorted in later
894 my %prepared_template_arrays = IC->prepare_parts_for_printing(myconfig => $myconfig, form => $form);
895 my @prepared_arrays = keys %prepared_template_arrays;
897 $form->{TEMPLATE_ARRAYS} = { };
900 qw(runningnumber number description longdescription qty qty_nofmt unit
901 partnotes serialnumber reqdate projectnumber projectdescription
902 weight weight_nofmt lineweight lineweight_nofmt
903 si_runningnumber si_number si_description
904 si_warehouse si_bin si_chargenumber si_bestbefore
905 si_qty si_qty_nofmt si_unit);
907 map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays, @prepared_arrays);
909 push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
910 push @arrays, map { "project_cvar_$_->{name}" } @{ $project_cvar_configs };
912 $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
913 my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
917 foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
920 next if (!$form->{"id_$i"});
922 if ($item->[1] ne $sameitem) {
923 push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type} }, 'partsgroup');
924 push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, qq|$item->[1]|);
925 $sameitem = $item->[1];
927 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
928 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
932 $form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
934 # add number, description and qty to $form->{number}, ....
935 if ($form->{"subtotal_$i"} && !$subtotal_header) {
936 $subtotal_header = $i;
937 $position = int($position);
940 } elsif ($subtotal_header) {
942 $position = int($position);
943 $position = $position.".".$subposition;
945 $position = int($position);
951 my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
952 my $project = $projects_by_id{$form->{"project_id_$i"}} || SL::DB::Project->new;
954 push(@{ $form->{TEMPLATE_ARRAYS}{$_} }, $prepared_template_arrays{$_}[$i - 1]) for @prepared_arrays;
956 push @{ $form->{TEMPLATE_ARRAYS}{entry_type} }, 'normal';
957 push @{ $form->{TEMPLATE_ARRAYS}{runningnumber} }, $position;
958 push @{ $form->{TEMPLATE_ARRAYS}{number} }, $form->{"partnumber_$i"};
959 push @{ $form->{TEMPLATE_ARRAYS}{description} }, $form->{"description_$i"};
960 push @{ $form->{TEMPLATE_ARRAYS}{longdescription} }, $form->{"longdescription_$i"};
961 push @{ $form->{TEMPLATE_ARRAYS}{qty} }, $form->format_amount($myconfig, $form->{"qty_$i"});
962 push @{ $form->{TEMPLATE_ARRAYS}{qty_nofmt} }, $form->{"qty_$i"};
963 push @{ $form->{TEMPLATE_ARRAYS}{unit} }, $form->{"unit_$i"};
964 push @{ $form->{TEMPLATE_ARRAYS}{partnotes} }, $form->{"partnotes_$i"};
965 push @{ $form->{TEMPLATE_ARRAYS}{serialnumber} }, $form->{"serialnumber_$i"};
966 push @{ $form->{TEMPLATE_ARRAYS}{reqdate} }, $form->{"reqdate_$i"};
967 push @{ $form->{TEMPLATE_ARRAYS}{projectnumber} }, $project->projectnumber;
968 push @{ $form->{TEMPLATE_ARRAYS}{projectdescription} }, $project->description;
970 if ($form->{"subtotal_$i"} && $subtotal_header && ($subtotal_header != $i)) {
971 $subtotal_header = 0;
974 my $lineweight = $form->{"qty_$i"} * $form->{"weight_$i"};
975 $totalweight += $lineweight;
976 push @{ $form->{TEMPLATE_ARRAYS}->{weight} }, $form->format_amount($myconfig, $form->{"weight_$i"}, 3);
977 push @{ $form->{TEMPLATE_ARRAYS}->{weight_nofmt} }, $form->{"weight_$i"};
978 push @{ $form->{TEMPLATE_ARRAYS}->{lineweight} }, $form->format_amount($myconfig, $lineweight, 3);
979 push @{ $form->{TEMPLATE_ARRAYS}->{lineweight_nofmt} }, $lineweight;
981 my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
983 foreach my $si (@{ $stock_info }) {
986 do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id}));
987 my $bin_wh = $h_bin_wh->fetchrow_hashref();
989 push @{ $form->{TEMPLATE_ARRAYS}{si_runningnumber}[$si_position-1] }, $num_si;
990 push @{ $form->{TEMPLATE_ARRAYS}{si_number}[$si_position-1] }, $form->{"partnumber_$i"};
991 push @{ $form->{TEMPLATE_ARRAYS}{si_description}[$si_position-1] }, $form->{"description_$i"};
992 push @{ $form->{TEMPLATE_ARRAYS}{si_warehouse}[$si_position-1] }, $bin_wh->{warehouse};
993 push @{ $form->{TEMPLATE_ARRAYS}{si_bin}[$si_position-1] }, $bin_wh->{bin};
994 push @{ $form->{TEMPLATE_ARRAYS}{si_chargenumber}[$si_position-1] }, $si->{chargenumber};
995 push @{ $form->{TEMPLATE_ARRAYS}{si_bestbefore}[$si_position-1] }, $si->{bestbefore};
996 push @{ $form->{TEMPLATE_ARRAYS}{si_qty}[$si_position-1] }, $form->format_amount($myconfig, $si->{qty} * 1);
997 push @{ $form->{TEMPLATE_ARRAYS}{si_qty_nofmt}[$si_position-1] }, $si->{qty} * 1;
998 push @{ $form->{TEMPLATE_ARRAYS}{si_unit}[$si_position-1] }, $si->{unit};
1001 if ($form->{"assembly_$i"}) {
1004 # get parts and push them onto the stack
1006 if ($form->{groupitems}) {
1008 qq|ORDER BY pg.partsgroup, a.oid|;
1010 $sortorder = qq|ORDER BY a.oid|;
1013 do_statement($form, $h_pg, $q_pg, conv_i($form->{"id_$i"}));
1015 while (my $ref = $h_pg->fetchrow_hashref("NAME_lc")) {
1016 if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
1017 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
1018 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
1019 $sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
1020 push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type} }, 'assembly-item-partsgroup');
1021 push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $sameitem);
1025 push(@{ $form->{TEMPLATE_ARRAYS}->{entry_type} }, 'assembly-item');
1026 push(@{ $form->{TEMPLATE_ARRAYS}->{description} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq| -- $ref->{partnumber}, $ref->{description}|);
1027 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, "") } grep({ $_ ne "description" && $_ !~ /^si_/} (@arrays, @prepared_arrays)));
1028 map({ push(@{ $form->{TEMPLATE_ARRAYS}->{$_} }, []) } grep({ $_ =~ /^si_/} @arrays));
1033 CVar->get_non_editable_ic_cvars(form => $form,
1036 sub_module => 'delivery_order_items',
1037 may_converted_from => ['orderitems', 'delivery_order_items']);
1039 push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} },
1040 CVar->format_to_template(CVar->parse($form->{"ic_cvar_$_->{name}_$i"}, $_), $_)
1041 for @{ $ic_cvar_configs };
1043 push @{ $form->{TEMPLATE_ARRAYS}->{"project_cvar_" . $_->config->name} }, $_->value_as_text for @{ $project->cvars_by_config };
1046 $form->{totalweight} = $form->format_amount($myconfig, $totalweight, 3);
1047 $form->{totalweight_nofmt} = $totalweight;
1048 my $defaults = AM->get_defaults();
1049 $form->{weightunit} = $defaults->{weightunit};
1052 $h_bin_wh->finish();
1054 $form->{delivery_term} = SL::DB::Manager::DeliveryTerm->find_by(id => $form->{delivery_term_id} || undef);
1055 $form->{delivery_term}->description_long($form->{delivery_term}->translated_attribute('description_long', $form->{language_id})) if $form->{delivery_term} && $form->{language_id};
1057 $form->{username} = $myconfig->{name};
1059 $main::lxdebug->leave_sub();
1062 sub project_description {
1063 $main::lxdebug->enter_sub();
1065 my ($self, $dbh, $id) = @_;
1067 my $form = $main::form;
1069 my $query = qq|SELECT description FROM project WHERE id = ?|;
1070 my ($value) = selectrow_query($form, $dbh, $query, $id);
1072 $main::lxdebug->leave_sub();
1077 sub unpack_stock_information {
1078 $main::lxdebug->enter_sub();
1083 Common::check_params_x(\%params, qw(packed));
1087 eval { $unpacked = $params{packed} ? YAML::Load($params{packed}) : []; };
1089 $unpacked = [] if (!$unpacked || ('ARRAY' ne ref $unpacked));
1091 foreach my $entry (@{ $unpacked }) {
1092 next if ('HASH' eq ref $entry);
1097 $main::lxdebug->leave_sub();
1102 sub get_item_availability {
1103 $::lxdebug->enter_sub;
1108 Common::check_params(\%params, qw(parts_id));
1110 my @parts_ids = 'ARRAY' eq ref $params{parts_id} ? @{ $params{parts_id} } : ($params{parts_id});
1113 qq|SELECT i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, SUM(qty) AS qty, i.parts_id,
1114 w.description AS warehousedescription,
1115 b.description AS bindescription
1117 LEFT JOIN warehouse w ON (i.warehouse_id = w.id)
1118 LEFT JOIN bin b ON (i.bin_id = b.id)
1119 WHERE (i.parts_id IN (| . join(', ', ('?') x scalar(@parts_ids)) . qq|))
1120 GROUP BY i.warehouse_id, i.bin_id, i.chargenumber, i.bestbefore, i.parts_id, w.description, b.description
1122 ORDER BY LOWER(w.description), LOWER(b.description), LOWER(i.chargenumber), i.bestbefore
1124 my $contents = selectall_hashref_query($::form, $::form->get_standard_dbh, $query, @parts_ids);
1126 $::lxdebug->leave_sub;
1128 return @{ $contents };
1132 sub check_stock_availability {
1133 $main::lxdebug->enter_sub();
1138 Common::check_params(\%params, qw(requests parts_id));
1140 my $myconfig = \%main::myconfig;
1141 my $form = $main::form;
1143 my $dbh = $form->get_standard_dbh($myconfig);
1145 my $units = AM->retrieve_units($myconfig, $form);
1147 my ($partunit) = selectrow_query($form, $dbh, qq|SELECT unit FROM parts WHERE id = ?|, conv_i($params{parts_id}));
1148 my $unit_factor = $units->{$partunit}->{factor} || 1;
1150 my @contents = $self->get_item_availability(%params);
1154 foreach my $sinfo (@{ $params{requests} }) {
1157 foreach my $row (@contents) {
1158 next if (($row->{bin_id} != $sinfo->{bin_id}) ||
1159 ($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
1160 ($row->{chargenumber} ne $sinfo->{chargenumber}) ||
1161 ($row->{bestbefore} ne $sinfo->{bestbefore}));
1165 my $base_qty = $sinfo->{qty} * $units->{$sinfo->{unit}}->{factor} / $unit_factor;
1167 if ($base_qty > $row->{qty}) {
1168 $sinfo->{error} = 1;
1169 push @errors, $sinfo;
1175 push @errors, $sinfo if (!$found);
1178 $main::lxdebug->leave_sub();
1183 sub transfer_in_out {
1184 $main::lxdebug->enter_sub();
1189 Common::check_params(\%params, qw(direction requests));
1191 if (!@{ $params{requests} }) {
1192 $main::lxdebug->leave_sub();
1196 my $myconfig = \%main::myconfig;
1197 my $form = $main::form;
1199 my $prefix = $params{direction} eq 'in' ? 'dst' : 'src';
1203 foreach my $request (@{ $params{requests} }) {
1205 'parts_id' => $request->{parts_id},
1206 "${prefix}_warehouse_id" => $request->{warehouse_id},
1207 "${prefix}_bin_id" => $request->{bin_id},
1208 'chargenumber' => $request->{chargenumber},
1209 'bestbefore' => $request->{bestbefore},
1210 'qty' => $request->{qty},
1211 'unit' => $request->{unit},
1212 'oe_id' => $form->{id},
1213 'shippingdate' => 'current_date',
1214 'transfer_type' => $params{direction} eq 'in' ? 'stock' : 'shipped',
1215 'project_id' => $request->{project_id},
1216 'delivery_order_items_stock_id' => $request->{delivery_order_items_stock_id},
1217 'comment' => $request->{comment},
1221 WH->transfer(@transfers);
1223 $main::lxdebug->leave_sub();
1226 sub get_shipped_qty {
1227 $main::lxdebug->enter_sub();
1232 Common::check_params(\%params, qw(type oe_id));
1234 my $myconfig = \%main::myconfig;
1235 my $form = $main::form;
1237 my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
1239 my @links = RecordLinks->get_links('dbh' => $dbh,
1240 'from_table' => 'oe',
1241 'from_id' => $params{oe_id},
1242 'to_table' => 'delivery_orders');
1243 my @values = map { $_->{to_id} } @links;
1245 if (!scalar @values) {
1246 $main::lxdebug->leave_sub();
1251 qq|SELECT doi.parts_id, doi.qty, doi.unit, p.unit AS partunit
1252 FROM delivery_order_items doi
1253 LEFT JOIN delivery_orders o ON (doi.delivery_order_id = o.id)
1254 LEFT JOIN parts p ON (doi.parts_id = p.id)
1255 WHERE o.id IN (| . join(', ', ('?') x scalar @values) . qq|)|;
1258 my $entries = selectall_hashref_query($form, $dbh, $query, @values);
1259 my $all_units = AM->retrieve_all_units();
1261 foreach my $entry (@{ $entries }) {
1262 $entry->{qty} *= AM->convert_unit($entry->{unit}, $entry->{partunit}, $all_units);
1264 if (!$ship{$entry->{parts_id}}) {
1265 $ship{$entry->{parts_id}} = $entry;
1267 $ship{$entry->{parts_id}}->{qty} += $entry->{qty};
1271 $main::lxdebug->leave_sub();
1276 sub is_marked_as_delivered {
1277 $main::lxdebug->enter_sub();
1282 Common::check_params(\%params, qw(id));
1284 my $myconfig = \%main::myconfig;
1285 my $form = $main::form;
1287 my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
1289 my ($delivered) = selectfirst_array_query($form, $dbh, qq|SELECT delivered FROM delivery_orders WHERE id = ?|, conv_i($params{id}));
1291 $main::lxdebug->leave_sub();
1293 return $delivered ? 1 : 0;