|
Lines 303-309
if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) {
Link Here
|
| 303 |
my $biblio = $item->biblio; |
303 |
my $biblio = $item->biblio; |
| 304 |
$template->param( |
304 |
$template->param( |
| 305 |
title => $biblio->title, |
305 |
title => $biblio->title, |
| 306 |
returnbranch => $returnbranch, |
|
|
| 307 |
author => $biblio->author, |
306 |
author => $biblio->author, |
| 308 |
itembiblionumber => $biblio->biblionumber, |
307 |
itembiblionumber => $biblio->biblionumber, |
| 309 |
biblionumber => $biblio->biblionumber, |
308 |
biblionumber => $biblio->biblionumber, |
|
Lines 413-418
if ( $barcode && ( $op eq 'cud-checkin' || $op eq 'cud-affect_reserve' ) ) {
Link Here
|
| 413 |
); |
412 |
); |
| 414 |
} |
413 |
} |
| 415 |
|
414 |
|
|
|
415 |
$returnbranch = $messages->{NeedsTransfer} if $messages->{NeedsTransfer}; |
| 416 |
|
| 416 |
# Mark missing bundle items as lost and report unexpected items |
417 |
# Mark missing bundle items as lost and report unexpected items |
| 417 |
if ( $item |
418 |
if ( $item |
| 418 |
&& $item->is_bundle |
419 |
&& $item->is_bundle |
|
Lines 509-514
my $recalled = 0;
Link Here
|
| 509 |
# new op dev : we check if the document must be returned to his homebranch directly, |
510 |
# new op dev : we check if the document must be returned to his homebranch directly, |
| 510 |
# if the document is transferred, we have warning message . |
511 |
# if the document is transferred, we have warning message . |
| 511 |
|
512 |
|
|
|
513 |
if ( $messages->{'LibraryFloatLimitTransferRequest'} ) { |
| 514 |
$template->param( |
| 515 |
LibraryFloatLimitTransferRequest => 1, |
| 516 |
itemnumber => $itemnumber, |
| 517 |
); |
| 518 |
} |
| 519 |
|
| 512 |
if ( $messages->{'WasTransfered'} ) { |
520 |
if ( $messages->{'WasTransfered'} ) { |
| 513 |
$template->param( |
521 |
$template->param( |
| 514 |
found => 1, |
522 |
found => 1, |
|
Lines 732-737
foreach my $code ( keys %$messages ) {
Link Here
|
| 732 |
; |
740 |
; |
| 733 |
} elsif ( $code eq 'TransferredRecall' ) { |
741 |
} elsif ( $code eq 'TransferredRecall' ) { |
| 734 |
; |
742 |
; |
|
|
743 |
} elsif ( $code eq 'LibraryFloatLimitTransferRequest' ) { |
| 744 |
; |
| 735 |
} elsif ( $code eq 'InBundle' ) { |
745 |
} elsif ( $code eq 'InBundle' ) { |
| 736 |
$template->param( InBundle => $messages->{InBundle} ); |
746 |
$template->param( InBundle => $messages->{InBundle} ); |
| 737 |
} else { |
747 |
} else { |
|
Lines 808-814
if ($barcode) {
Link Here
|
| 808 |
} |
818 |
} |
| 809 |
} |
819 |
} |
| 810 |
|
820 |
|
| 811 |
$template->param( itemnumber => $itemnumber ); |
821 |
$template->param( |
|
|
822 |
itemnumber => $itemnumber, |
| 823 |
returnbranch => $returnbranch, |
| 824 |
); |
| 812 |
|
825 |
|
| 813 |
# Checking if there is a Fast Cataloging Framework |
826 |
# Checking if there is a Fast Cataloging Framework |
| 814 |
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA'); |
827 |
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find('FA'); |