Lines 281-286
sub sip_circulation_status {
Link Here
|
281 |
elsif ( $self->{location} eq 'CART' ) { |
281 |
elsif ( $self->{location} eq 'CART' ) { |
282 |
return '09'; # waiting to be re-shelved |
282 |
return '09'; # waiting to be re-shelved |
283 |
} |
283 |
} |
|
|
284 |
elsif ( $self->{notforloan} < 0 ) { |
285 |
return '02'; # on order |
286 |
} |
284 |
else { |
287 |
else { |
285 |
return '03'; # available |
288 |
return '03'; # available |
286 |
} # FIXME: 01-13 enumerated in spec. |
289 |
} # FIXME: 01-13 enumerated in spec. |
287 |
- |
|
|