From 445b0c77f1159515571b473e014394ee96ed53d5 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 18 Feb 2025 14:05:31 +0000 Subject: [PATCH] Bug 39099: Use select2 to select library limitations in item types, patron categories, and authorized values MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch updates some administration templates so that library selection uses a Select2-styled menu instead of a standard
  • - [% FOREACH branch IN branches_loop %] [% IF ( branch.selected ) %] @@ -207,7 +206,7 @@ [% END %] [% END %] -
    Select 'All libraries' if this authorized value must be displayed all the time. Otherwise select libraries you want to associate with this value.
    +
    Select libraries you want to associate with this value.
  • @@ -404,6 +403,7 @@ [% Asset.js("js/admin-menu.js") | $raw %] [% INCLUDE 'datatables.inc' %] [% INCLUDE 'columns_settings.inc' %] + [% INCLUDE 'select2.inc' %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt index 7ee0e9ea62..aaa35827f6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt @@ -234,12 +234,11 @@
  • - [% PROCESS options_for_libraries libraries => Branches.all( selected => category.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %] -
    Select All libraries if this category type must to be displayed all the time. Otherwise select libraries you want to associate with this value.
    +
    Select libraries you want to associate with this value.
  • @@ -868,6 +867,7 @@ [% INCLUDE 'calendar.inc' %] [% INCLUDE 'datatables.inc' %] [% INCLUDE 'columns_settings.inc' %] + [% INCLUDE 'select2.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt index a7af453041..6317ab8661 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt @@ -345,12 +345,11 @@
  • - [% PROCESS options_for_libraries libraries => Branches.all( selected => itemtype.get_library_limits, unfiltered => 1, do_not_select_my_library => 1 ) %] -
    Select 'All libraries' if all libraries use this item type. Otherwise, select the specific libraries that use this item type.
    +
    Select libraries you want to associate with this item type.
  • @@ -536,6 +535,7 @@ [% INCLUDE 'greybox.inc' %] [% INCLUDE 'datatables.inc' %] [% INCLUDE 'columns_settings.inc' %] + [% INCLUDE 'select2.inc' %] [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/js/categories.js b/koha-tmpl/intranet-tmpl/prog/js/categories.js index 786613d50e..fbaff07317 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/categories.js +++ b/koha-tmpl/intranet-tmpl/prog/js/categories.js @@ -54,9 +54,8 @@ $(document).ready(function () { table_settings ); - if ($("#branches option:selected").length < 1) { - $("#branches option:first").attr("selected", "selected"); - } + $("#library_limitation")[0].style.minWidth = "450px"; + $("#library_limitation").select2(); $("#categorycode").on("blur", function () { toUC(this); -- 2.39.5