|
Lines 772-778
sub _availability {
Link Here
|
| 772 |
return ( $biblionumber, 'not available', 'Checked out', $location ); |
772 |
return ( $biblionumber, 'not available', 'Checked out', $location ); |
| 773 |
} elsif ( $item->{'itemlost'} ) { |
773 |
} elsif ( $item->{'itemlost'} ) { |
| 774 |
return ( $biblionumber, 'not available', 'Item lost', $location ); |
774 |
return ( $biblionumber, 'not available', 'Item lost', $location ); |
| 775 |
} elsif ( $item->{'wthdrawn'} ) { |
775 |
} elsif ( $item->{'withdrawn'} ) { |
| 776 |
return ( $biblionumber, 'not available', 'Item withdrawn', $location ); |
776 |
return ( $biblionumber, 'not available', 'Item withdrawn', $location ); |
| 777 |
} elsif ( $item->{'damaged'} ) { |
777 |
} elsif ( $item->{'damaged'} ) { |
| 778 |
return ( $biblionumber, 'not available', 'Item damaged', $location ); |
778 |
return ( $biblionumber, 'not available', 'Item damaged', $location ); |
| 779 |
- |
|
|