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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/results.tt (-1 / +2 lines)
Lines 442-448 Link Here
442
                                <span class="noholdstext">No holds allowed</span>
442
                                <span class="noholdstext">No holds allowed</span>
443
                            [% ELSE %]
443
                            [% ELSE %]
444
                                [% IF CAN_user_reserveforothers_place_holds %]
444
                                [% IF CAN_user_reserveforothers_place_holds %]
445
                                    <a id="reserve_[% SEARCH_RESULT.biblionumber | html %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% SEARCH_RESULT.biblionumber | html %]">Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %])</a>
445
                                    <a id="reserve_[% SEARCH_RESULT.biblionumber | html %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]">Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %])</a>
446
                                    [% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]&amp;findborrower=[% holdfor_cardnumber | uri %]">Place hold for [% holdfor_firstname | html %] [% holdfor_surname | html %] ([% holdfor_cardnumber | html %])</a></span>[% END %]
446
                                    [% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% SEARCH_RESULT.biblionumber | uri %]&amp;findborrower=[% holdfor_cardnumber | uri %]">Place hold for [% holdfor_firstname | html %] [% holdfor_surname | html %] ([% holdfor_cardnumber | html %])</a></span>[% END %]
447
                                [% ELSE %]
447
                                [% ELSE %]
448
                                    Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %])
448
                                    Holds ([% Biblio.HoldsCount( SEARCH_RESULT.biblionumber ) | html %])
Lines 855-860 Link Here
855
            if (badBibs) {
855
            if (badBibs) {
856
                return false;
856
                return false;
857
            }
857
            }
858
            console.log(bibs);
858
            $("#hold_form_biblios").val(bibs);
859
            $("#hold_form_biblios").val(bibs);
859
            $("#hold_form").submit();
860
            $("#hold_form").submit();
860
            return false;
861
            return false;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +1 lines)
Lines 532-538 Link Here
532
                    [% IF ( biblioloo.reserveloop ) %]
532
                    [% IF ( biblioloo.reserveloop ) %]
533
                        [% IF ( multi_hold ) %]
533
                        [% IF ( multi_hold ) %]
534
                            <h3>
534
                            <h3>
535
                                <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]">
535
                                <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblioloo.biblionumber %]">
536
                                    [% biblioloo.title | html %]
536
                                    [% biblioloo.title | html %]
537
                                </a>
537
                                </a>
538
                            </h3>
538
                            </h3>
539
- 

Return to bug 19469