@@ -, +, @@ select for itemtype Book the policies "From local hold group" and "patron's hold group" --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2831,7 +2831,7 @@ sub CanBookBeRenewed { for my $borrowernumber (@borrowernumbers) { my $patron = $patrons{$borrowernumber} //= Koha::Patrons->find( $borrowernumber ); next unless IsAvailableForItemLevelRequest($item, $patron); - next unless CanItemBeReserved($borrowernumber,$itemnumber); + next unless CanItemBeReserved($borrowernumber,$itemnumber)->{status} eq 'OK'; push @reservable, $itemnumber; if (@reservable >= @borrowernumbers) { --