Bugzilla – Attachment 91883 Details for
Bug 23143
[18.11] Filter paid transactions not working
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23143: [18.11] Filter paid transactions not working
Bug-23143-1811-Filter-paid-transactions-not-workin.patch (text/plain), 1.50 KB, created by
Katrin Fischer
on 2019-07-30 15:52:04 UTC
(
hide
)
Description:
Bug 23143: [18.11] Filter paid transactions not working
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2019-07-30 15:52:04 UTC
Size:
1.50 KB
patch
obsolete
>From 29c1b54c320598c67e82a214d5a02c5d1b58fc87 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 29 Jul 2019 13:43:01 +0000 >Subject: [PATCH] Bug 23143: [18.11] Filter paid transactions not working > >This patch corrects the DataTables filter for hiding paid transactions >from the table of patron account transactions. The wrong column index >was specified. > >To test, apply the patch and view the "Account" tab of a patron with >multiple transactions, at least one of them paid. > >Confirm that the "Filter paid transactions" link works as expected. > >Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index 238685e589..e9680a5c55 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -133,7 +133,7 @@ > var filteredValue = '^((?!0.00).*)$'; //Filter not matching 0.00 http://stackoverflow.com/a/406408 > $(this).html('<i class="fa fa-filter"></i> '+txtInactivefilter); > } >- table_account_fines.fnFilter(filteredValue, 8, true, false); >+ table_account_fines.fnFilter(filteredValue, 5, true, false); > $(this).toggleClass('filtered'); > }); > >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 23143
:
91852
| 91883