From 0e053e900110c32418a7eae18cc874d25f8db921 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 May 2025 15:49:56 +0200 Subject: [PATCH] Bug 39814: Restore filtering to the serials search table Similar to bug 39775, but for the serials search. Test plan: Create some serials then go to http://localhost:8081/cgi-bin/koha/serials/serials-search.pl and confirm that the filters now appear at the top of the table (which is consistent with the other tables) and that they work correctly. --- .../prog/en/modules/serials/serials-search.tt | 24 ++----------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt index ea6aa2ec6a1..1ad0ab6fef5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt @@ -200,26 +200,6 @@ [% END # /UNLESS subscription.cannotdisplay %] [% END # /FOREACH subscription %] - - - - - - - - - - [% SET column_num = 6 %] - [% UNLESS closed %] - - [% SET column_num = column_num + 1 %] - [% END %] - [% FOR field IN additional_fields_for_subscription %] - - [% END %] - - - [% END # /BLOCK subscriptions_table %] @@ -337,13 +317,13 @@ var osrlt = $("#opened_panel table").kohaTable({ pagingType: "full", order: [[2, "asc"]], - }); + }, null, true); var csrlt = $("#closed_panel table").kohaTable({ // FIXME sort function of additional_fields! order: [[2, "asc"]], pagingType: "full", - }); + }, null, true); var manarlt = $("#mana_results_datatable").kohaTable({ pagingType: "full", -- 2.34.1