Bug 32878: (follow-up) Exclude non_priority holds

This patch filters out non_priorty holds in the on_reserve condition.

Test plan
1) Run t/db_dependant/Holds.t
2) Note it fails without this patch
3) Apply patch
4) Re-run the above test, note it now passes

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 042cba5db1)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2023-03-15 15:24:32 +00:00
parent 027ecfa640
commit b70ad361aa
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -2964,7 +2964,7 @@ sub CanBookBeRenewed {
# There is an item level hold on this item, no other item can fill the hold
return ( 0, "on_reserve" )
if ( $item->current_holds->count );
if ( $item->current_holds->search( { non_priority => 0 } )->count );
my $fillable_holds = Koha::Holds->search(
{