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