From 781fb0e268020bb4dc2718014210ee215b2bb4ba Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 6 Oct 2023 15:15:39 +0000 Subject: [PATCH] Bug 35003: Make cancelled hold requests filter by branch To recreate: 1. Make sure you have the "Default waiting hold cancellation policy" set to allow via circulation rules. 2. Make several holds at different branches holds and set them to waiting 3. Request to cancel those holds, making sure you cancel some for different branches. 4. Go to waitingreserves.tt and notice that you see all of the holds from all branches. 5. APPLY PATCH and restart services 6. Vist the waitingreserves.tt page and notice that the "Holds with cancellation requests" table can now filters by branch. 7. Use the "View all libraries" and make sure you can see all the holds with a cancellation request. --- circ/waitingreserves.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/waitingreserves.pl b/circ/waitingreserves.pl index 2e56c5e86f4..26924f27fd5 100755 --- a/circ/waitingreserves.pl +++ b/circ/waitingreserves.pl @@ -116,7 +116,7 @@ while ( my $hold = $holds->next ) { } -my $holds_with_cancellation_requests = Koha::Holds->waiting->filter_by_has_cancellation_requests; +my $holds_with_cancellation_requests = Koha::Holds->waiting->search({ ($all_branches ? () : ( branchcode => $default ) ) })->filter_by_has_cancellation_requests; $template->param(cancel_result => \@cancel_result) if @cancel_result; -- 2.30.2