From 470caadde6a3e0813eaf4d002a33e062a1b3906f 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.
  • @@ -403,6 +402,7 @@ [% MACRO jsinclude BLOCK %] [% Asset.js("js/admin-menu.js") | $raw %] [% INCLUDE 'datatables.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 74557724486..040c899fe5e 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.
  • @@ -867,6 +866,7 @@ [% Asset.js("lib/jquery/plugins/multiple-select/multiple-select.min.js") | $raw %] [% INCLUDE 'calendar.inc' %] [% INCLUDE 'datatables.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 15550f97b2e..1ba58e03b25 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.
  • @@ -535,6 +534,7 @@ [% Asset.js("js/admin-menu.js") | $raw %] [% INCLUDE 'greybox.inc' %] [% INCLUDE 'datatables.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 be4fc5923e1..f65a390e203 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/categories.js +++ b/koha-tmpl/intranet-tmpl/prog/js/categories.js @@ -53,9 +53,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