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

(-)a/C4/ILSDI/Services.pm (-2 / +1 lines)
Lines 970-976 sub _availability { Link Here
970
    my $location = $library ? $library->branchname : '';
970
    my $location = $library ? $library->branchname : '';
971
    my $itemcallnumber = $item->itemcallnumber;
971
    my $itemcallnumber = $item->itemcallnumber;
972
972
973
    if ( $item->effective_notforloan ) {
973
    if ( $item->effective_not_for_loan_status ) {
974
        return ( $biblionumber, __('not available'), __('Not for loan'), $location, $itemcallnumber );
974
        return ( $biblionumber, __('not available'), __('Not for loan'), $location, $itemcallnumber );
975
    } elsif ( $item->onloan ) {
975
    } elsif ( $item->onloan ) {
976
        return ( $biblionumber, __('not available'), __('Checked out'), $location, $itemcallnumber );
976
        return ( $biblionumber, __('not available'), __('Checked out'), $location, $itemcallnumber );
977
- 

Return to bug 28762