From 575269f4a09ee8583c5968547c075ade8933f17c Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Mon, 9 Oct 2023 16:11:48 +0000 Subject: [PATCH] Bug 35015: Adjust column index in fnFilter This patch fixes the column index in the call to fnFilter following the addition of a new column to the table in bug 32341 Test plan: 1) Add some charges to a patron account 2) Pay some of these charges so that they are no longer outstanding 3) In the OPAC log in as that patron and navigate to the Charges tab in their account 4) Observe that all charges are listed, even if they have been paid and clicking the Show all transactions button has no effect even if clicked multiple times between the different filtering options 5) Apply patch 6) Refresh page and now the settled charges should be filtered out 7) Click the Show all transactions button and it should correctly update Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi (cherry picked from commit 7cf209a550260eb1dc60dd7457c8b8e197a9b5ef) Signed-off-by: Fridolin Somers (cherry picked from commit 654594a789bd292cce4942a064e4b114fac3576f) Signed-off-by: Matt Blenkinsop --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt index adf358c116..3d80b71b9d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-account.tt @@ -137,7 +137,7 @@ $( document ).ready(function() { var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 $(this).html(' '+txtInactivefilter); } - fines_table.fnFilter(filteredValue, -1, true, false); + fines_table.fnFilter(filteredValue, -2, true, false); $(this).toggleClass('filtered'); }); -- 2.39.2