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

(-)a/C4/ILSDI/Services.pm (-2 / +1 lines)
Lines 784-790 sub _availability { Link Here
784
        return ( $biblionumber, 'not available', 'Checked out', $location );
784
        return ( $biblionumber, 'not available', 'Checked out', $location );
785
    } elsif ( $item->{'itemlost'} ) {
785
    } elsif ( $item->{'itemlost'} ) {
786
        return ( $biblionumber, 'not available', 'Item lost', $location );
786
        return ( $biblionumber, 'not available', 'Item lost', $location );
787
    } elsif ( $item->{'wthdrawn'} ) {
787
    } elsif ( $item->{'withdrawn'} ) {
788
        return ( $biblionumber, 'not available', 'Item withdrawn', $location );
788
        return ( $biblionumber, 'not available', 'Item withdrawn', $location );
789
    } elsif ( $item->{'damaged'} ) {
789
    } elsif ( $item->{'damaged'} ) {
790
        return ( $biblionumber, 'not available', 'Item damaged', $location );
790
        return ( $biblionumber, 'not available', 'Item damaged', $location );
791
- 

Return to bug 12871