X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FController%2FTaxzones.pm;fp=SL%2FController%2FTaxzones.pm;h=72c772fd6915ed2a11e4a6e2364c980e644018a1;hp=60b820d4f705af8e576cdd098f9e2c413f9454e1;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/Controller/Taxzones.pm b/SL/Controller/Taxzones.pm index 60b820d4f..72c772fd6 100644 --- a/SL/Controller/Taxzones.pm +++ b/SL/Controller/Taxzones.pm @@ -27,6 +27,7 @@ sub action_list { my $taxzones = SL::DB::Manager::TaxZone->get_all_sorted(); + $self->setup_list_action_bar; $self->render('taxzones/list', title => t8('List of tax zones'), TAXZONES => $taxzones); @@ -42,6 +43,7 @@ sub action_new { sub show_form { my ($self, %params) = @_; + $self->setup_show_form_action_bar; $self->render('taxzones/form', %params, BUCHUNGSGRUPPEN => SL::DB::Manager::Buchungsgruppe->get_all_sorted); } @@ -72,12 +74,13 @@ sub action_delete { # allow deletion of unused tax zones. Will fail, due to database # constraints, if tax zone is used anywhere - my $db = $self->{config}->db; - $db->do_transaction(sub { - my $taxzone_charts = SL::DB::Manager::TaxzoneChart->get_all(where => [ taxzone_id => $self->config->id ]); - foreach my $taxzonechart ( @{$taxzone_charts} ) { $taxzonechart->delete }; - $self->config->delete(); - flash_later('info', $::locale->text('The tax zone has been deleted.')); + $self->{config}->db->with_transaction(sub { + my $taxzone_charts = SL::DB::Manager::TaxzoneChart->get_all(where => [ taxzone_id => $self->config->id ]); + foreach my $taxzonechart ( @{$taxzone_charts} ) { $taxzonechart->delete }; + $self->config->delete(); + flash_later('info', $::locale->text('The tax zone has been deleted.')); + + 1; }) || flash_later('error', $::locale->text('The tax zone is in use and cannot be deleted.')); $self->redirect_to(action => 'list'); @@ -121,7 +124,7 @@ sub create_or_update { my @errors; my $db = $self->config->db; - $db->do_transaction( sub { + if (!$db->with_transaction(sub { # always allow editing of description and obsolete $self->config->assign_attributes( %{$params} ) ; @@ -146,8 +149,8 @@ sub create_or_update { $income_accno = SL::DB::Manager::Chart->find_by( id => $income_accno_id ) if $income_accno_id; $expense_accno = SL::DB::Manager::Chart->find_by( id => $expense_accno_id ) if $expense_accno_id; - push(@errors, t8('Buchungsgruppe #1 needs a valid income account' , $bg->description)) unless $income_accno; - push(@errors, t8('Buchungsgruppe #1 needs a valid expense account', $bg->description)) unless $expense_accno; + push(@errors, t8('Booking group #1 needs a valid income account' , $bg->description)) unless $income_accno; + push(@errors, t8('Booking group #1 needs a valid expense account', $bg->description)) unless $expense_accno; my $taxzone_chart = SL::DB::Manager::TaxzoneChart->find_by_or_create(buchungsgruppen_id => $bg->id, taxzone_id => $self->config->id); # if taxzonechart doesn't exist an empty new TaxzoneChart object is @@ -160,9 +163,13 @@ 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 + + 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 taxzone has been created.') : t8('The taxzone has been saved.')); $self->redirect_to(action => 'list'); @@ -174,4 +181,53 @@ sub create_or_update { sub init_defaults { SL::DB::Default->get }; +# +# helpers +# + +sub setup_show_form_action_bar { + my ($self) = @_; + + my $is_new = !$self->config->id; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + action => [ + t8('Save'), + submit => [ '#form', { action => 'Taxzones/' . ($is_new ? 'create' : 'update') } ], + checks => [ 'kivi.validate_form' ], + accesskey => 'enter', + ], + + action => [ + t8('Delete'), + submit => [ '#form', { action => 'Taxzones/delete' } ], + confirm => t8('Do you really want to delete this object?'), + disabled => $is_new ? t8('This object has not been saved yet.') + : !$self->config->orphaned ? t8('The object is in use and cannot be deleted.') + : undef, + ], + + link => [ + t8('Abort'), + link => $self->url_for(action => 'list'), + ], + ); + } + $::request->layout->add_javascripts('kivi.Validator.js'); +} + +sub setup_list_action_bar { + my ($self) = @_; + + for my $bar ($::request->layout->get('actionbar')) { + $bar->add( + link => [ + t8('Add'), + link => $self->url_for(action => 'new'), + ], + ); + } +} + 1;