@@ -, +, @@ itemBarcodeFallbackSearch --- circ/circulation.pl | 4 +++- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) --- a/circ/circulation.pl +++ a/circ/circulation.pl @@ -329,7 +329,10 @@ if ($patron) { if (@$barcodes) { my $checkout_infos; for my $barcode ( @$barcodes ) { + my $template_params = { barcode => $barcode }; + $template_params->{onsite_checkout} = $onsite_checkout; + # always check for blockers on issuing my ( $error, $question, $alerts, $messages ) = CanBookBeIssued( $patron, @@ -412,7 +415,6 @@ if (@$barcodes) { $template_params->{getTitleMessageIteminfo} = $biblio->title; $template_params->{getBarcodeMessageIteminfo} = $item->barcode; $template_params->{NEEDSCONFIRMATION} = 1; - $template_params->{onsite_checkout} = $onsite_checkout; $template_params->{auto_renew} = $session->param('auto_renew'); $confirm_required = 1; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -459,6 +459,7 @@ + --