From 4b880b0272688e9e1f1bd16b01c44fdbe8601679 Mon Sep 17 00:00:00 2001 From: Baptiste Date: Thu, 21 Nov 2024 15:51:27 +0100 Subject: [PATCH] Bug 38509 - Displayed transfer destination is incorrect when a reservation has been found TEST PLAN FOR 24.05 (transfers appear to be broken on main atm, code is still invalid on main) 1 - Place a hold for Henry Acevedo on "39999000001334" (item level), ask for a pickup at centerville 2 - At centerville, transfer the document to fairfield. There will be a pop-up giving you three choices. The first one is "transfer to centerville", which is not the behaviour of the button (the behaviour is correct, we want to perform the transfer and ignore the reservation). The last element of the pop-up is "transfer to: Centerville", which is incorrect too APPLY PATCH 3 - At centerville, transfer the document to fairfield. There will be a pop-up giving you three choices. The first one is "transfer to fairfield", which is not the behaviour or the button. The last element of the pop-up is "transfer to: Centerville". --- .../intranet-tmpl/prog/en/modules/circ/branchtransfers.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt index 7ce124d600b..ecc780ea132 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/branchtransfers.tt @@ -118,7 +118,7 @@
  • Patron's address is in doubt
  • [% END %] -

    Transfer to: [% Branches.GetName( hold.branchcode ) | html %]

    +

    Transfer to: [% Branches.GetName( tobranchcd ) | html %]

    [% END %] @@ -138,7 +138,7 @@ [% END %] [% IF ( reserved ) %] - + [% END %] -- 2.30.2