X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FBuchungsgruppen.pm;h=4776bd6406f33796889a07151471377ee84e7ece;hb=4d3be9c7cbf7d525181428a9b3697338aa066f0f;hp=3f935824c9e97da7067077a95d90c081ac530064;hpb=a28a585e4cc989f4428d47352ef5f118035c237f;p=kivitendo-erp.git diff --git a/SL/Controller/Buchungsgruppen.pm b/SL/Controller/Buchungsgruppen.pm index 3f935824c..4776bd640 100644 --- a/SL/Controller/Buchungsgruppen.pm +++ b/SL/Controller/Buchungsgruppen.pm @@ -35,7 +35,7 @@ sub action_list { $::form->header; $self->render('buchungsgruppen/list', - title => t8('Buchungsgruppen'), + title => t8('Booking groups'), BUCHUNGSGRUPPEN => $buchungsgruppen, CHARTLIST => \%chartlist, TAXZONES => $taxzones); @@ -45,7 +45,7 @@ sub action_new { my ($self) = @_; $self->config(SL::DB::Buchungsgruppe->new()); - $self->show_form(title => t8('Add Buchungsgruppe')); + $self->show_form(title => t8('Add booking group')); } sub show_form { @@ -63,7 +63,7 @@ sub action_edit { # orphaned method, where an IF-ELSE statement toggles between L.select_tag # and text. - $self->show_form(title => t8('Edit Buchungsgruppe'), + $self->show_form(title => t8('Edit booking group'), CHARTLIST => SL::DB::TaxzoneChart->get_all_accounts_by_buchungsgruppen_id($self->config->id)); } @@ -85,13 +85,14 @@ sub action_delete { # allow deletion of unused Buchungsgruppen. Will fail, due to database # constraint, if Buchungsgruppe is connected to a part - my $db = $self->{config}->db; - $db->do_transaction(sub { - my $taxzone_charts = SL::DB::Manager::TaxzoneChart->get_all(where => [ buchungsgruppen_id => $self->config->id ]); - foreach my $taxzonechart ( @{$taxzone_charts} ) { $taxzonechart->delete }; - $self->config->delete(); - flash_later('info', $::locale->text('The buchungsgruppe has been deleted.')); - }) || flash_later('error', $::locale->text('The buchungsgruppe is in use and cannot be deleted.')); + $self->{config}->db->with_transaction(sub { + my $taxzone_charts = SL::DB::Manager::TaxzoneChart->get_all(where => [ buchungsgruppen_id => $self->config->id ]); + foreach my $taxzonechart ( @{$taxzone_charts} ) { $taxzonechart->delete }; + $self->config->delete(); + flash_later('info', $::locale->text('The booking group has been deleted.')); + + 1; + }) || flash_later('error', $::locale->text('The booking group is in use and cannot be deleted.')); $self->redirect_to(action => 'list'); @@ -133,7 +134,7 @@ sub create_or_update { my @errors; my $db = $self->config->db; - $db->do_transaction( sub { + if (!$db->with_transaction(sub { $self->config->assign_attributes(%{ $params }); # assign description and inventory_accno_id @@ -169,11 +170,15 @@ sub create_or_update { $taxzone_chart->save; } } - } ) || die @errors ? join("\n", @errors) . "\n" : $db->error . "\n"; - # die with rollback of taxzone save if saving of any of the taxzone_charts fails - # only show the $db->error if we haven't already identified the likely error ourselves - flash_later('info', $is_new ? t8('The Buchungsgruppe has been created.') : t8('The Buchungsgruppe has been saved.')); + 1; + })) { + die @errors ? join("\n", @errors) . "\n" : $db->error . "\n"; + # die with rollback of taxzone save if saving of any of the taxzone_charts fails + # only show the $db->error if we haven't already identified the likely error ourselves + } + + flash_later('info', $is_new ? t8('The booking group has been created.') : t8('The booking group has been saved.')); $self->redirect_to(action => 'list'); }