Lines 326-331
foreach my $biblionumber (@biblionumbers) {
Link Here
|
326 |
$template->param('nobiblio' => 1); |
326 |
$template->param('nobiblio' => 1); |
327 |
last; |
327 |
last; |
328 |
} |
328 |
} |
|
|
329 |
|
330 |
$template->param( biblio => $biblio ) if scalar @biblionumbers == 1; |
329 |
|
331 |
|
330 |
my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count(); |
332 |
my $count = Koha::Holds->search( { biblionumber => $biblionumber } )->count(); |
331 |
|
333 |
|
Lines 735-742
foreach my $biblionumber (@biblionumbers) {
Link Here
|
735 |
push @biblioloop, \%biblioloopiter; |
737 |
push @biblioloop, \%biblioloopiter; |
736 |
} |
738 |
} |
737 |
|
739 |
|
738 |
my $biblio = Koha::Biblios->find( $biblionumber ); |
|
|
739 |
|
740 |
# display infos |
740 |
# display infos |
741 |
$template->param( |
741 |
$template->param( |
742 |
reserveloop => 1, |
742 |
reserveloop => 1, |
Lines 745-751
$template->param(
Link Here
|
745 |
date => $date, |
745 |
date => $date, |
746 |
biblionumber => $biblionumber, |
746 |
biblionumber => $biblionumber, |
747 |
findborrower => $findborrower, |
747 |
findborrower => $findborrower, |
748 |
biblio => $biblio, |
|
|
749 |
holdsview => 1, |
748 |
holdsview => 1, |
750 |
C4::Search::enabled_staff_search_views, |
749 |
C4::Search::enabled_staff_search_views, |
751 |
); |
750 |
); |
752 |
- |
|
|