@@ -, +, @@ IsAvailableForItemLevelRequest --- C4/Circulation.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2678,7 +2678,9 @@ sub CanBookBeRenewed { my @reservable; foreach my $b (@borrowernumbers) { foreach my $i (@itemnumbers) { - if ( CanItemBeReserved( $b, $i ) ) { + if ( IsAvailableForItemLevelRequest($i) + && CanItemBeReserved( $b, $i ) ) + { push( @reservable, $i ); } } --