From 71d49ad39ef50717ec597a6fc6fa2a747ede1ed3 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 24 Mar 2025 15:19:45 +0000 Subject: [PATCH] Bug 39533: Use select2 to select item types and libraries in biblio export This patch updates the bibliographic export page so that item type and library export use Select2 form fields. This change has the added benefit of enabling the removal of a single-use include, branch-selector.inc. The patch also adds some JavaScript to make sure the "CSV profile" field appears on page load if CSV is selected as the file format. This is helpful if the user has reloaded the page or arrived at the page by using the browser back button. To test, apply the patch and go to Cataloging -> Export catalog data. - Under the "Export bibliographic records" tab you should see two Select2-style form field under the "Select records to export" heading, "Item type" and "Home library." - Confirm that the fields work correctly when adding one or more selections to each. - Confirm that the selections work correctly to filter the export. I recommend using CSV as the file format for the export. A MARC export CSV profile (Tools -> CSV profiles -> New CSV profile) containing these fields will show the relevant information: Title=245$a\|Library=952$a\|Itemtype=952$y - When you select CSV as the file format the "CSV profile" dropdown menu should appear. If you choose a different format, that dropdown should disappear. - With CSV selected as the file format, reload the page. The "CSV profile" field should still be visible. Sponsored-by: Athens County Public Libraries --- .../intranet-tmpl/prog/css/itemsearchform.css | 4 - koha-tmpl/intranet-tmpl/prog/css/select2.css | 11 +++ .../prog/en/includes/branch-selector.inc | 24 ------ .../prog/en/modules/tools/export.tt | 85 +++++++++++-------- 4 files changed, 61 insertions(+), 63 deletions(-) delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc diff --git a/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css b/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css index 158be490a7d..c93f7fa9651 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css +++ b/koha-tmpl/intranet-tmpl/prog/css/itemsearchform.css @@ -67,7 +67,3 @@ input[type="text"] { padding-left: 1.5em; } -.select2.select2-container.select2-container--default { - flex-grow: 1; - max-width: 60%; -} diff --git a/koha-tmpl/intranet-tmpl/prog/css/select2.css b/koha-tmpl/intranet-tmpl/prog/css/select2.css index 8046026ea50..59dc6a9aefa 100644 --- a/koha-tmpl/intranet-tmpl/prog/css/select2.css +++ b/koha-tmpl/intranet-tmpl/prog/css/select2.css @@ -44,3 +44,14 @@ .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { margin-right: 3px; } + + +.select2.select2-container.select2-container--default { + flex-grow: 1; + max-width: 60%; +} + +fieldset.rows .select2 li { + clear: none; + width: unset; +} diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc deleted file mode 100644 index 3f703966d5b..00000000000 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/branch-selector.inc +++ /dev/null @@ -1,24 +0,0 @@ -[%# To select all include with selectall = 1 %] -
-

Select all | Clear all

- [% SET branches_for_loop = branches.hash(1).keys.nsort || [] %][%# Do not modify the original variable 'branches' %] - [% WHILE branches_for_loop.size > 0 %] -
- [% FOREACH i IN branches_for_loop.splice(0, 4) %] - [% i = i - 1 %] - [% SET branch = branches.$i %] -
- [% IF branch.selected || (selectall == 1) %] - - [% ELSE %] - - [% END %] - - -
- [% END %] -
- [% END %] -
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt index db9dbb63932..10afc5c9be6 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt @@ -13,8 +13,8 @@ > [% INCLUDE 'doc-head-close.inc' %] @@ -84,7 +84,6 @@
  • + [% PROCESS options_for_libraries libraries => Branches.all( selected => branch_limit, unfiltered => 1, do_not_select_my_library => 1 ) %] +
  • + -
    - Call number range -
      -
    1. - - -
    2. -
    3. - - -
    4. -
    -
    +
    + Call number range +
      +
    1. + + +
    2. +
    3. + + +
    4. +
    +
    -
    - Accession date (inclusive) -
      -
    1. - - -
    2. -
    3. - - -
    4. -
    -
    +
    + Accession date (inclusive) +
      +
    1. + + +
    2. +
    3. + + +
    4. +
    @@ -327,16 +328,23 @@ [% MACRO jsinclude BLOCK %] [% INCLUDE 'calendar.inc' %] + [% INCLUDE 'select2.inc' %] [% END %] -- 2.39.5