From fb0366d23241dca92b6346d06b09679317a2a0d7 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 15 Apr 2014 16:30:19 -0400 Subject: [PATCH] LP#1308239 support holds fulfillment on precat copies During checkout, allow holds on precat copies to get fulfilled. Signed-off-by: Bill Erickson Signed-off-by: Ben Shum --- .../src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm index 4fec8e4ef6..df5f2d4446 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Circulate.pm @@ -1717,8 +1717,8 @@ sub handle_checkout_holds { my $e = $self->editor; $self->fulfilled_holds([]); - # pre/non-cats can't fulfill a hold - return if $self->is_precat or $self->is_noncat; + # non-cats can't fulfill a hold + return if $self->is_noncat; my $hold = $e->search_action_hold_request({ current_copy => $copy->id , -- 2.43.2