@@ -, +, @@ - Adding patron name to dialog - Styling dialog as a message rather than an alert since it's informational rather than a warning --- circ/returns.pl | 2 ++ .../intranet-tmpl/prog/en/modules/circ/returns.tt | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -277,6 +277,8 @@ if ($barcode) { $template->param( waiting_holds => $waiting_holds, holdsborrowernumber => $borrower->{'borrowernumber'}, + holdsfirstname => $borrower->{'firstname'}, + holdssurname => $borrower->{'surname'}, ); } } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -68,9 +68,9 @@ function Dopop(link) { [% IF ( waiting_holds ) %] -
-

Patron has [% waiting_holds %] hold(s) waiting for pickup.

-

Checkout holds.

+
+

[% holdsfirstname %] [% holdssurname %] has [% waiting_holds %] hold(s) waiting for pickup.

+

Check out to this patron.

[% END %] --