Lines 2957-2963
sub CanBookBeRenewed {
Link Here
|
2957 |
|
2957 |
|
2958 |
# There is an item level hold on this item, no other item can fill the hold |
2958 |
# There is an item level hold on this item, no other item can fill the hold |
2959 |
return ( 0, "on_reserve" ) |
2959 |
return ( 0, "on_reserve" ) |
2960 |
if ( $item->current_holds->count ); |
2960 |
if ( $item->current_holds->search( { non_priority => 0 } )->count ); |
2961 |
|
2961 |
|
2962 |
my $fillable_holds = Koha::Holds->search( |
2962 |
my $fillable_holds = Koha::Holds->search( |
2963 |
{ |
2963 |
{ |
2964 |
- |
|
|