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