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

(-)a/circ/returns.pl (+2 lines)
Lines 277-282 if ($barcode) { Link Here
277
                $template->param(
277
                $template->param(
278
                    waiting_holds       => $waiting_holds,
278
                    waiting_holds       => $waiting_holds,
279
                    holdsborrowernumber => $borrower->{'borrowernumber'},
279
                    holdsborrowernumber => $borrower->{'borrowernumber'},
280
                    holdsfirstname => $borrower->{'firstname'},
281
                    holdssurname => $borrower->{'surname'},
280
                );
282
                );
281
            }
283
            }
282
        }
284
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-4 / +3 lines)
Lines 68-76 function Dopop(link) { Link Here
68
68
69
<!-- Patron has waiting holds -->
69
<!-- Patron has waiting holds -->
70
[% IF ( waiting_holds ) %]
70
[% IF ( waiting_holds ) %]
71
    <div class="dialog alert">
71
    <div class="dialog message">
72
        <h3>Patron has [% waiting_holds %] hold(s) waiting for pickup.</h3>
72
        <h3>[% holdsfirstname %] [% holdssurname %] has [% waiting_holds %] hold(s) waiting for pickup.</h3>
73
        <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% holdsborrowernumber %]">Checkout holds</a>.</p>
73
        <p><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% holdsborrowernumber %]">Check out to this patron</a>.</p>
74
    </div>
74
    </div>
75
[% END %]
75
[% END %]
76
76
77
- 

Return to bug 5922