X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FCommon.pm;h=b5e231c7b913f92411e386afd0fa0e7ba4f631d5;hb=dea9aaea2182221d62f88966d9ad8e4f85e3a3d6;hp=bedb9e6d7550594774701b8e48b17df6dfa7a924;hpb=91ab1ef646193de9359076a876a33a74d7691145;p=kivitendo-erp.git diff --git a/SL/Common.pm b/SL/Common.pm index bedb9e6d7..b5e231c7b 100644 --- a/SL/Common.pm +++ b/SL/Common.pm @@ -29,6 +29,7 @@ use vars qw(@db_encodings %db_encoding_to_charset); ); %db_encoding_to_charset = map { $_->{dbencoding}, $_->{charset} } @db_encodings; +%charset_to_db_encoding = map { $_->{charset}, $_->{dbencoding} } @db_encodings; use constant DEFAULT_CHARSET => 'ISO-8859-15'; @@ -49,21 +50,32 @@ sub retrieve_parts { my $dbh = $form->dbconnect($myconfig); my (@filter_values, $filter); - if ($form->{"partnumber"}) { - $filter .= qq| AND (partnumber ILIKE ?)|; - push(@filter_values, '%' . $form->{"partnumber"} . '%'); + + foreach (qw(partnumber description ean)) { + next unless $form->{$_}; + + $filter .= qq| AND ($_ ILIKE ?)|; + push @filter_values, '%' . $form->{$_} . '%'; } - if ($form->{"description"}) { - $filter .= qq| AND (description ILIKE ?)|; - push(@filter_values, '%' . $form->{"description"} . '%'); + + if ($form->{no_assemblies}) { + $filter .= qq| AND (NOT COALESCE(assembly, FALSE))|; + } + if ($form->{assemblies}) { + $filter .= qq| AND assembly=TRUE|; } + + if ($form->{no_services}) { + $filter .= qq| AND (inventory_accno_id is not NULL or assembly=TRUE)|; # @mb hier nochmal optimieren ... nach kurzer ruecksprache alles i.o. + } + substr($filter, 1, 3) = "WHERE" if ($filter); $order_by =~ s/[^a-zA-Z_]//g; $order_dir = $order_dir ? "ASC" : "DESC"; my $query = - qq|SELECT id, partnumber, description | . + qq|SELECT id, partnumber, description, ean | . qq|FROM parts $filter | . qq|ORDER BY $order_by $order_dir|; my $sth = $dbh->prepare($query); @@ -354,8 +366,8 @@ sub webdav_folder { my $base_path = substr($ENV{'SCRIPT_NAME'}, 1); $base_path =~ s|[^/]+$||; $base_path =~ s|/$||; - - if (opendir $dir, $path) { + # wo kommt der wert für dir her? es wird doch gar nichts übergeben? fix für strict my $dir jb 21.2. + if (opendir my $dir, $path) { foreach my $file (sort { lc $a cmp lc $b } readdir $dir) { next if (($file eq '.') || ($file eq '..')); @@ -502,9 +514,23 @@ sub check_params { my $params = shift; foreach my $key (@_) { - if (!defined $params->{$key}) { + if ((ref $key eq '') && !defined $params->{$key}) { my $subroutine = (caller(1))[3]; $main::form->error($main::locale->text("Missing parameter #1 in call to sub #2.", $key, $subroutine)); + + } elsif (ref $key eq 'ARRAY') { + my $found = 0; + foreach my $subkey (@{ $key }) { + if (defined $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)); + } } } } @@ -513,9 +539,23 @@ sub check_params_x { my $params = shift; foreach my $key (@_) { - if (!exists $params->{$key}) { + if ((ref $key eq '') && !exists $params->{$key}) { my $subroutine = (caller(1))[3]; $main::form->error($main::locale->text("Missing parameter #1 in call to sub #2.", $key, $subroutine)); + + } elsif (ref $key eq 'ARRAY') { + my $found = 0; + foreach my $subkey (@{ $key }) { + 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)); + } } } }