View | Details | Raw Unified | Return to bug 23158
Collapse All | Expand All

(-)a/circ/circulation.pl (-1 / +3 lines)
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
            }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-1 / +1 lines)
Lines 459-464 Link Here
459
                                                                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
459
                                                                    <input type="hidden" name="stickyduedate" value="[% stickyduedate | html %]" />
460
                                                                    <input type="hidden" name="branch" value="[% branch | html %]" />
460
                                                                    <input type="hidden" name="branch" value="[% branch | html %]" />
461
                                                                    <input type="hidden" name="barcode" value="[% book.barcode | html %]" />
461
                                                                    <input type="hidden" name="barcode" value="[% book.barcode | html %]" />
462
                                                                    <input type="hidden" name="onsite_checkout" value="[% onsite_checkout | html %]" />
462
                                                                    <button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button>
463
                                                                    <button class="btn btn-default btn-xs" type="submit" name="x"><i class="fa fa-check"></i> Check out</button>
463
                                                                </form>
464
                                                                </form>
464
                                                            </td>
465
                                                            </td>
465
- 

Return to bug 23158