From 8aaae74fd383546b96e9345c1467524629f262f0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 3 Dec 2024 19:00:42 +0000 Subject: [PATCH] Bug 37094: Improve layout of serial claims page This patch updates the serial claims interface to hopefully make it more usable: - Vendor selection and filter issues forms are in the sidebar - The "Download selected" and "Send notification" forms are now in their own columns at the bottom of the table of issues. - NEW: The "Download selected" and "Send notification" forms are disabled unless one or more issues are selected. To test you'll need more than one vendor with subscriptions that have late issues. - Go to Serials -> Claims. - You should see a "Choose vendor" form in the main part of the page. - Choose a vendor. - After selecting a vendor you should see the vendor selection form in the sidebar along with a "Filter missing issues" form. - Confirm that both forms work correctly. - In the main body of the page you should see the table of missing issues. ** Previously this table was sorted by default on the checkbox column. Since that doesn't make sense I moved the default sort to the "Since" column. - Below the table of issues should should see the "Download selected" form. If you have a claim notice defined, you'll also see a "Send notification" form, each in their own column. - These forms should initially be disabled. - When you check a checkbox or click the "Select all" control at the top of the checkbox column the forms should become active. - Confirm that both forms work correctly. Sponsored-by: Athens County Public Libraries Signed-off-by: David Nind --- .../prog/en/includes/serials-filters.inc | 29 ++++ .../prog/en/includes/serials-menu.inc | 1 + .../prog/en/modules/serials/claims.tt | 153 +++++++++++------- 3 files changed, 122 insertions(+), 61 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/serials-filters.inc diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-filters.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-filters.inc new file mode 100644 index 00000000000..aa17e093cc8 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-filters.inc @@ -0,0 +1,29 @@ +[% IF letters %] + [% IF ( missingissues && supplierid ) %] + [% PROCESS select_vendor context => "sidebar" %] + [% END %] +[% END %] + +[% IF ( missingissues ) %] +
+
+

Filter missing issues

+ Filter missing issues +
    +
  1. + + +
  2. +
  3. + + + [% INCLUDE 'date-format.inc' %] +
  4. +
+
+
+ + +
+
+[% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc index 0fb23fdb8cd..53cb2e5414a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-menu.inc @@ -1,4 +1,5 @@ + + [% END # /missingissues %] [% END %] +[% BLOCK select_vendor %] +
+ [% IF ( context == "main") %] + [% SET form_class = "rows" %] + [% ELSE %] + [% SET form_class = "brief" %] + [% END %] +
+

Choose vendor

+ + +
+
+ +
+
+ +[% END %] + [% MACRO jsinclude BLOCK %] [% INCLUDE 'calendar.inc' %] [% INCLUDE 'datatables.inc' %]