View | Details | Raw Unified | Return to bug 32878
Collapse All | Expand All

(-)file_not_specified_in_diff (-1 lines)
Line  Link Here
active item level hold
active item level hold
Line 73 Link Here
73
--
74
C4/Circulation.pm | 4 ++++
3
C4/Circulation.pm | 4 ++++
75
1 file changed, 4 insertions(+)
4
1 file changed, 4 insertions(+)
(-)a/C4/Circulation.pm (-1 / +4 lines)
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
- 

Return to bug 32878