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

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

Return to bug 27906