X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FCommon.pm;h=b70378e66c7d795f4f166353aeab15398d9d8c4a;hb=00d97258c6c6118002cb230a758747963661ca84;hp=f1aa53c2d43c108e3d1ee8325f7b911d1055f12c;hpb=bc40bcabc425b99f3b79a5544684a6fe8674adfe;p=kivitendo-erp.git diff --git a/SL/Common.pm b/SL/Common.pm index f1aa53c2d..b70378e66 100644 --- a/SL/Common.pm +++ b/SL/Common.pm @@ -24,6 +24,7 @@ use POSIX (); use Encode qw(decode); use SL::DBUtils; +use SL::DB; sub unique_id { my ($a, $b) = gettimeofday(); @@ -54,7 +55,7 @@ sub retrieve_parts { my ($self, $myconfig, $form, $order_by, $order_dir) = @_; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my (@filter_values, $filter); @@ -66,14 +67,14 @@ sub retrieve_parts { } if ($form->{no_assemblies}) { - $filter .= qq| AND (NOT COALESCE(assembly, FALSE))|; + $filter .= qq| AND (NOT part_type = 'assembly')|; } if ($form->{assemblies}) { - $filter .= qq| AND assembly=TRUE|; + $filter .= qq| AND part_type = 'assembly'|; } if ($form->{no_services}) { - $filter .= qq| AND (inventory_accno_id is not NULL or assembly=TRUE)|; + $filter .= qq| AND NOT (part_type = 'service' OR part_type = 'assembly')|; } substr($filter, 1, 3) = "WHERE" if ($filter); @@ -93,7 +94,6 @@ sub retrieve_parts { push(@{$parts}, $ref); } $sth->finish(); - $dbh->disconnect(); $main::lxdebug->leave_sub(); @@ -105,7 +105,7 @@ sub retrieve_customers_or_vendors { my ($self, $myconfig, $form, $order_by, $order_dir, $is_vendor, $allow_both) = @_; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my (@filter_values, $filter); if ($form->{"name"}) { @@ -156,7 +156,6 @@ sub retrieve_customers_or_vendors { push(@{$customers}, $ref); } $sth->finish(); - $dbh->disconnect(); $main::lxdebug->leave_sub(); @@ -168,7 +167,7 @@ sub retrieve_delivery_customer { my ($self, $myconfig, $form, $order_by, $order_dir) = @_; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my (@filter_values, $filter); if ($form->{"name"}) { @@ -192,7 +191,6 @@ sub retrieve_delivery_customer { push(@{$delivery_customers}, $ref); } $sth->finish(); - $dbh->disconnect(); $main::lxdebug->leave_sub(); @@ -204,7 +202,7 @@ sub retrieve_vendor { my ($self, $myconfig, $form, $order_by, $order_dir) = @_; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my (@filter_values, $filter); if ($form->{"name"}) { @@ -228,7 +226,6 @@ sub retrieve_vendor { push(@{$vendors}, $ref); } $sth->finish(); - $dbh->disconnect(); $main::lxdebug->leave_sub(); @@ -314,7 +311,7 @@ sub get_vc_details { $vc = $vc eq "customer" ? "customer" : "vendor"; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my $query; @@ -334,7 +331,6 @@ sub get_vc_details { my $ref = selectfirst_hashref_query($form, $dbh, $query, $vc_id); if (!$ref) { - $dbh->disconnect(); $main::lxdebug->leave_sub(); return 0; } @@ -350,9 +346,7 @@ sub get_vc_details { $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $vc_id); # Only show default pricegroup for customer, not vendor, which is why this is outside the main query - ($form->{pricegroup}) = selectrow_query($form, $dbh, qq|SELECT pricegroup FROM pricegroup WHERE id = ?|, $form->{klass}); - - $dbh->disconnect(); + ($form->{pricegroup}) = selectrow_query($form, $dbh, qq|SELECT pricegroup FROM pricegroup WHERE id = ?|, $form->{pricegroup_id}); $main::lxdebug->leave_sub(); @@ -366,7 +360,7 @@ sub get_shipto_by_id { $prefix ||= ""; - my $dbh = $form->dbconnect($myconfig); + my $dbh = SL::DB->client->dbh; my $query = qq|SELECT * FROM shipto WHERE shipto_id = ?|; my $ref = selectfirst_hashref_query($form, $dbh, $query, $shipto_id); @@ -380,8 +374,6 @@ sub get_shipto_by_id { ); $form->{"${prefix}shiptocvar_$_->{name}"} = $_->{value} for @{ $cvars }; - $dbh->disconnect(); - $main::lxdebug->leave_sub(); } @@ -407,33 +399,34 @@ sub save_email_status { 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}); + SL::DB->client->with_transaction(sub { + $dbh = SL::DB->client->dbh; - $intnotes =~ s|\r||g; - $intnotes =~ s|\n$||; + my ($intnotes) = selectrow_query($form, $dbh, qq|SELECT intnotes FROM $table WHERE id = ?|, $form->{id}); - $intnotes .= "\n\n" if ($intnotes); + $intnotes =~ s|\r||g; + $intnotes =~ s|\n$||; - my $cc = $form->{cc} ? $main::locale->text('Cc') . ": $form->{cc}\n" : ''; - my $bcc = $form->{bcc} ? $main::locale->text('Bcc') . ": $form->{bcc}\n" : ''; - my $now = scalar localtime; + $intnotes .= "\n\n" if ($intnotes); - $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}"; + my $cc = $form->{cc} ? $main::locale->text('Cc') . ": $form->{cc}\n" : ''; + my $bcc = $form->{bcc} ? $main::locale->text('Bcc') . ": $form->{bcc}\n" : ''; + my $now = scalar localtime; - $intnotes =~ s|\r||g; + $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}"; - do_query($form, $dbh, qq|UPDATE $table SET intnotes = ? WHERE id = ?|, $intnotes, $form->{id}); + $intnotes =~ s|\r||g; - $form->save_status($dbh); + do_query($form, $dbh, qq|UPDATE $table SET intnotes = ? WHERE id = ?|, $intnotes, $form->{id}); - $dbh->commit(); + $form->save_status($dbh); + 1; + }) or do { die SL::DB->client->error }; $main::lxdebug->leave_sub(); }