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

(-)a/C4/SIP/ILS/Item.pm (-1 / +3 lines)
Lines 278-283 sub sip_circulation_status { Link Here
278
    elsif ( grep { $_->{itemnumber} == $self->{itemnumber}  } @{ $self->{hold_attached} } ) {
278
    elsif ( grep { $_->{itemnumber} == $self->{itemnumber}  } @{ $self->{hold_attached} } ) {
279
        return '08';    # waiting on hold shelf
279
        return '08';    # waiting on hold shelf
280
    }
280
    }
281
    elsif ( $self->{location} eq 'CART' ) {
282
        return '09';    # waiting to be re-shelved
283
    }
281
    else {
284
    else {
282
        return '03';    # available
285
        return '03';    # available
283
    }    # FIXME: 01-13 enumerated in spec.
286
    }    # FIXME: 01-13 enumerated in spec.
284
- 

Return to bug 27906