my %biblioloopiter = ();
my $biblio = Koha::Biblios->find( $biblionumber );
unless ($biblio) {
$biblioloopiter{noitems} = 1;
$template->param('noitems' => 1);
next;
}
my $force_hold_level;
if ( $patron ) {
-