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

(-)a/C4/SIP/ILS/Item.pm (-2 / +1 lines)
Lines 276-282 sub sip_circulation_status { Link Here
276
    elsif ( grep { $_->{itemnumber} == $self->{itemnumber}  } @{ $self->{hold_attached} } ) {
276
    elsif ( grep { $_->{itemnumber} == $self->{itemnumber}  } @{ $self->{hold_attached} } ) {
277
        return '08';    # waiting on hold shelf
277
        return '08';    # waiting on hold shelf
278
    }
278
    }
279
    elsif ( $self->{location} eq 'CART' ) {
279
    elsif ( $self->{location} and $self->{location} eq 'CART' ) {
280
        return '09';    # waiting to be re-shelved
280
        return '09';    # waiting to be re-shelved
281
    }
281
    }
282
    elsif ( $self->{damaged} ) {
282
    elsif ( $self->{damaged} ) {
283
- 

Return to bug 29936