From 415dfabd07c2733e348e77002f35bac36c206269 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 20 Apr 2015 12:31:11 -0700 Subject: [PATCH] Bug 13838 - Redirect to 'expired holds' tab after cancelling a hold When canceling a hold from the holds over tab, you are redirected back to the holds waiting tab. Instead, we should the librarian should continue to see the list of holds past the waiting length. Test Plan: 1) Apply this patch 2) Cancel a hold from the "Holds over" tab on circ/waitingreserves.pl 3) Note you are redirected back to the holds over tab Signed-off-by: Tom Misilo --- circ/waitingreserves.pl | 5 ++++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/circ/waitingreserves.pl b/circ/waitingreserves.pl index 3e1b5c2..57f23a9 100755 --- a/circ/waitingreserves.pl +++ b/circ/waitingreserves.pl @@ -46,6 +46,7 @@ my $fbr = $input->param('fbr') || ''; my $tbr = $input->param('tbr') || ''; my $all_branches = $input->param('allbranches') || ''; my $cancelall = $input->param('cancelall'); +my $tab = $input->param('tab'); my $cancel; @@ -161,7 +162,9 @@ $template->param( ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay') ); -if ($cancelall) { +if ($item && $tab eq 'holdsover') { + print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover"); +} elsif ($cancelall) { print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl"); } else { output_html_with_http_headers $input, $cookie, $template->output; diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt index 1d5faf4..1028033 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/waitingreserves.tt @@ -109,6 +109,7 @@ + [% IF ( reserveloo.dotransfer ) %] [% ELSE %] @@ -130,6 +131,7 @@
+
[% UNLESS TransferWhenCancelAllWaitingHolds %] @@ -167,6 +169,7 @@ + [% IF ( overloo.dotransfer ) %] [% ELSE %] -- 2.1.4