From 62e3c9f85c5c61f19b1044ecb82c856561bfb119 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Jan 2026 10:09:11 +0100 Subject: [PATCH] Bug 41047: Sort libraries by description instead of code On the holdings tables the libraries are sorted by code, we should sort them by description. Signed-off-by: Owen Leonard Signed-off-by: Lucas Gass --- .../includes/html_helpers/tables/items/catalogue_detail.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc index 12ef030734e..9ffce4036bd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/html_helpers/tables/items/catalogue_detail.inc @@ -429,7 +429,7 @@ }, [% END %] { - data: "me.holding_library_id", + data: "holding_library.name:me.holding_library_id", datatype: "coded_value:library", dataFilter: "libraries", className: "location", @@ -440,7 +440,7 @@ } }, { - data: "me.home_library_id", + data: "home_library.name:me.home_library_id", datatype: "coded_value:library", dataFilter: "libraries", className: "homebranch", -- 2.39.5