From e021f93d4108acce30455131c780e1cbfb1c6a3c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 15 Apr 2025 16:55:44 +0000 Subject: [PATCH] Bug 39642: Add SMS number to holds modals on return.tt To test: 0. APPLY PACTH 1. Set SMSSendDriver to test. 2. Find a patron record and add the smsalertnumber 3. Place a hold for that patron. 4. Trigger the hold when it is waiting. 5. Notice the SMS number is included in the Hold for: section of the modal. 6. Change branches so the hold will need a transfer. 7. Check it in, and notice the SMS number is again included in the Hold for: section of the modal. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt index d2b1f676784..9dd59757612 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -689,6 +689,10 @@
  • [% patron.email | html %]
  • [% END %] + [% IF ( patron.smsalertnumber ) %] +
  • [% patron.smsalertnumber | html %]
  • + [% END %] + [% IF ( patron.is_debarred ) %]
  • Patron is RESTRICTED
  • [% END %] @@ -888,6 +892,10 @@ [% END %] + [% IF ( patron.smsalertnumber ) %] +
  • [% patron.smsalertnumber | html %]
  • + [% END %] + [% UNLESS ( transfertodo) %] [% INCLUDE display_bormessagepref %] [% IF patron.primary_contact_method %] -- 2.39.5