|
Lines 329-335
if ($patron) {
Link Here
|
| 329 |
if (@$barcodes) { |
329 |
if (@$barcodes) { |
| 330 |
my $checkout_infos; |
330 |
my $checkout_infos; |
| 331 |
for my $barcode ( @$barcodes ) { |
331 |
for my $barcode ( @$barcodes ) { |
|
|
332 |
|
| 332 |
my $template_params = { barcode => $barcode }; |
333 |
my $template_params = { barcode => $barcode }; |
|
|
334 |
$template_params->{onsite_checkout} = $onsite_checkout; |
| 335 |
|
| 333 |
# always check for blockers on issuing |
336 |
# always check for blockers on issuing |
| 334 |
my ( $error, $question, $alerts, $messages ) = CanBookBeIssued( |
337 |
my ( $error, $question, $alerts, $messages ) = CanBookBeIssued( |
| 335 |
$patron, |
338 |
$patron, |
|
Lines 412-418
if (@$barcodes) {
Link Here
|
| 412 |
$template_params->{getTitleMessageIteminfo} = $biblio->title; |
415 |
$template_params->{getTitleMessageIteminfo} = $biblio->title; |
| 413 |
$template_params->{getBarcodeMessageIteminfo} = $item->barcode; |
416 |
$template_params->{getBarcodeMessageIteminfo} = $item->barcode; |
| 414 |
$template_params->{NEEDSCONFIRMATION} = 1; |
417 |
$template_params->{NEEDSCONFIRMATION} = 1; |
| 415 |
$template_params->{onsite_checkout} = $onsite_checkout; |
|
|
| 416 |
$template_params->{auto_renew} = $session->param('auto_renew'); |
418 |
$template_params->{auto_renew} = $session->param('auto_renew'); |
| 417 |
$confirm_required = 1; |
419 |
$confirm_required = 1; |
| 418 |
} |
420 |
} |