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

(-)a/opac/opac-detail.pl (-3 / +2 lines)
Lines 683-689 else { Link Here
683
    while ( my $item = $items->next ) {
683
    while ( my $item = $items->next ) {
684
        my $item_info = $item->unblessed;
684
        my $item_info = $item->unblessed;
685
        $item_info->{holds_count} = $item_reserves{ $item->itemnumber };
685
        $item_info->{holds_count} = $item_reserves{ $item->itemnumber };
686
        if( $item_info->{holds_count} && $item_info->{holds_count} > 0 ){ $item_level_holds = 1; }
686
        if ( $item_info->{holds_count} && $item_info->{holds_count} > 0 ) { $item_level_holds = 1; }
687
        $item_info->{priority}    = $priority{ $item->itemnumber };
687
        $item_info->{priority}    = $priority{ $item->itemnumber };
688
688
689
        # Get opac_info from Additional contents for home and holding library
689
        # Get opac_info from Additional contents for home and holding library
Lines 725-731 else { Link Here
725
          $itemtypes->{ $itemtype->itemtype }->{translated_description};
725
          $itemtypes->{ $itemtype->itemtype }->{translated_description};
726
726
727
        $item_info->{checkout} = $item->checkout;
727
        $item_info->{checkout} = $item->checkout;
728
        if( $item_info->{checkout} && $item_info->{checkout} > 0 ){ $item_checkouts = 1; }
728
        if ( $item_info->{checkout} && $item_info->{checkout} > 0 ) { $item_checkouts = 1; }
729
729
730
        foreach my $field (
730
        foreach my $field (
731
            qw(ccode materials enumchron copynumber itemnotes location_description uri barcode itemcallnumber))
731
            qw(ccode materials enumchron copynumber itemnotes location_description uri barcode itemcallnumber))
732
- 

Return to bug 34486