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

(-)a/circ/circulation.pl (+1 lines)
Lines 410-415 if (@$barcodes) { Link Here
410
        }
410
        }
411
        unless($confirm_required) {
411
        unless($confirm_required) {
412
            my $issue = AddIssue( $borrower, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew') } );
412
            my $issue = AddIssue( $borrower, $barcode, $datedue, $cancelreserve, undef, undef, { onsite_checkout => $onsite_checkout, auto_renew => $session->param('auto_renew') } );
413
            $template_params->{CHECKOUT_OK} = 1;
413
            $template->param( issue => $issue );
414
            $template->param( issue => $issue );
414
            $session->clear('auto_renew');
415
            $session->clear('auto_renew');
415
            $inprocess = 1;
416
            $inprocess = 1;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-2 / +6 lines)
Lines 116-122 $(document).ready(function() { Link Here
116
              <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout_info.item.biblionumber %]&amp;type=intra"><strong>[% checkout_info.item.title |html %][% FOREACH subtitl IN checkout_info.item.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF checkout_info.item.author %], by [% checkout_info.item.author %][% END %][% IF ( checkout_info.itme.itemnotes ) %]- <span class="circ-hlt">[% checkout_info.item.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% checkout_info.item.biblionumber %]&amp;itemnumber=[% checkout_info.item.itemnumber %]#item[% checkout_info.item.itemnumber %]">[% checkout_info.item.barcode %]</a>
116
              <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% checkout_info.item.biblionumber %]&amp;type=intra"><strong>[% checkout_info.item.title |html %][% FOREACH subtitl IN checkout_info.item.subtitle %] [% subtitl.subfield %][% END %]</strong></a>[% IF checkout_info.item.author %], by [% checkout_info.item.author %][% END %][% IF ( checkout_info.itme.itemnotes ) %]- <span class="circ-hlt">[% checkout_info.item.itemnotes %]</span>[% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% checkout_info.item.biblionumber %]&amp;itemnumber=[% checkout_info.item.itemnumber %]#item[% checkout_info.item.itemnumber %]">[% checkout_info.item.barcode %]</a>
117
            </td>
117
            </td>
118
            <td>
118
            <td>
119
              [% IF checkout_info.NEEDSCONFIRMATION %]
119
              [% IF checkout_info.CHECKOUT_OK  %]
120
                <p class="info">Checkout OK</p>
121
              [% ELSE %]
120
                <p class="warn">
122
                <p class="warn">
121
                  [% IF checkout_info.AGE_RESTRICTION %]
123
                  [% IF checkout_info.AGE_RESTRICTION %]
122
                    Age restriction [% checkout_info.AGE_RESTRICTION %]
124
                    Age restriction [% checkout_info.AGE_RESTRICTION %]
Lines 179-184 $(document).ready(function() { Link Here
179
                      [% END %]
181
                      [% END %]
180
                  [% END %]
182
                  [% END %]
181
                </p>
183
                </p>
184
                <p class="info">
185
                Not checked out.
186
                </p>
182
              [% END %]
187
              [% END %]
183
188
184
189
185
- 

Return to bug 15091