Projekt

Allgemein

Profil

Herunterladen (16,4 KB) Statistiken
| Zweig: | Markierung: | Revision:
54e4131e Moritz Bunkus
#====================================================================
# LX-Office ERP
# Copyright (C) 2004
# Based on SQL-Ledger Version 2.1.9
# Web http://www.lx-office.org
#
#====================================================================

package Common;

05c6840d Moritz Bunkus
use utf8;
use strict;

b61db412 Moritz Bunkus
use Time::HiRes qw(gettimeofday);
ff296f5f Sven Schöling
use Data::Dumper;
faef45c2 Moritz Bunkus
fb4d2ffa Moritz Bunkus
use SL::DBUtils;

76c486e3 Sven Schöling
use vars qw(@db_encodings %db_encoding_to_charset %charset_to_db_encoding);

faef45c2 Moritz Bunkus
@db_encodings = (
{ "label" => "ASCII", "dbencoding" => "SQL_ASCII", "charset" => "ASCII" },
{ "label" => "UTF-8 Unicode", "dbencoding" => "UNICODE", "charset" => "UTF-8" },
{ "label" => "ISO 8859-1", "dbencoding" => "LATIN1", "charset" => "ISO-8859-1" },
{ "label" => "ISO 8859-2", "dbencoding" => "LATIN2", "charset" => "ISO-8859-2" },
{ "label" => "ISO 8859-3", "dbencoding" => "LATIN3", "charset" => "ISO-8859-3" },
{ "label" => "ISO 8859-4", "dbencoding" => "LATIN4", "charset" => "ISO-8859-4" },
{ "label" => "ISO 8859-5", "dbencoding" => "LATIN5", "charset" => "ISO-8859-5" },
{ "label" => "ISO 8859-15", "dbencoding" => "LATIN9", "charset" => "ISO-8859-15" },
{ "label" => "KOI8-R", "dbencoding" => "KOI8", "charset" => "KOI8-R" },
{ "label" => "Windows CP1251", "dbencoding" => "WIN", "charset" => "CP1251" },
{ "label" => "Windows CP866", "dbencoding" => "ALT", "charset" => "CP866" },
);

%db_encoding_to_charset = map { $_->{dbencoding}, $_->{charset} } @db_encodings;
8c7e4493 Moritz Bunkus
%charset_to_db_encoding = map { $_->{charset}, $_->{dbencoding} } @db_encodings;
faef45c2 Moritz Bunkus
use constant DEFAULT_CHARSET => 'ISO-8859-15';
b61db412 Moritz Bunkus
sub unique_id {
my ($a, $b) = gettimeofday();
return "${a}-${b}-${$}";
}

sub tmpname {
return "/tmp/lx-office-tmp-" . unique_id();
}

54e4131e Moritz Bunkus
sub retrieve_parts {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
8c7e4493 Moritz Bunkus
16c66f61 Geoffrey Richardson
foreach (qw(partnumber description ean)) {
8c7e4493 Moritz Bunkus
next unless $form->{$_};

$filter .= qq| AND ($_ ILIKE ?)|;
push @filter_values, '%' . $form->{$_} . '%';
}

if ($form->{no_assemblies}) {
71b51e70 Geoffrey Richardson
$filter .= qq| AND (NOT COALESCE(assembly, FALSE))|;
54e4131e Moritz Bunkus
}
e807eba3 Geoffrey Richardson
if ($form->{assemblies}) {
16c66f61 Geoffrey Richardson
$filter .= qq| AND assembly=TRUE|;
e807eba3 Geoffrey Richardson
}
8c7e4493 Moritz Bunkus
if ($form->{no_services}) {
d3e3d258 Sven Schöling
$filter .= qq| AND (inventory_accno_id is not NULL or assembly=TRUE)|; # @mb hier nochmal optimieren ... nach kurzer ruecksprache alles i.o.
54e4131e Moritz Bunkus
}
8c7e4493 Moritz Bunkus
54e4131e Moritz Bunkus
substr($filter, 1, 3) = "WHERE" if ($filter);

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

c0f83f3e Moritz Bunkus
my $query =
16c66f61 Geoffrey Richardson
qq|SELECT id, partnumber, description, ean | .
c0f83f3e Moritz Bunkus
qq|FROM parts $filter | .
qq|ORDER BY $order_by $order_dir|;
54e4131e Moritz Bunkus
my $sth = $dbh->prepare($query);
$sth->execute(@filter_values) || $form->dberror($query . " (" . join(", ", @filter_values) . ")");
my $parts = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$parts}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $parts;
}

sub retrieve_projects {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
if ($form->{"projectnumber"}) {
c0f83f3e Moritz Bunkus
$filter .= qq| AND (projectnumber ILIKE ?)|;
54e4131e Moritz Bunkus
push(@filter_values, '%' . $form->{"projectnumber"} . '%');
}
if ($form->{"description"}) {
c0f83f3e Moritz Bunkus
$filter .= qq| AND (description ILIKE ?)|;
54e4131e Moritz Bunkus
push(@filter_values, '%' . $form->{"description"} . '%');
}
substr($filter, 1, 3) = "WHERE" if ($filter);

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

c0f83f3e Moritz Bunkus
my $query =
qq|SELECT id, projectnumber, description | .
qq|FROM project $filter | .
qq|ORDER BY $order_by $order_dir|;
54e4131e Moritz Bunkus
my $sth = $dbh->prepare($query);
$sth->execute(@filter_values) || $form->dberror($query . " (" . join(", ", @filter_values) . ")");
my $projects = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$projects}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $projects;
}

sub retrieve_employees {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
if ($form->{"name"}) {
c0f83f3e Moritz Bunkus
$filter .= qq| AND (name ILIKE ?)|;
54e4131e Moritz Bunkus
push(@filter_values, '%' . $form->{"name"} . '%');
}
substr($filter, 1, 3) = "WHERE" if ($filter);

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

c0f83f3e Moritz Bunkus
my $query =
qq|SELECT id, name | .
qq|FROM employee $filter | .
qq|ORDER BY $order_by $order_dir|;
54e4131e Moritz Bunkus
my $sth = $dbh->prepare($query);
$sth->execute(@filter_values) || $form->dberror($query . " (" . join(", ", @filter_values) . ")");
my $employees = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$employees}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $employees;
}

91ab1ef6 Sven Schöling
sub retrieve_customers_or_vendors {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir, $is_vendor, $allow_both) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
if ($form->{"name"}) {
$filter .= " AND (TABLE.name ILIKE ?)";
push(@filter_values, '%' . $form->{"name"} . '%');
}
if (!$form->{"obsolete"}) {
$filter .= " AND NOT TABLE.obsolete";
}
substr($filter, 1, 3) = "WHERE" if ($filter);

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

my (@queries, @query_parameters);

if ($allow_both || !$is_vendor) {
my $c_filter = $filter;
$c_filter =~ s/TABLE/c/g;
push(@queries, qq|SELECT
c.id, c.name, 0 AS customer_is_vendor,
c.street, c.zipcode, c.city,
e09347c8 Geoffrey Richardson
ct.cp_gender, ct.cp_title, ct.cp_givenname, ct.cp_name
91ab1ef6 Sven Schöling
FROM customer c
LEFT JOIN contacts ct ON (c.id = ct.cp_cv_id)
$c_filter|);
push(@query_parameters, @filter_values);
}

if ($allow_both || $is_vendor) {
my $v_filter = $filter;
$v_filter =~ s/TABLE/v/g;
push(@queries, qq|SELECT
v.id, v.name, 1 AS customer_is_vendor,
v.street, v.zipcode, v.city,
e09347c8 Geoffrey Richardson
ct.cp_gender, ct.cp_title, ct.cp_givenname, ct.cp_name
91ab1ef6 Sven Schöling
FROM vendor v
LEFT JOIN contacts ct ON (v.id = ct.cp_cv_id)
$v_filter|);
push(@query_parameters, @filter_values);
}

my $query = join(" UNION ", @queries) . " ORDER BY $order_by $order_dir";
my $sth = $dbh->prepare($query);
$sth->execute(@query_parameters) || $form->dberror($query . " (" . join(", ", @query_parameters) . ")");
my $customers = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$customers}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $customers;
}

54e4131e Moritz Bunkus
sub retrieve_delivery_customer {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
if ($form->{"name"}) {
c0f83f3e Moritz Bunkus
$filter .= qq| (name ILIKE ?) AND|;
54e4131e Moritz Bunkus
push(@filter_values, '%' . $form->{"name"} . '%');
}

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

c0f83f3e Moritz Bunkus
my $query =
qq!SELECT id, name, customernumber, (street || ', ' || zipcode || city) AS address ! .
qq!FROM customer ! .
qq!WHERE $filter business_id = (SELECT id FROM business WHERE description = 'Endkunde') ! .
qq!ORDER BY $order_by $order_dir!;
54e4131e Moritz Bunkus
my $sth = $dbh->prepare($query);
c0f83f3e Moritz Bunkus
$sth->execute(@filter_values) ||
$form->dberror($query . " (" . join(", ", @filter_values) . ")");
54e4131e Moritz Bunkus
my $delivery_customers = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$delivery_customers}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $delivery_customers;
}

sub retrieve_vendor {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $order_by, $order_dir) = @_;

my $dbh = $form->dbconnect($myconfig);

my (@filter_values, $filter);
if ($form->{"name"}) {
c0f83f3e Moritz Bunkus
$filter .= qq| (name ILIKE ?) AND|;
54e4131e Moritz Bunkus
push(@filter_values, '%' . $form->{"name"} . '%');
}

$order_by =~ s/[^a-zA-Z_]//g;
$order_dir = $order_dir ? "ASC" : "DESC";

c0f83f3e Moritz Bunkus
my $query =
qq!SELECT id, name, customernumber, (street || ', ' || zipcode || city) AS address FROM customer ! .
05c6840d Moritz Bunkus
qq!WHERE $filter business_id = (SELECT id FROM business WHERE description = ?') ! .
c0f83f3e Moritz Bunkus
qq!ORDER BY $order_by $order_dir!;
05c6840d Moritz Bunkus
push @filter_values, $::locale->{iconv_utf8}->convert('Händler');
54e4131e Moritz Bunkus
my $sth = $dbh->prepare($query);
c0f83f3e Moritz Bunkus
$sth->execute(@filter_values) ||
$form->dberror($query . " (" . join(", ", @filter_values) . ")");
54e4131e Moritz Bunkus
my $vendors = [];
while (my $ref = $sth->fetchrow_hashref()) {
push(@{$vendors}, $ref);
}
$sth->finish();
$dbh->disconnect();

$main::lxdebug->leave_sub();

return $vendors;
}

8e206587 Moritz Bunkus
sub mkdir_with_parents {
$main::lxdebug->enter_sub();

my ($full_path) = @_;

my $path = "";

$full_path =~ s|/+|/|;

foreach my $part (split(m|/|, $full_path)) {
$path .= "/" if ($path);
$path .= $part;

die("Could not create directory '$path' because a file exists with " .
"the same name.\n") if (-f $path);

if (! -d $path) {
mkdir($path, 0770) || die("Could not create the directory '$path'. " .
"OS error: $!\n");
}
}

$main::lxdebug->leave_sub();
}

sub webdav_folder {
$main::lxdebug->enter_sub();

my ($form) = @_;

return $main::lxdebug->leave_sub()
606e7e25 Moritz Bunkus
unless ($::lx_office_conf{features}->{webdav} && $form->{id});
8e206587 Moritz Bunkus
my ($path, $number);

7e2bf6ca Moritz Bunkus
$form->{WEBDAV} = [];
8e206587 Moritz Bunkus
if ($form->{type} eq "sales_quotation") {
($path, $number) = ("angebote", $form->{quonumber});
} elsif ($form->{type} eq "sales_order") {
($path, $number) = ("bestellungen", $form->{ordnumber});
} elsif ($form->{type} eq "request_quotation") {
($path, $number) = ("anfragen", $form->{quonumber});
} elsif ($form->{type} eq "purchase_order") {
($path, $number) = ("lieferantenbestellungen", $form->{ordnumber});
7819bd6f Sven Schöling
} elsif ($form->{type} eq "sales_delivery_order") {
($path, $number) = ("verkaufslieferscheine", $form->{donumber});
} elsif ($form->{type} eq "purchase_delivery_order") {
($path, $number) = ("einkaufslieferscheine", $form->{donumber});
8e206587 Moritz Bunkus
} elsif ($form->{type} eq "credit_note") {
($path, $number) = ("gutschriften", $form->{invnumber});
} elsif ($form->{vc} eq "customer") {
($path, $number) = ("rechnungen", $form->{invnumber});
} else {
($path, $number) = ("einkaufsrechnungen", $form->{invnumber});
}

return $main::lxdebug->leave_sub() unless ($path && $number);

8626a95d Moritz Bunkus
$number =~ s|[/\\]|_|g;

8e206587 Moritz Bunkus
$path = "webdav/${path}/${number}";

if (!-d $path) {
mkdir_with_parents($path);

} else {
d4ea1fa8 Sven Schöling
my $base_path = $ENV{'SCRIPT_NAME'};
8e206587 Moritz Bunkus
$base_path =~ s|[^/]+$||;
05c6840d Moritz Bunkus
# wo kommt der wert für dir her? es wird doch gar nichts übergeben? fix für strict my $dir jb 21.2.
e807eba3 Geoffrey Richardson
if (opendir my $dir, $path) {
7e2bf6ca Moritz Bunkus
foreach my $file (sort { lc $a cmp lc $b } readdir $dir) {
e436a6b0 Moritz Bunkus
next if (($file eq '.') || ($file eq '..'));

my $fname = $file;
$fname =~ s|.*/||;

7e2bf6ca Moritz Bunkus
my $is_directory = -d "$path/$file";
e436a6b0 Moritz Bunkus
$file = join('/', map { $form->escape($_) } grep { $_ } split m|/+|, "$path/$file");
7e2bf6ca Moritz Bunkus
$file .= '/' if ($is_directory);
e436a6b0 Moritz Bunkus
7e2bf6ca Moritz Bunkus
push @{ $form->{WEBDAV} }, {
'name' => $fname,
d4ea1fa8 Sven Schöling
'link' => $base_path . $file,
7e2bf6ca Moritz Bunkus
'type' => $is_directory ? $main::locale->text('Directory') : $main::locale->text('File'),
};
e436a6b0 Moritz Bunkus
}

closedir $dir;
8e206587 Moritz Bunkus
}
}

$main::lxdebug->leave_sub();
}

fb4d2ffa Moritz Bunkus
sub get_vc_details {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $vc, $vc_id) = @_;

$vc = $vc eq "customer" ? "customer" : "vendor";

my $dbh = $form->dbconnect($myconfig);

my $query;

$query =
qq|SELECT
vc.*,
pt.description AS payment_terms,
b.description AS business,
l.description AS language
FROM ${vc} vc
LEFT JOIN payment_terms pt ON (vc.payment_id = pt.id)
LEFT JOIN business b ON (vc.business_id = b.id)
LEFT JOIN language l ON (vc.language_id = l.id)
WHERE vc.id = ?|;
my $ref = selectfirst_hashref_query($form, $dbh, $query, $vc_id);

if (!$ref) {
$dbh->disconnect();
$main::lxdebug->leave_sub();
return 0;
}

map { $form->{$_} = $ref->{$_} } keys %{ $ref };

map { $form->{$_} = $form->format_amount($myconfig, $form->{$_} * 1) } qw(discount creditlimit);

$query = qq|SELECT * FROM shipto WHERE (trans_id = ?)|;
$form->{SHIPTO} = selectall_hashref_query($form, $dbh, $query, $vc_id);

$query = qq|SELECT * FROM contacts WHERE (cp_cv_id = ?)|;
$form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $vc_id);

$dbh->disconnect();

$main::lxdebug->leave_sub();

return 1;
}

480c6709 Moritz Bunkus
sub get_shipto_by_id {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form, $shipto_id, $prefix) = @_;

$prefix ||= "";

my $dbh = $form->dbconnect($myconfig);

my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|;
my $ref = selectfirst_hashref_query($form, $dbh, $query, $shipto_id);

map { $form->{"${prefix}${_}"} = $ref->{$_} } keys %{ $ref } if $ref;

$dbh->disconnect();

$main::lxdebug->leave_sub();
}

6d1df9ca Moritz Bunkus
sub save_email_status {
$main::lxdebug->enter_sub();

my ($self, $myconfig, $form) = @_;

my ($table, $query, $dbh);

if ($form->{script} eq 'oe.pl') {
$table = 'oe';

} elsif ($form->{script} eq 'is.pl') {
$table = 'ar';

} elsif ($form->{script} eq 'ir.pl') {
$table = 'ap';

}

return $main::lxdebug->leave_sub() if (!$form->{id} || !$table || !$form->{formname});

$dbh = $form->get_standard_dbh($myconfig);

my ($intnotes) = selectrow_query($form, $dbh, qq|SELECT intnotes FROM $table WHERE id = ?|, $form->{id});

$intnotes =~ s|\r||g;
$intnotes =~ s|\n$||;

$intnotes .= "\n\n" if ($intnotes);

74fca575 Sven Schöling
my $cc = $form->{cc} ? $main::locale->text('Cc') . ": $form->{cc}\n" : '';
my $bcc = $form->{bcc} ? $main::locale->text('Bcc') . ": $form->{bcc}\n" : '';
6d1df9ca Moritz Bunkus
my $now = scalar localtime;

$intnotes .= $main::locale->text('[email]') . "\n"
. $main::locale->text('Date') . ": $now\n"
. $main::locale->text('To (email)') . ": $form->{email}\n"
. "${cc}${bcc}"
. $main::locale->text('Subject') . ": $form->{subject}\n\n"
. $main::locale->text('Message') . ": $form->{message}";

$intnotes =~ s|\r||g;

do_query($form, $dbh, qq|UPDATE $table SET intnotes = ? WHERE id = ?|, $intnotes, $form->{id});

$form->save_status($dbh);

$dbh->commit();

$main::lxdebug->leave_sub();
}

900dff5f Moritz Bunkus
sub check_params {
my $params = shift;

foreach my $key (@_) {
4a826447 Moritz Bunkus
if ((ref $key eq '') && !defined $params->{$key}) {
900dff5f Moritz Bunkus
my $subroutine = (caller(1))[3];
ff296f5f Sven Schöling
$main::lxdebug->message(LXDebug->BACKTRACE_ON_ERROR, "[Common::check_params] failed, params object dumped below");
$main::lxdebug->message(LXDebug->BACKTRACE_ON_ERROR, Dumper($params));
900dff5f Moritz Bunkus
$main::form->error($main::locale->text("Missing parameter #1 in call to sub #2.", $key, $subroutine));
4a826447 Moritz Bunkus
} elsif (ref $key eq 'ARRAY') {
my $found = 0;
e807eba3 Geoffrey Richardson
foreach my $subkey (@{ $key }) {
4a826447 Moritz Bunkus
if (defined $params->{$subkey}) {
$found = 1;
last;
}
}

if (!$found) {
my $subroutine = (caller(1))[3];
ff296f5f Sven Schöling
$main::lxdebug->message(LXDebug->BACKTRACE_ON_ERROR, "[Common::check_params] failed, params object dumped below");
$main::lxdebug->message(LXDebug->BACKTRACE_ON_ERROR, Dumper($params));
4a826447 Moritz Bunkus
$main::form->error($main::locale->text("Missing parameter (at least one of #1) in call to sub #2.", join(', ', @{ $key }), $subroutine));
}
900dff5f Moritz Bunkus
}
}
}

49189bfb Moritz Bunkus
sub check_params_x {
my $params = shift;

foreach my $key (@_) {
4a826447 Moritz Bunkus
if ((ref $key eq '') && !exists $params->{$key}) {
49189bfb Moritz Bunkus
my $subroutine = (caller(1))[3];
$main::form->error($main::locale->text("Missing parameter #1 in call to sub #2.", $key, $subroutine));
4a826447 Moritz Bunkus
} elsif (ref $key eq 'ARRAY') {
my $found = 0;
e807eba3 Geoffrey Richardson
foreach my $subkey (@{ $key }) {
4a826447 Moritz Bunkus
if (exists $params->{$subkey}) {
$found = 1;
last;
}
}

if (!$found) {
my $subroutine = (caller(1))[3];
$main::form->error($main::locale->text("Missing parameter (at least one of #1) in call to sub #2.", join(', ', @{ $key }), $subroutine));
}
49189bfb Moritz Bunkus
}
}
}

54e4131e Moritz Bunkus
1;