|
Lines 277-282
if ($barcode) {
Link Here
|
| 277 |
my $hbr = GetBranchItemRule($biblio->{'homebranch'}, $itemtype->itemtype)->{'returnbranch'} || "homebranch"; |
277 |
my $hbr = GetBranchItemRule($biblio->{'homebranch'}, $itemtype->itemtype)->{'returnbranch'} || "homebranch"; |
| 278 |
my $returnbranch = $biblio->{$hbr} ; |
278 |
my $returnbranch = $biblio->{$hbr} ; |
| 279 |
|
279 |
|
|
|
280 |
my $materials = $biblio->{'materials'}; |
| 281 |
my $avcode = GetAuthValCode('items.materials'); |
| 282 |
if ($avcode) { |
| 283 |
$materials = GetKohaAuthorisedValueLib($avcode, $materials); |
| 284 |
} |
| 285 |
|
| 280 |
$template->param( |
286 |
$template->param( |
| 281 |
title => $biblio->{'title'}, |
287 |
title => $biblio->{'title'}, |
| 282 |
homebranch => $biblio->{'homebranch'}, |
288 |
homebranch => $biblio->{'homebranch'}, |
|
Lines 289-295
if ($barcode) {
Link Here
|
| 289 |
itembiblionumber => $biblio->{'biblionumber'}, |
295 |
itembiblionumber => $biblio->{'biblionumber'}, |
| 290 |
biblionumber => $biblio->{'biblionumber'}, |
296 |
biblionumber => $biblio->{'biblionumber'}, |
| 291 |
borrower => $borrower, |
297 |
borrower => $borrower, |
| 292 |
additional_materials => $biblio->{'materials'}, |
298 |
additional_materials => $materials, |
| 293 |
); |
299 |
); |
| 294 |
|
300 |
|
| 295 |
my %input = ( |
301 |
my %input = ( |
| 296 |
- |
|
|