kivitendo/SL/DO.pm @ 87d99e72
d707f7ac | Moritz Bunkus | #====================================================================
|
||
# LX-Office ERP
|
||||
# Copyright (C) 2004
|
||||
# Based on SQL-Ledger Version 2.1.9
|
||||
# Web http://www.lx-office.org
|
||||
#
|
||||
#=====================================================================
|
||||
# SQL-Ledger Accounting
|
||||
# Copyright (C) 1999-2003
|
||||
#
|
||||
# Author: Dieter Simader
|
||||
# Email: dsimader@sql-ledger.org
|
||||
# Web: http://www.sql-ledger.org
|
||||
#
|
||||
# Contributors:
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#======================================================================
|
||||
#
|
||||
# Delivery Order entry module
|
||||
#======================================================================
|
||||
package DO;
|
||||
d520cde9 | Geoffrey Richardson | use List::Util qw(max);
|
||
d707f7ac | Moritz Bunkus | use YAML;
|
||
use SL::AM;
|
||||
use SL::Common;
|
||||
d12e02e0 | Moritz Bunkus | use SL::CVar;
|
||
d707f7ac | Moritz Bunkus | use SL::DBUtils;
|
||
5df2b57a | Moritz Bunkus | use SL::RecordLinks;
|
||
c35e1e2f | Moritz Bunkus | use SL::IC;
|
||
d707f7ac | Moritz Bunkus | |||
80f6efd0 | Sven Schöling | use strict;
|
||
d707f7ac | Moritz Bunkus | sub transactions {
|
||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
# connect to database
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
my (@where, @values, $where);
|
||||
my $vc = $form->{vc} eq "customer" ? "customer" : "vendor";
|
||||
80f6efd0 | Sven Schöling | my $query =
|
||
ce2e13e6 | Moritz Bunkus | qq|SELECT dord.id, dord.donumber, dord.ordnumber, dord.transdate,
|
||
d707f7ac | Moritz Bunkus | ct.name, dord.${vc}_id, dord.globalproject_id,
|
||
dord.closed, dord.delivered, dord.shippingpoint, dord.shipvia,
|
||||
dord.transaction_description,
|
||||
pr.projectnumber AS globalprojectnumber,
|
||||
e.name AS employee,
|
||||
330cfa6d | Moritz Bunkus | sm.name AS salesman
|
||
d707f7ac | Moritz Bunkus | FROM delivery_orders dord
|
||
LEFT JOIN $vc ct ON (dord.${vc}_id = ct.id)
|
||||
LEFT JOIN employee e ON (dord.employee_id = e.id)
|
||||
LEFT JOIN employee sm ON (dord.salesman_id = sm.id)
|
||||
330cfa6d | Moritz Bunkus | LEFT JOIN project pr ON (dord.globalproject_id = pr.id)|;
|
||
d707f7ac | Moritz Bunkus | |||
push @where, ($form->{type} eq 'sales_delivery_order' ? '' : 'NOT ') . qq|COALESCE(dord.is_sales, FALSE)|;
|
||||
my $department_id = (split /--/, $form->{department})[1];
|
||||
if ($department_id) {
|
||||
push @where, qq|dord.department_id = ?|;
|
||||
push @values, conv_i($department_id);
|
||||
}
|
||||
if ($form->{project_id}) {
|
||||
62ec5a10 | Geoffrey Richardson | push @where,
|
||
d707f7ac | Moritz Bunkus | qq|(dord.globalproject_id = ?) OR EXISTS
|
||
(SELECT * FROM delivery_order_items doi
|
||||
62ec5a10 | Geoffrey Richardson | WHERE (doi.project_id = ?) AND (doi.delivery_order_id = dord.id))|;
|
||
d707f7ac | Moritz Bunkus | push @values, conv_i($form->{project_id}), conv_i($form->{project_id});
|
||
}
|
||||
if ($form->{"${vc}_id"}) {
|
||||
push @where, qq|dord.${vc}_id = ?|;
|
||||
push @values, $form->{"${vc}_id"};
|
||||
} elsif ($form->{$vc}) {
|
||||
push @where, qq|ct.name ILIKE ?|;
|
||||
push @values, '%' . $form->{$vc} . '%';
|
||||
}
|
||||
foreach my $item (qw(employee_id salesman_id)) {
|
||||
next unless ($form->{$item});
|
||||
push @where, "dord.$item = ?";
|
||||
push @values, conv_i($form->{$item});
|
||||
}
|
||||
foreach my $item (qw(donumber ordnumber cusordnumber transaction_description)) {
|
||||
next unless ($form->{$item});
|
||||
push @where, qq|dord.$item ILIKE ?|;
|
||||
push @values, '%' . $form->{$item} . '%';
|
||||
}
|
||||
566d2e3d | Sven Schöling | if (($form->{open} || $form->{closed}) &&
|
||
($form->{open} ne $form->{closed})) {
|
||||
d707f7ac | Moritz Bunkus | push @where, ($form->{open} ? "NOT " : "") . "COALESCE(dord.closed, FALSE)";
|
||
}
|
||||
if (($form->{notdelivered} || $form->{delivered}) &&
|
||||
($form->{notdelivered} ne $form->{delivered})) {
|
||||
push @where, ($form->{delivered} ? "" : "NOT ") . "COALESCE(dord.delivered, FALSE)";
|
||||
}
|
||||
if($form->{transdatefrom}) {
|
||||
push @where, qq|dord.transdate >= ?|;
|
||||
push @values, conv_date($form->{transdatefrom});
|
||||
}
|
||||
if($form->{transdateto}) {
|
||||
push @where, qq|dord.transdate <= ?|;
|
||||
push @values, conv_date($form->{transdateto});
|
||||
}
|
||||
if (@where) {
|
||||
$query .= " WHERE " . join(" AND ", map { "($_)" } @where);
|
||||
}
|
||||
my %allowed_sort_columns = (
|
||||
"transdate" => "dord.transdate",
|
||||
"id" => "dord.id",
|
||||
"donumber" => "dord.donumber",
|
||||
"ordnumber" => "dord.ordnumber",
|
||||
"name" => "ct.name",
|
||||
"employee" => "e.name",
|
||||
"salesman" => "sm.name",
|
||||
"shipvia" => "dord.shipvia",
|
||||
"transaction_description" => "dord.transaction_description"
|
||||
);
|
||||
c654c46b | Moritz Bunkus | my $sortdir = !defined $form->{sortdir} ? 'ASC' : $form->{sortdir} ? 'ASC' : 'DESC';
|
||
23c7245a | Moritz Bunkus | my $sortorder = "dord.id";
|
||
d707f7ac | Moritz Bunkus | if ($form->{sort} && grep($form->{sort}, keys(%allowed_sort_columns))) {
|
||
$sortorder = $allowed_sort_columns{$form->{sort}};
|
||||
}
|
||||
23c7245a | Moritz Bunkus | $query .= qq| ORDER by | . $sortorder . " $sortdir";
|
||
d707f7ac | Moritz Bunkus | |||
$form->{DO} = selectall_hashref_query($form, $dbh, $query, @values);
|
||||
330cfa6d | Moritz Bunkus | if (scalar @{ $form->{DO} }) {
|
||
$query =
|
||||
qq|SELECT id
|
||||
FROM oe
|
||||
WHERE NOT COALESCE(quotation, FALSE)
|
||||
AND (ordnumber = ?)
|
||||
AND (COALESCE(${vc}_id, 0) != 0)|;
|
||||
my $sth = prepare_query($form, $dbh, $query);
|
||||
foreach my $dord (@{ $form->{DO} }) {
|
||||
480d9a56 | Moritz Bunkus | next unless ($dord->{ordnumber});
|
||
330cfa6d | Moritz Bunkus | do_statement($form, $sth, $query, $dord->{ordnumber});
|
||
($dord->{oe_id}) = $sth->fetchrow_array();
|
||||
}
|
||||
$sth->finish();
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub save {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
# connect to database, turn off autocommit
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
my ($query, @values, $sth, $null);
|
||||
my $all_units = AM->retrieve_units($myconfig, $form);
|
||||
$form->{all_units} = $all_units;
|
||||
d12e02e0 | Moritz Bunkus | my $ic_cvar_configs = CVar->get_configs(module => 'IC',
|
||
dbh => $dbh);
|
||||
d707f7ac | Moritz Bunkus | $form->{donumber} = $form->update_defaults($myconfig, $form->{type} eq 'sales_delivery_order' ? 'sdonumber' : 'pdonumber', $dbh) unless $form->{donumber};
|
||
$form->{employee_id} = (split /--/, $form->{employee})[1] if !$form->{employee_id};
|
||||
$form->get_employee($dbh) unless ($form->{employee_id});
|
||||
my $ml = ($form->{type} eq 'sales_delivery_order') ? 1 : -1;
|
||||
if ($form->{id}) {
|
||||
$query = qq|DELETE FROM delivery_order_items_stock WHERE delivery_order_item_id IN (SELECT id FROM delivery_order_items WHERE delivery_order_id = ?)|;
|
||||
do_query($form, $dbh, $query, conv_i($form->{id}));
|
||||
$query = qq|DELETE FROM delivery_order_items WHERE delivery_order_id = ?|;
|
||||
do_query($form, $dbh, $query, conv_i($form->{id}));
|
||||
$query = qq|DELETE FROM shipto WHERE trans_id = ? AND module = 'DO'|;
|
||||
do_query($form, $dbh, $query, conv_i($form->{id}));
|
||||
} else {
|
||||
$query = qq|SELECT nextval('id')|;
|
||||
($form->{id}) = selectrow_query($form, $dbh, $query);
|
||||
$query = qq|INSERT INTO delivery_orders (id, donumber, employee_id) VALUES (?, '', ?)|;
|
||||
do_query($form, $dbh, $query, $form->{id}, conv_i($form->{employee_id}));
|
||||
}
|
||||
my $project_id;
|
||||
my $reqdate;
|
||||
$form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
|
||||
my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
|
||||
my $price_factor;
|
||||
my %part_id_map = map { $_ => 1 } grep { $_ } map { $form->{"id_$_"} } (1 .. $form->{rowcount});
|
||||
my @part_ids = keys %part_id_map;
|
||||
my %part_unit_map;
|
||||
if (@part_ids) {
|
||||
$query = qq|SELECT id, unit FROM parts WHERE id IN (| . join(', ', map { '?' } @part_ids) . qq|)|;
|
||||
%part_unit_map = selectall_as_map($form, $dbh, $query, 'id', 'unit', @part_ids);
|
||||
}
|
||||
my $q_item_id = qq|SELECT nextval('delivery_order_items_id')|;
|
||||
my $h_item_id = prepare_query($form, $dbh, $q_item_id);
|
||||
my $q_item =
|
||||
qq|INSERT INTO delivery_order_items (
|
||||
id, delivery_order_id, parts_id, description, longdescription, qty, base_qty,
|
||||
sellprice, discount, unit, reqdate, project_id, serialnumber,
|
||||
ordnumber, transdate, cusordnumber,
|
||||
ce2e13e6 | Moritz Bunkus | lastcost, price_factor_id, price_factor, marge_price_factor)
|
||
d707f7ac | Moritz Bunkus | VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
|
||
ce2e13e6 | Moritz Bunkus | (SELECT factor FROM price_factors WHERE id = ?), ?)|;
|
||
d707f7ac | Moritz Bunkus | my $h_item = prepare_query($form, $dbh, $q_item);
|
||
my $q_item_stock =
|
||||
qq|INSERT INTO delivery_order_items_stock (delivery_order_item_id, qty, unit, warehouse_id, bin_id, chargenumber)
|
||||
VALUES (?, ?, ?, ?, ?, ?)|;
|
||||
my $h_item_stock = prepare_query($form, $dbh, $q_item_stock);
|
||||
my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
|
||||
for my $i (1 .. $form->{rowcount}) {
|
||||
next if (!$form->{"id_$i"});
|
||||
$form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
|
||||
my $item_unit = $part_unit_map{$form->{"id_$i"}};
|
||||
my $basefactor = 1;
|
||||
if (defined($all_units->{$item_unit}->{factor}) && (($all_units->{$item_unit}->{factor} * 1) != 0)) {
|
||||
$basefactor = $all_units->{$form->{"unit_$i"}}->{factor} / $all_units->{$item_unit}->{factor};
|
||||
}
|
||||
my $baseqty = $form->{"qty_$i"} * $basefactor;
|
||||
$form->{"lastcost_$i"} *= 1;
|
||||
# set values to 0 if nothing entered
|
||||
$form->{"discount_$i"} = $form->parse_amount($myconfig, $form->{"discount_$i"}) / 100;
|
||||
$form->{"sellprice_$i"} = $form->parse_amount($myconfig, $form->{"sellprice_$i"});
|
||||
$price_factor = $price_factors{ $form->{"price_factor_id_$i"} } || 1;
|
||||
80f6efd0 | Sven Schöling | my $linetotal = $form->round_amount($form->{"sellprice_$i"} * $form->{"qty_$i"} / $price_factor, 2);
|
||
d707f7ac | Moritz Bunkus | |||
$reqdate = ($form->{"reqdate_$i"}) ? $form->{"reqdate_$i"} : undef;
|
||||
do_statement($form, $h_item_id, $q_item_id);
|
||||
my ($item_id) = $h_item_id->fetchrow_array();
|
||||
# save detail record in delivery_order_items table
|
||||
@values = (conv_i($item_id), conv_i($form->{id}), conv_i($form->{"id_$i"}),
|
||||
$form->{"description_$i"}, $form->{"longdescription_$i"},
|
||||
$form->{"qty_$i"}, $baseqty,
|
||||
$form->{"sellprice_$i"}, $form->{"discount_$i"},
|
||||
$form->{"unit_$i"}, conv_date($reqdate), conv_i($form->{"project_id_$i"}),
|
||||
$form->{"serialnumber_$i"},
|
||||
$form->{"ordnumber_$i"}, conv_date($form->{"transdate_$i"}),
|
||||
$form->{"cusordnumber_$i"},
|
||||
$form->{"lastcost_$i"},
|
||||
conv_i($form->{"price_factor_id_$i"}), conv_i($form->{"price_factor_id_$i"}),
|
||||
ce2e13e6 | Moritz Bunkus | conv_i($form->{"marge_price_factor_$i"}));
|
||
d707f7ac | Moritz Bunkus | do_statement($form, $h_item, $q_item, @values);
|
||
my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
|
||||
foreach my $sinfo (@{ $stock_info }) {
|
||||
@values = ($item_id, $sinfo->{qty}, $sinfo->{unit}, conv_i($sinfo->{warehouse_id}),
|
||||
conv_i($sinfo->{bin_id}), $sinfo->{chargenumber});
|
||||
do_statement($form, $h_item_stock, $q_item_stock, @values);
|
||||
}
|
||||
d12e02e0 | Moritz Bunkus | |||
CVar->save_custom_variables(module => 'IC',
|
||||
sub_module => 'delivery_order_items',
|
||||
trans_id => $item_id,
|
||||
configs => $ic_cvar_configs,
|
||||
variables => $form,
|
||||
name_prefix => 'ic_',
|
||||
name_postfix => "_$i",
|
||||
dbh => $dbh);
|
||||
d707f7ac | Moritz Bunkus | }
|
||
$h_item_id->finish();
|
||||
$h_item->finish();
|
||||
$h_item_stock->finish();
|
||||
($null, $form->{department_id}) = split(/--/, $form->{department});
|
||||
# save DO record
|
||||
$query =
|
||||
qq|UPDATE delivery_orders SET
|
||||
ce2e13e6 | Moritz Bunkus | donumber = ?, ordnumber = ?, cusordnumber = ?, transdate = ?, vendor_id = ?,
|
||
d707f7ac | Moritz Bunkus | customer_id = ?, reqdate = ?,
|
||
shippingpoint = ?, shipvia = ?, notes = ?, intnotes = ?, closed = ?,
|
||||
delivered = ?, department_id = ?, language_id = ?, shipto_id = ?,
|
||||
globalproject_id = ?, employee_id = ?, salesman_id = ?, cp_id = ?, transaction_description = ?,
|
||||
a6161998 | Moritz Bunkus | is_sales = ?, taxzone_id = ?, taxincluded = ?, terms = ?, curr = ?
|
||
d707f7ac | Moritz Bunkus | WHERE id = ?|;
|
||
@values = ($form->{donumber}, $form->{ordnumber},
|
||||
ce2e13e6 | Moritz Bunkus | $form->{cusordnumber}, conv_date($form->{transdate}),
|
||
d707f7ac | Moritz Bunkus | conv_i($form->{vendor_id}), conv_i($form->{customer_id}),
|
||
conv_date($reqdate), $form->{shippingpoint}, $form->{shipvia},
|
||||
$form->{notes}, $form->{intnotes},
|
||||
$form->{closed} ? 't' : 'f', $form->{delivered} ? "t" : "f",
|
||||
conv_i($form->{department_id}), conv_i($form->{language_id}), conv_i($form->{shipto_id}),
|
||||
conv_i($form->{globalproject_id}), conv_i($form->{employee_id}),
|
||||
conv_i($form->{salesman_id}), conv_i($form->{cp_id}),
|
||||
$form->{transaction_description},
|
||||
$form->{type} =~ /^sales/ ? 't' : 'f',
|
||||
a6161998 | Moritz Bunkus | conv_i($form->{taxzone_id}), $form->{taxincluded} ? 't' : 'f', conv_i($form->{terms}), $form->{curr},
|
||
d707f7ac | Moritz Bunkus | conv_i($form->{id}));
|
||
do_query($form, $dbh, $query, @values);
|
||||
# add shipto
|
||||
$form->{name} = $form->{ $form->{vc} };
|
||||
$form->{name} =~ s/--$form->{"$form->{vc}_id"}//;
|
||||
if (!$form->{shipto_id}) {
|
||||
$form->add_shipto($dbh, $form->{id}, "DO");
|
||||
}
|
||||
# save printed, emailed, queued
|
||||
$form->save_status($dbh);
|
||||
5df2b57a | Moritz Bunkus | # Link this delivery order to the quotations it was created from.
|
||
00738f6f | Moritz Bunkus | RecordLinks->create_links('dbh' => $dbh,
|
||
94e11003 | Moritz Bunkus | 'mode' => 'ids',
|
||
00738f6f | Moritz Bunkus | 'from_table' => 'oe',
|
||
'from_ids' => $form->{convert_from_oe_ids},
|
||||
'to_table' => 'delivery_orders',
|
||||
'to_id' => $form->{id},
|
||||
);
|
||||
delete $form->{convert_from_oe_ids};
|
||||
5df2b57a | Moritz Bunkus | |||
$self->mark_orders_if_delivered('do_id' => $form->{id},
|
||||
'type' => $form->{type} eq 'sales_delivery_order' ? 'sales' : 'purchase',
|
||||
'dbh' => $dbh,);
|
||||
e73b17d6 | Moritz Bunkus | |||
d707f7ac | Moritz Bunkus | my $rc = $dbh->commit();
|
||
$form->{saved_donumber} = $form->{donumber};
|
||||
Common::webdav_folder($form) if ($main::webdav);
|
||||
$main::lxdebug->leave_sub();
|
||||
return $rc;
|
||||
}
|
||||
5df2b57a | Moritz Bunkus | sub mark_orders_if_delivered {
|
||
d707f7ac | Moritz Bunkus | $main::lxdebug->enter_sub();
|
||
e73b17d6 | Moritz Bunkus | my $self = shift;
|
||
my %params = @_;
|
||||
d707f7ac | Moritz Bunkus | |||
e73b17d6 | Moritz Bunkus | Common::check_params(\%params, qw(do_id type));
|
||
d707f7ac | Moritz Bunkus | |||
5df2b57a | Moritz Bunkus | my $myconfig = \%main::myconfig;
|
||
my $form = $main::form;
|
||||
e73b17d6 | Moritz Bunkus | |||
5df2b57a | Moritz Bunkus | my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
|
||
e73b17d6 | Moritz Bunkus | |||
5df2b57a | Moritz Bunkus | my @links = RecordLinks->get_links('dbh' => $dbh,
|
||
'from_table' => 'oe',
|
||||
'to_table' => 'delivery_orders',
|
||||
'to_id' => $params{do_id});
|
||||
e73b17d6 | Moritz Bunkus | |||
5df2b57a | Moritz Bunkus | my ($oe_id) = $links[0]->{from_id} if (scalar @links);
|
||
e73b17d6 | Moritz Bunkus | |||
return $main::lxdebug->leave_sub() if (!$oe_id);
|
||||
my $all_units = AM->retrieve_all_units();
|
||||
b90f03e4 | Moritz Bunkus | my $query = qq|SELECT oi.parts_id, oi.qty, oi.unit, p.unit AS partunit
|
||
e73b17d6 | Moritz Bunkus | FROM orderitems oi
|
||
LEFT JOIN parts p ON (oi.parts_id = p.id)
|
||||
WHERE (oi.trans_id = ?)|;
|
||||
my $sth = prepare_execute_query($form, $dbh, $query, $oe_id);
|
||||
5df2b57a | Moritz Bunkus | my %shipped = $self->get_shipped_qty('type' => $params{type},
|
||
'oe_id' => $oe_id,);
|
||||
my %ordered = ();
|
||||
e73b17d6 | Moritz Bunkus | while (my $ref = $sth->fetchrow_hashref()) {
|
||
$ref->{baseqty} = $ref->{qty} * $all_units->{$ref->{unit}}->{factor} / $all_units->{$ref->{partunit}}->{factor};
|
||||
if ($ordered{$ref->{parts_id}}) {
|
||||
$ordered{$ref->{parts_id}}->{baseqty} += $ref->{baseqty};
|
||||
} else {
|
||||
$ordered{$ref->{parts_id}} = $ref;
|
||||
}
|
||||
}
|
||||
$sth->finish();
|
||||
map { $_->{baseqty} = $_->{qty} * $all_units->{$_->{unit}}->{factor} / $all_units->{$_->{partunit}}->{factor} } values %shipped;
|
||||
my $delivered = 1;
|
||||
foreach my $part (values %ordered) {
|
||||
if (!$shipped{$part->{parts_id}} || ($shipped{$part->{parts_id}}->{baseqty} < $part->{baseqty})) {
|
||||
$delivered = 0;
|
||||
last;
|
||||
}
|
||||
}
|
||||
if ($delivered) {
|
||||
$query = qq|UPDATE oe
|
||||
5df2b57a | Moritz Bunkus | SET delivered = TRUE
|
||
e73b17d6 | Moritz Bunkus | WHERE id = ?|;
|
||
do_query($form, $dbh, $query, $oe_id);
|
||||
$dbh->commit() if (!$params{dbh});
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | |||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
3c1ceacd | Moritz Bunkus | sub close_orders {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(ids));
|
||||
if (('ARRAY' ne ref $params{ids}) || !scalar @{ $params{ids} }) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return;
|
||||
}
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
|
||||
my $query = qq|UPDATE delivery_orders SET closed = TRUE WHERE id IN (| . join(', ', ('?') x scalar(@{ $params{ids} })) . qq|)|;
|
||||
do_query($form, $dbh, $query, map { conv_i($_) } @{ $params{ids} });
|
||||
$dbh->commit() unless ($params{dbh});
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | sub delete {
|
||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $spool = $main::spool;
|
||||
# connect to database
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
# delete spool files
|
||||
my $query = qq|SELECT s.spoolfile FROM status s WHERE s.trans_id = ?|;
|
||||
my $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
|
||||
my $spoolfile;
|
||||
my @spoolfiles = ();
|
||||
80f6efd0 | Sven Schöling | my @values;
|
||
d707f7ac | Moritz Bunkus | |||
while (($spoolfile) = $sth->fetchrow_array) {
|
||||
push @spoolfiles, $spoolfile;
|
||||
}
|
||||
$sth->finish();
|
||||
# delete-values
|
||||
@values = (conv_i($form->{id}));
|
||||
# delete status entries
|
||||
$query = qq|DELETE FROM status
|
||||
WHERE trans_id = ?|;
|
||||
do_query($form, $dbh, $query, @values);
|
||||
# delete individual entries
|
||||
$query = qq|DELETE FROM delivery_order_items_stock
|
||||
WHERE delivery_order_item_id IN (
|
||||
SELECT id FROM delivery_order_items
|
||||
WHERE delivery_order_id = ?
|
||||
)|;
|
||||
do_query($form, $dbh, $query, @values);
|
||||
# delete individual entries
|
||||
$query = qq|DELETE FROM delivery_order_items
|
||||
WHERE delivery_order_id = ?|;
|
||||
do_query($form, $dbh, $query, @values);
|
||||
# delete DO record
|
||||
$query = qq|DELETE FROM delivery_orders
|
||||
WHERE id = ?|;
|
||||
do_query($form, $dbh, $query, @values);
|
||||
$query = qq|DELETE FROM shipto
|
||||
WHERE trans_id = ? AND module = 'DO'|;
|
||||
do_query($form, $dbh, $query, @values);
|
||||
my $rc = $dbh->commit();
|
||||
if ($rc) {
|
||||
foreach $spoolfile (@spoolfiles) {
|
||||
unlink "$spool/$spoolfile" if $spoolfile;
|
||||
}
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $rc;
|
||||
}
|
||||
sub retrieve {
|
||||
$main::lxdebug->enter_sub();
|
||||
454df69e | Moritz Bunkus | my $self = shift;
|
||
my %params = @_;
|
||||
d707f7ac | Moritz Bunkus | |||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
# connect to database
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
my ($query, $query_add, @values, $sth, $ref);
|
||||
d12e02e0 | Moritz Bunkus | my $ic_cvar_configs = CVar->get_configs(module => 'IC',
|
||
dbh => $dbh);
|
||||
454df69e | Moritz Bunkus | my $vc = $params{vc} eq 'customer' ? 'customer' : 'vendor';
|
||
my $mode = !$params{ids} ? 'default' : ref $params{ids} eq 'ARRAY' ? 'multi' : 'single';
|
||||
if ($mode eq 'default') {
|
||||
d707f7ac | Moritz Bunkus | $ref = selectfirst_hashref_query($form, $dbh, qq|SELECT current_date AS transdate, current_date AS reqdate|);
|
||
map { $form->{$_} = $ref->{$_} } keys %$ref;
|
||||
454df69e | Moritz Bunkus | |||
# get last name used
|
||||
$form->lastname_used($dbh, $myconfig, $vc) unless $form->{"${vc}_id"};
|
||||
$main::lxdebug->leave_sub();
|
||||
return 1;
|
||||
d707f7ac | Moritz Bunkus | }
|
||
454df69e | Moritz Bunkus | my @do_ids = map { conv_i($_) } ($mode eq 'multi' ? @{ $params{ids} } : ($params{ids}));
|
||
my $do_ids_placeholders = join(', ', ('?') x scalar(@do_ids));
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | # retrieve order for single id
|
||
# NOTE: this query is intended to fetch all information only ONCE.
|
||||
# so if any of these infos is important (or even different) for any item,
|
||||
# it will be killed out and then has to be fetched from the item scope query further down
|
||||
$query =
|
||||
qq|SELECT dord.cp_id, dord.donumber, dord.ordnumber, dord.transdate, dord.reqdate,
|
||||
dord.shippingpoint, dord.shipvia, dord.notes, dord.intnotes,
|
||||
e.name AS employee, dord.employee_id, dord.salesman_id,
|
||||
dord.${vc}_id, cv.name AS ${vc},
|
||||
dord.closed, dord.reqdate, dord.department_id, dord.cusordnumber,
|
||||
d.description AS department, dord.language_id,
|
||||
dord.shipto_id,
|
||||
a6161998 | Moritz Bunkus | dord.globalproject_id, dord.delivered, dord.transaction_description,
|
||
6b014453 | Moritz Bunkus | dord.taxzone_id, dord.taxincluded, dord.terms, dord.curr
|
||
454df69e | Moritz Bunkus | FROM delivery_orders dord
|
||
JOIN ${vc} cv ON (dord.${vc}_id = cv.id)
|
||||
LEFT JOIN employee e ON (dord.employee_id = e.id)
|
||||
LEFT JOIN department d ON (dord.department_id = d.id)
|
||||
WHERE dord.id IN ($do_ids_placeholders)|;
|
||||
$sth = prepare_execute_query($form, $dbh, $query, @do_ids);
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | delete $form->{"${vc}_id"};
|
||
80f6efd0 | Sven Schöling | while (my $ref = $sth->fetchrow_hashref("NAME_lc")) {
|
||
454df69e | Moritz Bunkus | if ($form->{"${vc}_id"} && ($ref->{"${vc}_id"} != $form->{"${vc}_id"})) {
|
||
$sth->finish();
|
||||
$main::lxdebug->leave_sub();
|
||||
return 0;
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | |||
map { $form->{$_} = $ref->{$_} } keys %$ref if ($ref);
|
||||
015f7118 | Geoffrey Richardson | $form->{donumber_array} .= $form->{donumber} . ' ';
|
||
454df69e | Moritz Bunkus | }
|
||
$sth->finish();
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | $form->{saved_donumber} = $form->{donumber};
|
||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | # if not given, fill transdate with current_date
|
||
$form->{transdate} = $form->current_date($myconfig) unless $form->{transdate};
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | if ($mode eq 'single') {
|
||
d707f7ac | Moritz Bunkus | $query = qq|SELECT s.* FROM shipto s WHERE s.trans_id = ? AND s.module = 'DO'|;
|
||
454df69e | Moritz Bunkus | $sth = prepare_execute_query($form, $dbh, $query, $form->{id});
|
||
d707f7ac | Moritz Bunkus | |||
80f6efd0 | Sven Schöling | $ref = $sth->fetchrow_hashref("NAME_lc");
|
||
454df69e | Moritz Bunkus | delete $ref->{id};
|
||
d707f7ac | Moritz Bunkus | map { $form->{$_} = $ref->{$_} } keys %$ref;
|
||
454df69e | Moritz Bunkus | $sth->finish();
|
||
d707f7ac | Moritz Bunkus | |||
# get printed, emailed and queued
|
||||
$query = qq|SELECT s.printed, s.emailed, s.spoolfile, s.formname FROM status s WHERE s.trans_id = ?|;
|
||||
454df69e | Moritz Bunkus | $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id}));
|
||
d707f7ac | Moritz Bunkus | |||
80f6efd0 | Sven Schöling | while ($ref = $sth->fetchrow_hashref("NAME_lc")) {
|
||
d707f7ac | Moritz Bunkus | $form->{printed} .= "$ref->{formname} " if $ref->{printed};
|
||
$form->{emailed} .= "$ref->{formname} " if $ref->{emailed};
|
||||
$form->{queued} .= "$ref->{formname} $ref->{spoolfile} " if $ref->{spoolfile};
|
||||
}
|
||||
454df69e | Moritz Bunkus | $sth->finish();
|
||
d707f7ac | Moritz Bunkus | map { $form->{$_} =~ s/ +$//g } qw(printed emailed queued);
|
||
454df69e | Moritz Bunkus | } else {
|
||
delete $form->{id};
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | my %oid = ('Pg' => 'oid',
|
||
'Oracle' => 'rowid');
|
||||
d707f7ac | Moritz Bunkus | |||
454df69e | Moritz Bunkus | # retrieve individual items
|
||
# this query looks up all information about the items
|
||||
# stuff different from the whole will not be overwritten, but saved with a suffix.
|
||||
$query =
|
||||
qq|SELECT doi.id AS delivery_order_items_id,
|
||||
p.partnumber, p.assembly, doi.description, doi.qty,
|
||||
doi.sellprice, doi.parts_id AS id, doi.unit, doi.discount, p.bin, p.notes AS partnotes,
|
||||
doi.reqdate, doi.project_id, doi.serialnumber, doi.lastcost,
|
||||
doi.ordnumber, doi.transdate, doi.cusordnumber, doi.longdescription,
|
||||
doi.price_factor_id, doi.price_factor, doi.marge_price_factor,
|
||||
d370f2a1 | Sven Schöling | pr.projectnumber, dord.transdate AS dord_transdate,
|
||
454df69e | Moritz Bunkus | pg.partsgroup
|
||
FROM delivery_order_items doi
|
||||
JOIN parts p ON (doi.parts_id = p.id)
|
||||
JOIN delivery_orders dord ON (doi.delivery_order_id = dord.id)
|
||||
LEFT JOIN project pr ON (doi.project_id = pr.id)
|
||||
LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
|
||||
WHERE doi.delivery_order_id IN ($do_ids_placeholders)
|
||||
ORDER BY doi.$oid{$myconfig->{dbdriver}}|;
|
||||
$form->{form_details} = selectall_hashref_query($form, $dbh, $query, @do_ids);
|
||||
d12e02e0 | Moritz Bunkus | # Retrieve custom variables.
|
||
foreach my $doi (@{ $form->{form_details} }) {
|
||||
my $cvars = CVar->get_custom_variables(dbh => $dbh,
|
||||
module => 'IC',
|
||||
sub_module => 'delivery_order_items',
|
||||
trans_id => $doi->{delivery_order_items_id},
|
||||
);
|
||||
map { $doi->{"ic_cvar_$_->{name}"} = $_->{value} } @{ $cvars };
|
||||
}
|
||||
454df69e | Moritz Bunkus | if ($mode eq 'single') {
|
||
d707f7ac | Moritz Bunkus | my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
|
||
$query =
|
||||
qq|SELECT qty, unit, bin_id, warehouse_id, chargenumber
|
||||
454df69e | Moritz Bunkus | FROM delivery_order_items_stock
|
||
WHERE delivery_order_item_id = ?|;
|
||||
d707f7ac | Moritz Bunkus | my $sth = prepare_query($form, $dbh, $query);
|
||
foreach my $doi (@{ $form->{form_details} }) {
|
||||
do_statement($form, $sth, $query, conv_i($doi->{delivery_order_items_id}));
|
||||
my $requests = [];
|
||||
while (my $ref = $sth->fetchrow_hashref()) {
|
||||
push @{ $requests }, $ref;
|
||||
}
|
||||
$doi->{"stock_${in_out}"} = YAML::Dump($requests);
|
||||
}
|
||||
$sth->finish();
|
||||
}
|
||||
Common::webdav_folder($form) if ($main::webdav);
|
||||
$main::lxdebug->leave_sub();
|
||||
454df69e | Moritz Bunkus | |||
return 1;
|
||||
d707f7ac | Moritz Bunkus | }
|
||
sub order_details {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self) = @_;
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
# connect to database
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
my $query;
|
||||
my @values = ();
|
||||
my $sth;
|
||||
my $item;
|
||||
my $i;
|
||||
my @partsgroup = ();
|
||||
my $partsgroup;
|
||||
my $position = 0;
|
||||
my %oid = ('Pg' => 'oid',
|
||||
'Oracle' => 'rowid');
|
||||
my (@project_ids, %projectnumbers);
|
||||
push(@project_ids, $form->{"globalproject_id"}) if ($form->{"globalproject_id"});
|
||||
# sort items by partsgroup
|
||||
for $i (1 .. $form->{rowcount}) {
|
||||
$partsgroup = "";
|
||||
if ($form->{"partsgroup_$i"} && $form->{groupitems}) {
|
||||
$partsgroup = $form->{"partsgroup_$i"};
|
||||
}
|
||||
push @partsgroup, [$i, $partsgroup];
|
||||
push(@project_ids, $form->{"project_id_$i"}) if ($form->{"project_id_$i"});
|
||||
}
|
||||
if (@project_ids) {
|
||||
$query = "SELECT id, projectnumber FROM project WHERE id IN (" .
|
||||
join(", ", map("?", @project_ids)) . ")";
|
||||
$sth = prepare_execute_query($form, $dbh, $query, @project_ids);
|
||||
while (my $ref = $sth->fetchrow_hashref()) {
|
||||
$projectnumbers{$ref->{id}} = $ref->{projectnumber};
|
||||
}
|
||||
$sth->finish();
|
||||
}
|
||||
$form->{"globalprojectnumber"} =
|
||||
$projectnumbers{$form->{"globalproject_id"}};
|
||||
my $q_pg = qq|SELECT p.partnumber, p.description, p.unit, a.qty, pg.partsgroup
|
||||
FROM assembly a
|
||||
JOIN parts p ON (a.parts_id = p.id)
|
||||
LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id)
|
||||
WHERE a.bom = '1'
|
||||
80f6efd0 | Sven Schöling | AND a.id = ?|;
|
||
d707f7ac | Moritz Bunkus | my $h_pg = prepare_query($form, $dbh, $q_pg);
|
||
my $q_bin_wh = qq|SELECT (SELECT description FROM bin WHERE id = ?) AS bin,
|
||||
(SELECT description FROM warehouse WHERE id = ?) AS warehouse|;
|
||||
my $h_bin_wh = prepare_query($form, $dbh, $q_bin_wh);
|
||||
my $in_out = $form->{type} =~ /^sales/ ? 'out' : 'in';
|
||||
my $num_si = 0;
|
||||
d12e02e0 | Moritz Bunkus | my $ic_cvar_configs = CVar->get_configs(module => 'IC');
|
||
c35e1e2f | Moritz Bunkus | $form->{TEMPLATE_ARRAYS} = { };
|
||
IC->prepare_parts_for_printing();
|
||||
d707f7ac | Moritz Bunkus | my @arrays =
|
||
qw(runningnumber number description longdescription qty unit
|
||||
partnotes serialnumber reqdate projectnumber
|
||||
si_runningnumber si_number si_description
|
||||
ce2e13e6 | Moritz Bunkus | si_warehouse si_bin si_chargenumber si_qty si_unit);
|
||
d707f7ac | Moritz Bunkus | |||
80f6efd0 | Sven Schöling | map { $form->{TEMPLATE_ARRAYS}->{$_} = [] } (@arrays);
|
||
c35e1e2f | Moritz Bunkus | |||
d12e02e0 | Moritz Bunkus | push @arrays, map { "ic_cvar_$_->{name}" } @{ $ic_cvar_configs };
|
||
80f6efd0 | Sven Schöling | $form->get_lists('price_factors' => 'ALL_PRICE_FACTORS');
|
||
my %price_factors = map { $_->{id} => $_->{factor} } @{ $form->{ALL_PRICE_FACTORS} };
|
||||
d707f7ac | Moritz Bunkus | my $sameitem = "";
|
||
foreach $item (sort { $a->[1] cmp $b->[1] } @partsgroup) {
|
||||
$i = $item->[0];
|
||||
next if (!$form->{"id_$i"});
|
||||
$position++;
|
||||
if ($item->[1] ne $sameitem) {
|
||||
push(@{ $form->{description} }, qq|$item->[1]|);
|
||||
$sameitem = $item->[1];
|
||||
map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
|
||||
}
|
||||
$form->{"qty_$i"} = $form->parse_amount($myconfig, $form->{"qty_$i"});
|
||||
# add number, description and qty to $form->{number}, ....
|
||||
my $price_factor = $price_factors{$form->{"price_factor_id_$i"}} || { 'factor' => 1 };
|
||||
02475b7f | Sven Schöling | push @{ $form->{TEMPLATE_ARRAYS}{runningnumber} }, $position;
|
||
push @{ $form->{TEMPLATE_ARRAYS}{number} }, $form->{"partnumber_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{description} }, $form->{"description_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{longdescription} }, $form->{"longdescription_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{qty} }, $form->format_amount($myconfig, $form->{"qty_$i"});
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{unit} }, $form->{"unit_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{partnotes} }, $form->{"partnotes_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{serialnumber} }, $form->{"serialnumber_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{reqdate} }, $form->{"reqdate_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{projectnumber} }, $projectnumbers{$form->{"project_id_$i"}};
|
||||
d707f7ac | Moritz Bunkus | |||
if ($form->{"assembly_$i"}) {
|
||||
$sameitem = "";
|
||||
# get parts and push them onto the stack
|
||||
my $sortorder = "";
|
||||
if ($form->{groupitems}) {
|
||||
$sortorder =
|
||||
qq|ORDER BY pg.partsgroup, a.$oid{$myconfig->{dbdriver}}|;
|
||||
} else {
|
||||
$sortorder = qq|ORDER BY a.$oid{$myconfig->{dbdriver}}|;
|
||||
}
|
||||
do_statement($form, $h_pg, $q_pg, conv_i($form->{"id_$i"}));
|
||||
80f6efd0 | Sven Schöling | while (my $ref = $h_pg->fetchrow_hashref("NAME_lc")) {
|
||
d707f7ac | Moritz Bunkus | if ($form->{groupitems} && $ref->{partsgroup} ne $sameitem) {
|
||
map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
|
||||
$sameitem = ($ref->{partsgroup}) ? $ref->{partsgroup} : "--";
|
||||
push(@{ $form->{description} }, $sameitem);
|
||||
}
|
||||
push(@{ $form->{description} }, $form->format_amount($myconfig, $ref->{qty} * $form->{"qty_$i"}) . qq|, $ref->{partnumber}, $ref->{description}|);
|
||||
map({ push(@{ $form->{$_} }, "") } grep({ $_ ne "description" } @arrays));
|
||||
}
|
||||
}
|
||||
if ($form->{"inventory_accno_$i"} && !$form->{"assembly_$i"}) {
|
||||
my $stock_info = DO->unpack_stock_information('packed' => $form->{"stock_${in_out}_$i"});
|
||||
foreach my $si (@{ $stock_info }) {
|
||||
$num_si++;
|
||||
do_statement($form, $h_bin_wh, $q_bin_wh, conv_i($si->{bin_id}), conv_i($si->{warehouse_id}));
|
||||
my $bin_wh = $h_bin_wh->fetchrow_hashref();
|
||||
02475b7f | Sven Schöling | push @{ $form->{TEMPLATE_ARRAYS}{si_runningnumber}[$position-1] }, $num_si;
|
||
push @{ $form->{TEMPLATE_ARRAYS}{si_number}[$position-1] }, $form->{"partnumber_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_description}[$position-1] }, $form->{"description_$i"};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_warehouse}[$position-1] }, $bin_wh->{warehouse};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_bin}[$position-1] }, $bin_wh->{bin};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_chargenumber}[$position-1] }, $si->{chargenumber};
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_qty}[$position-1] }, $form->format_amount($myconfig, $si->{qty} * 1);
|
||||
push @{ $form->{TEMPLATE_ARRAYS}{si_unit}[$position-1] }, $si->{unit};
|
||||
d707f7ac | Moritz Bunkus | }
|
||
}
|
||||
d12e02e0 | Moritz Bunkus | |||
map { push @{ $form->{TEMPLATE_ARRAYS}->{"ic_cvar_$_->{name}"} }, $form->{"ic_cvar_$_->{name}_$i"} } @{ $ic_cvar_configs };
|
||||
d707f7ac | Moritz Bunkus | }
|
||
$h_pg->finish();
|
||||
$h_bin_wh->finish();
|
||||
$form->{username} = $myconfig->{name};
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
sub project_description {
|
||||
$main::lxdebug->enter_sub();
|
||||
my ($self, $dbh, $id) = @_;
|
||||
80f6efd0 | Sven Schöling | my $form = $main::form;
|
||
d707f7ac | Moritz Bunkus | my $query = qq|SELECT description FROM project WHERE id = ?|;
|
||
my ($value) = selectrow_query($form, $dbh, $query, $id);
|
||||
$main::lxdebug->leave_sub();
|
||||
return $value;
|
||||
}
|
||||
sub unpack_stock_information {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params_x(\%params, qw(packed));
|
||||
my $unpacked;
|
||||
eval { $unpacked = $params{packed} ? YAML::Load($params{packed}) : []; };
|
||||
$unpacked = [] if (!$unpacked || ('ARRAY' ne ref $unpacked));
|
||||
foreach my $entry (@{ $unpacked }) {
|
||||
next if ('HASH' eq ref $entry);
|
||||
$unpacked = [];
|
||||
last;
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return $unpacked;
|
||||
}
|
||||
sub get_item_availability {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(parts_id));
|
||||
my @parts_ids = 'ARRAY' eq ref $params{parts_id} ? @{ $params{parts_id} } : ($params{parts_id});
|
||||
my $form = $main::form;
|
||||
80f6efd0 | Sven Schöling | my $myconfig = \%main::myconfig;
|
||
d707f7ac | Moritz Bunkus | |||
my $query =
|
||||
qq|SELECT i.warehouse_id, i.bin_id, i.chargenumber, SUM(qty) AS qty, i.parts_id,
|
||||
w.description AS warehousedescription,
|
||||
b.description AS bindescription
|
||||
FROM inventory i
|
||||
LEFT JOIN warehouse w ON (i.warehouse_id = w.id)
|
||||
LEFT JOIN bin b ON (i.bin_id = b.id)
|
||||
4e07e589 | Moritz Bunkus | WHERE (i.parts_id IN (| . join(', ', ('?') x scalar(@parts_ids)) . qq|))
|
||
GROUP BY i.warehouse_id, i.bin_id, i.chargenumber, i.parts_id, w.description, b.description
|
||||
HAVING SUM(qty) > 0
|
||||
ORDER BY LOWER(w.description), LOWER(b.description), LOWER(i.chargenumber)
|
||||
|;
|
||||
d707f7ac | Moritz Bunkus | my $contents = selectall_hashref_query($form, $form->get_standard_dbh($myconfig), $query, @parts_ids);
|
||
$main::lxdebug->leave_sub();
|
||||
return @{ $contents };
|
||||
}
|
||||
sub check_stock_availability {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(requests parts_id));
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $dbh = $form->get_standard_dbh($myconfig);
|
||||
07948c34 | Moritz Bunkus | my $units = AM->retrieve_units($myconfig, $form);
|
||
d707f7ac | Moritz Bunkus | |||
my ($partunit) = selectrow_query($form, $dbh, qq|SELECT unit FROM parts WHERE id = ?|, conv_i($params{parts_id}));
|
||||
my $unit_factor = $units->{$partunit}->{factor} || 1;
|
||||
my @contents = $self->get_item_availability(%params);
|
||||
my @errors;
|
||||
foreach my $sinfo (@{ $params{requests} }) {
|
||||
my $found = 0;
|
||||
foreach my $row (@contents) {
|
||||
next if (($row->{bin_id} != $sinfo->{bin_id}) ||
|
||||
($row->{warehouse_id} != $sinfo->{warehouse_id}) ||
|
||||
($row->{chargenumber} ne $sinfo->{chargenumber}));
|
||||
$found = 1;
|
||||
my $base_qty = $sinfo->{qty} * $units->{$sinfo->{unit}}->{factor} / $unit_factor;
|
||||
if ($base_qty > $row->{qty}) {
|
||||
$sinfo->{error} = 1;
|
||||
push @errors, $sinfo;
|
||||
last;
|
||||
}
|
||||
}
|
||||
push @errors, $sinfo if (!$found);
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return @errors;
|
||||
}
|
||||
sub transfer_in_out {
|
||||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(direction requests));
|
||||
if (!@{ $params{requests} }) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return;
|
||||
}
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $prefix = $params{direction} eq 'in' ? 'dst' : 'src';
|
||||
my @transfers;
|
||||
foreach my $request (@{ $params{requests} }) {
|
||||
push @transfers, {
|
||||
'parts_id' => $request->{parts_id},
|
||||
"${prefix}_warehouse_id" => $request->{warehouse_id},
|
||||
"${prefix}_bin_id" => $request->{bin_id},
|
||||
'chargenumber' => $request->{chargenumber},
|
||||
'qty' => $request->{qty},
|
||||
'unit' => $request->{unit},
|
||||
'oe_id' => $form->{id},
|
||||
'shippingdate' => 'current_date',
|
||||
'transfer_type' => $params{direction} eq 'in' ? 'stock' : 'shipped',
|
||||
};
|
||||
}
|
||||
WH->transfer(@transfers);
|
||||
$main::lxdebug->leave_sub();
|
||||
}
|
||||
480d9a56 | Moritz Bunkus | sub get_shipped_qty {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
5df2b57a | Moritz Bunkus | Common::check_params(\%params, qw(type oe_id));
|
||
480d9a56 | Moritz Bunkus | |||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
|
||||
5df2b57a | Moritz Bunkus | my @links = RecordLinks->get_links('dbh' => $dbh,
|
||
'from_table' => 'oe',
|
||||
'from_id' => $params{oe_id},
|
||||
'to_table' => 'delivery_orders');
|
||||
my @values = map { $_->{to_id} } @links;
|
||||
if (!scalar @values) {
|
||||
$main::lxdebug->leave_sub();
|
||||
return ();
|
||||
}
|
||||
480d9a56 | Moritz Bunkus | |||
5df2b57a | Moritz Bunkus | my $query =
|
||
480d9a56 | Moritz Bunkus | qq|SELECT doi.parts_id, doi.qty, doi.unit, p.unit AS partunit
|
||
FROM delivery_order_items doi
|
||||
LEFT JOIN delivery_orders o ON (doi.delivery_order_id = o.id)
|
||||
LEFT JOIN parts p ON (doi.parts_id = p.id)
|
||||
5df2b57a | Moritz Bunkus | WHERE o.id IN (| . join(', ', ('?') x scalar @values) . qq|)|;
|
||
480d9a56 | Moritz Bunkus | |||
my %ship = ();
|
||||
5df2b57a | Moritz Bunkus | my $entries = selectall_hashref_query($form, $dbh, $query, @values);
|
||
480d9a56 | Moritz Bunkus | my $all_units = AM->retrieve_all_units();
|
||
foreach my $entry (@{ $entries }) {
|
||||
$entry->{qty} *= $all_units->{$entry->{unit}}->{factor} / $all_units->{$entry->{partunit}}->{factor};
|
||||
if (!$ship{$entry->{parts_id}}) {
|
||||
$ship{$entry->{parts_id}} = $entry;
|
||||
} else {
|
||||
$ship{$entry->{parts_id}}->{qty} += $entry->{qty};
|
||||
}
|
||||
}
|
||||
$main::lxdebug->leave_sub();
|
||||
return %ship;
|
||||
}
|
||||
4a9b86a5 | Moritz Bunkus | sub is_marked_as_delivered {
|
||
$main::lxdebug->enter_sub();
|
||||
my $self = shift;
|
||||
my %params = @_;
|
||||
Common::check_params(\%params, qw(id));
|
||||
my $myconfig = \%main::myconfig;
|
||||
my $form = $main::form;
|
||||
my $dbh = $params{dbh} || $form->get_standard_dbh($myconfig);
|
||||
my ($delivered) = selectfirst_array_query($form, $dbh, qq|SELECT delivered FROM delivery_orders WHERE id = ?|, conv_i($params{id}));
|
||||
$main::lxdebug->leave_sub();
|
||||
return $delivered ? 1 : 0;
|
||||
}
|
||||
d707f7ac | Moritz Bunkus | 1;
|