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

(-)a/opac/opac-reserve.pl (-2 / +1 lines)
Lines 460-466 foreach my $biblioNum (@biblionumbers) { Link Here
460
        }
460
        }
461
    }
461
    }
462
462
463
    my @notforloan_avs = Koha::AuthorisedValues->search_by_koha_field({ kohafield => 'items.notforloan', frameworkcode => $frameworkcode });
463
    my @notforloan_avs = Koha::AuthorisedValues->search_by_koha_field({ kohafield => 'items.notforloan', frameworkcode => $frameworkcode })->as_list;
464
    my $notforloan_label_of = { map { $_->authorised_value => $_->opac_description } @notforloan_avs };
464
    my $notforloan_label_of = { map { $_->authorised_value => $_->opac_description } @notforloan_avs };
465
465
466
    my $visible_items = { map { $_->itemnumber => $_ } $biblio->items->filter_by_visible_in_opac( { patron => $patron } )->as_list };
466
    my $visible_items = { map { $_->itemnumber => $_ } $biblio->items->filter_by_visible_in_opac( { patron => $patron } )->as_list };
467
- 

Return to bug 30089