X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FIC.pm;h=d70c214d2de50f21735404df24fe98123052acb1;hb=832dce93297e0577b2f7acf6be3612adca7334d9;hp=8341f1888b56caf37d04a6875ef19e741f10cd05;hpb=bed19453fb654f69ad972911a4533ca89f8ae0c9;p=kivitendo-erp.git diff --git a/SL/IC.pm b/SL/IC.pm index 8341f1888..d70c214d2 100644 --- a/SL/IC.pm +++ b/SL/IC.pm @@ -43,6 +43,7 @@ use SL::DBUtils; use SL::HTML::Restrict; use SL::TransNumber; use SL::Util qw(trim); +use SL::DB; use strict; @@ -193,8 +194,7 @@ sub get_pricegroups { my $i = 1; foreach my $pg (@{ $pricegroups }) { - $form->{"klass_$i"} = "$pg->{id}"; - $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2); + $form->{"price_$i"} = $form->format_amount($myconfig, $form->{"price_$i"}, -2); $form->{"pricegroup_id_$i"} = "$pg->{id}"; $form->{"pricegroup_$i"} = "$pg->{pricegroup}"; $i++; @@ -225,12 +225,20 @@ sub retrieve_buchungsgruppen { } sub save { + my ($self, $myconfig, $form) = @_; $main::lxdebug->enter_sub(); + my $rc = SL::DB->client->with_transaction(\&_save, $self, $myconfig, $form); + + $main::lxdebug->leave_sub(); + return $rc; +} + +sub _save { my ($self, $myconfig, $form) = @_; my @values; - # connect to database, turn off AutoCommit - my $dbh = $form->get_standard_dbh; + + my $dbh = SL::DB->client->dbh; my $restricter = SL::HTML::Restrict->create; # save the part @@ -262,16 +270,8 @@ sub save { } # get old price - $query = qq|SELECT sellprice, weight FROM parts WHERE id = ?|; - my ($sellprice, $weight) = selectrow_query($form, $dbh, $query, conv_i($form->{id})); - - # if item is part of an assembly adjust all assemblies - $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|; - $sth = prepare_execute_query($form, $dbh, $query, conv_i($form->{id})); - while (my ($id, $qty) = $sth->fetchrow_array) { - &update_assembly($dbh, $form, $id, $qty, $sellprice * 1, $weight * 1); - } - $sth->finish; + $query = qq|SELECT sellprice FROM parts WHERE id = ?|; + my ($sellprice) = selectrow_query($form, $dbh, $query, conv_i($form->{id})); # delete makemodel records do_query($form, $dbh, qq|DELETE FROM makemodel WHERE parts_id = ?|, conv_i($form->{id})); @@ -336,7 +336,6 @@ sub save { partnumber = ?, description = ?, makemodel = ?, - alternate = 'f', assembly = ?, listprice = ?, sellprice = ?, @@ -545,37 +544,7 @@ sub save { SQL do_query($form, $dbh, $query, ($form->{id}) x 2); - # commit - my $rc = $dbh->commit; - - $main::lxdebug->leave_sub(); - - return $rc; -} - -sub update_assembly { - $main::lxdebug->enter_sub(); - - my ($dbh, $form, $id, $qty, $sellprice, $weight) = @_; - - my $query = qq|SELECT id, qty FROM assembly WHERE parts_id = ?|; - my $sth = prepare_execute_query($form, $dbh, $query, conv_i($id)); - - while (my ($pid, $aqty) = $sth->fetchrow_array) { - &update_assembly($dbh, $form, $pid, $aqty * $qty, $sellprice, $weight); - } - $sth->finish; - - $query = - qq|UPDATE parts SET sellprice = sellprice + ?, weight = weight + ? - WHERE id = ?|; - my @values = ($qty * ($form->{sellprice} - $sellprice), - $qty * ($form->{weight} - $weight), conv_i($id)); - do_query($form, $dbh, $query, @values); - - $form->new_lastmtime('parts') if $id == $form->{id}; - - $main::lxdebug->leave_sub(); + return 1; } sub retrieve_assemblies { @@ -615,26 +584,27 @@ sub retrieve_assemblies { } sub delete { + my ($self, $myconfig, $form) = @_; $main::lxdebug->enter_sub(); + my $rc = SL::DB->client->with_transaction(\&_delete, $self, $myconfig, $form); + + $main::lxdebug->leave_sub(); + return $rc; +} + +sub _delete { my ($self, $myconfig, $form) = @_; my @values = (conv_i($form->{id})); - # connect to database, turn off AutoCommit - my $dbh = $form->get_standard_dbh; my %columns = ( "assembly" => "id", "parts" => "id" ); for my $table (qw(prices makemodel inventory assembly translation parts)) { my $column = defined($columns{$table}) ? $columns{$table} : "parts_id"; - do_query($form, $dbh, qq|DELETE FROM $table WHERE $column = ?|, @values); + do_query($form, SL::DB->client->dbh, qq|DELETE FROM $table WHERE $column = ?|, @values); } - # commit - my $rc = $dbh->commit; - - $main::lxdebug->leave_sub(); - - return $rc; + return 1; } sub assembly_item { @@ -672,9 +642,6 @@ sub assembly_item { $where .= qq| ORDER BY p.description|; } - # connect to database - my $dbh = $form->get_standard_dbh; - my $query = qq|SELECT p.id, p.partnumber, p.description, p.sellprice, p.weight, p.onhand, p.unit, pg.partsgroup, p.lastcost, @@ -683,7 +650,7 @@ sub assembly_item { LEFT JOIN partsgroup pg ON (p.partsgroup_id = pg.id) LEFT JOIN price_factors pfac ON pfac.id = p.price_factor_id WHERE $where|; - $form->{item_list} = selectall_hashref_query($form, $dbh, $query, @values); + $form->{item_list} = selectall_hashref_query($form, SL::DB->client->dbh, $query, @values); $main::lxdebug->leave_sub(); } @@ -878,7 +845,7 @@ sub all_parts { if ($form->{all}) { $form->{"l_$_"} = 1 for qw(partnumber description unit sellprice lastcost cvar_packaging linetotal); push @where_tokens, "p.partnumber ILIKE ? OR p.description ILIKE ?"; - push @bind_vars, "%$form->{all}%", "%$form->{all}%"; + push @bind_vars, (like($form->{all})) x 2; } # special case insertdate @@ -1259,15 +1226,23 @@ sub get_num_matches_for_priceupdate { } sub update_prices { + my ($self, $myconfig, $form) = @_; $main::lxdebug->enter_sub(); + my $num_updated = SL::DB->client->with_transaction(\&_update_prices, $self, $myconfig, $form); + + $main::lxdebug->leave_sub(); + return $num_updated; +} + +sub _update_prices { my ($self, $myconfig, $form) = @_; my ($where, @where_values) = $self->_create_filter_for_priceupdate(); my $num_updated = 0; # connect to database - my $dbh = $form->get_standard_dbh; + my $dbh = SL::DB->client->dbh; for my $column (qw(sellprice listprice)) { next if ($form->{$column} eq ""); @@ -1327,10 +1302,6 @@ sub update_prices { $sth_add->finish(); $sth_multiply->finish(); - my $rc= $dbh->commit; - - $main::lxdebug->leave_sub(); - return $num_updated; } @@ -1342,7 +1313,7 @@ sub create_links { # connect to database my $dbh = $form->get_standard_dbh; - my @values = ('%' . $module . '%'); + my @values = like($module); my $query; if ($form->{id}) {