|
Lines 136-142
$template->param( branch => $branch );
Link Here
|
| 136 |
# |
136 |
# |
| 137 |
|
137 |
|
| 138 |
my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record. |
138 |
my %biblioDataHash; # Hash of biblionumber to biblio/biblioitems record. |
| 139 |
my %itemInfoHash; # Hash of itemnumber to item info. |
|
|
| 140 |
foreach my $biblioNumber (@biblionumbers) { |
139 |
foreach my $biblioNumber (@biblionumbers) { |
| 141 |
|
140 |
|
| 142 |
my $biblioData = GetBiblioData($biblioNumber); |
141 |
my $biblioData = GetBiblioData($biblioNumber); |
|
Lines 154-162
foreach my $biblioNumber (@biblionumbers) {
Link Here
|
| 154 |
} |
153 |
} |
| 155 |
|
154 |
|
| 156 |
$biblioData->{itemInfos} = \@itemInfos; |
155 |
$biblioData->{itemInfos} = \@itemInfos; |
| 157 |
foreach my $itemInfo (@itemInfos) { |
|
|
| 158 |
$itemInfoHash{$itemInfo->{itemnumber}} = $itemInfo; |
| 159 |
} |
| 160 |
|
156 |
|
| 161 |
# Compute the priority rank. |
157 |
# Compute the priority rank. |
| 162 |
my $biblio = Koha::Biblios->find( $biblioNumber ); |
158 |
my $biblio = Koha::Biblios->find( $biblioNumber ); |
| 163 |
- |
|
|