|
Lines 332-338
if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) {
Link Here
|
| 332 |
my $biblio = $item->biblio; |
332 |
my $biblio = $item->biblio; |
| 333 |
$template->param( |
333 |
$template->param( |
| 334 |
title => $biblio->title, |
334 |
title => $biblio->title, |
| 335 |
returnbranch => $returnbranch, |
|
|
| 336 |
author => $biblio->author, |
335 |
author => $biblio->author, |
| 337 |
itembiblionumber => $biblio->biblionumber, |
336 |
itembiblionumber => $biblio->biblionumber, |
| 338 |
biblionumber => $biblio->biblionumber, |
337 |
biblionumber => $biblio->biblionumber, |
|
Lines 457-462
if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) {
Link Here
|
| 457 |
); |
456 |
); |
| 458 |
} |
457 |
} |
| 459 |
|
458 |
|
|
|
459 |
$returnbranch = $messages->{NeedsTransfer} if $messages->{NeedsTransfer}; |
| 460 |
|
| 460 |
# Mark missing bundle items as lost and report unexpected items |
461 |
# Mark missing bundle items as lost and report unexpected items |
| 461 |
if ( $item |
462 |
if ( $item |
| 462 |
&& $item->is_bundle |
463 |
&& $item->is_bundle |
|
Lines 553-558
my $recalled = 0;
Link Here
|
| 553 |
# new op dev : we check if the document must be returned to his homebranch directly, |
554 |
# new op dev : we check if the document must be returned to his homebranch directly, |
| 554 |
# if the document is transferred, we have warning message . |
555 |
# if the document is transferred, we have warning message . |
| 555 |
|
556 |
|
|
|
557 |
if ( $messages->{'LibraryFloatLimitTransferRequest'} ) { |
| 558 |
$template->param( |
| 559 |
LibraryFloatLimitTransferRequest => 1, |
| 560 |
itemnumber => $itemnumber, |
| 561 |
); |
| 562 |
} |
| 563 |
|
| 556 |
if ( $messages->{'WasTransfered'} ) { |
564 |
if ( $messages->{'WasTransfered'} ) { |
| 557 |
$template->param( |
565 |
$template->param( |
| 558 |
found => 1, |
566 |
found => 1, |
|
Lines 776-781
foreach my $code ( keys %$messages ) {
Link Here
|
| 776 |
; |
784 |
; |
| 777 |
} elsif ( $code eq 'TransferredRecall' ) { |
785 |
} elsif ( $code eq 'TransferredRecall' ) { |
| 778 |
; |
786 |
; |
|
|
787 |
} elsif ( $code eq 'LibraryFloatLimitTransferRequest' ) { |
| 788 |
; |
| 779 |
} elsif ( $code eq 'InBundle' ) { |
789 |
} elsif ( $code eq 'InBundle' ) { |
| 780 |
$template->param( InBundle => $messages->{InBundle} ); |
790 |
$template->param( InBundle => $messages->{InBundle} ); |
| 781 |
} else { |
791 |
} else { |
|
Lines 890-896
if ($barcode) {
Link Here
|
| 890 |
} |
900 |
} |
| 891 |
} |
901 |
} |
| 892 |
|
902 |
|
| 893 |
$template->param( itemnumber => $itemnumber ); |
903 |
$template->param( |
|
|
904 |
itemnumber => $itemnumber, |
| 905 |
returnbranch => $returnbranch, |
| 906 |
); |
| 894 |
|
907 |
|
| 895 |
# Checking if there is a Fast Cataloging Framework |
908 |
# Checking if there is a Fast Cataloging Framework |
| 896 |
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA'); |
909 |
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA'); |