From f24b213cd8199520ef199e5e9477ade831650bb2 Mon Sep 17 00:00:00 2001 From: Petro Vashchuk Date: Mon, 1 Dec 2025 16:31:44 +0200 Subject: [PATCH] Bug 41338: Hold found notice should show item's home library and where it is currently checked in This patch adds a description of item's home library and the library where the item is currently checked in at, to the hold found notice when you check in the item. Also to avoid redundancy, the home library will be shown only when destination branch is different from the home branch. To reproduce: 1. Configure three libraries, A, B and C. 2. Create an item with the home library A. 3. Check in the item at the library B. 4. Place a hold with a pickup branch C and then check thought the interface for the same library C. 5. The only information about branch related to the item will be "Transfer to: Fairfield". 6. Click ignore and cancel the transfer. 7. Apply the patch. 8. Check in the item again. 9. This time you should see the full information about home library and where the item is currently checked in at. Signed-off-by: Owen Leonard --- .../intranet-tmpl/prog/en/modules/circ/returns.tt | 12 ++++++++++++ 1 file changed, 12 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 eb71cb8dbc7..8470a972a61 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -957,6 +957,18 @@

[% t('Hold at') | html %] [% Branches.GetName( destbranch ) | html %]

[% END %] +

+ [% SET show_home = item.homebranch && item.homebranch != destbranch %] + + [% IF show_home %] + [% t('Item home library') | html %]: + [% Branches.GetName( item.homebranch ) | html %]  |  + [% END %] + + [% t('Checked in at') | html %]: + [% Branches.GetName( Branches.GetLoggedInBranchcode ) | html %] +

+ [% PROCESS passthrough_data %] -- 2.39.5