X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fgl.pl;h=69d3be46e37648ca2e6608788bc309f8cd360112;hb=850ba82b521647752529615b3d5d4383ea77b2e6;hp=6f519428bba2c221d1c72995b35e2edddf961356;hpb=c342d50b6999ca85ce15201b6d79c79b7f669fa3;p=kivitendo-erp.git diff --git a/bin/mozilla/gl.pl b/bin/mozilla/gl.pl index 6f519428b..69d3be46e 100644 --- a/bin/mozilla/gl.pl +++ b/bin/mozilla/gl.pl @@ -43,7 +43,7 @@ use SL::DB::BankTransactionAccTrans; use SL::DB::Tax; use SL::FU; use SL::GL; -use SL::Helper::Flash qw(flash); +use SL::Helper::Flash qw(flash flash_later); use SL::IS; use SL::ReportGenerator; use SL::DBUtils qw(selectrow_query selectall_hashref_query); @@ -1363,7 +1363,7 @@ sub post_transaction { die "No bank transaction found" unless $bt; $chart_id = SL::DB::Manager::BankAccount->find_by(id => $bt->local_bank_account_id)->chart_id; - die "no chart id:" unless $chart_id; + die "no chart id" unless $chart_id; $payment = SL::DB::Manager::AccTransaction->get_all(where => [ trans_id => $::form->{id}, chart_link => { like => '%_paid%' }, @@ -1372,7 +1372,7 @@ sub post_transaction { # credit/debit * -1 matches the sign for bt.amount and bt.invoice_amount - die "Can only assign the full (partial) bank amount to a single general ledger booking" . $bt->not_assigned_amount . " " . ($payment->[0]->amount * -1) + die "Can only assign the full (partial) bank amount to a single general ledger booking: " . $bt->not_assigned_amount . " " . ($payment->[0]->amount * -1) unless (abs($bt->not_assigned_amount - ($payment->[0]->amount * -1)) < 0.001); $bt->update_attributes(invoice_amount => $bt->invoice_amount + ($payment->[0]->amount * -1)); @@ -1398,17 +1398,6 @@ sub post_transaction { 1; }) or do { die SL::DB->client->error }; - if ($form->{callback} =~ /BankTransaction/ && $form->{bt_id}) { - print $form->redirect_header($form->{callback}); - $form->redirect($locale->text('GL transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}); - } elsif ($::instance_conf->get_gl_add_doc && $::instance_conf->get_doc_storage) { - my $add_doc_url = build_std_url("script=gl.pl", 'action=edit', 'id=' . E($form->{id}), 'fragment=ui-tabs-docs'); - print $form->redirect_header($add_doc_url); - $form->redirect($locale->text('GL transaction posted.') . ' ' . $locale->text('ID') . ': ' . $form->{id}); - } - - # remove or clarify - undef($form->{callback}); $main::lxdebug->leave_sub(); } @@ -1434,8 +1423,24 @@ sub post { )->webdav_path; } - $form->{callback} = build_std_url("action=add", "show_details"); - $form->redirect($::locale->text("General ledger transaction '#1' posted", $form->{reference})); + my $msg = $::locale->text("General ledger transaction '#1' posted (ID: #2)", $form->{reference}, $form->{id}); + if ($form->{callback} =~ /BankTransaction/ && $form->{bt_id}) { + $form->redirect($msg); + + } elsif ($::instance_conf->get_gl_add_doc && $::instance_conf->get_doc_storage) { + # Redirect with callback containing a fragment does not work (by now) + # because the callback info is stored in the session an parsing the + # callback parameters does not support fragments (see SL::Form::redirect). + # So use flash_later for the message and redirect_headers for redirecting. + my $add_doc_url = build_std_url("script=gl.pl", 'action=edit', 'id=' . E($form->{id}), 'fragment=ui-tabs-docs'); + SL::Helper::Flash::flash_later('info', $msg); + print $form->redirect_header($add_doc_url); + $::dispatcher->end_request; + + } else { + $form->{callback} = build_std_url("action=add", "show_details"); + $form->redirect($msg); + } $main::lxdebug->leave_sub(); }