Bugzilla – Attachment 87655 Details for
Bug 22626
'Filter paid transactions' broken on Transactions tab in staff
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22626: 'Filter paid transactions' broken on Transactions tab in staff
Bug-22626-Filter-paid-transactions-broken-on-Trans.patch (text/plain), 1.60 KB, created by
Liz Rea
on 2019-04-09 17:25:40 UTC
(
hide
)
Description:
Bug 22626: 'Filter paid transactions' broken on Transactions tab in staff
Filename:
MIME Type:
Creator:
Liz Rea
Created:
2019-04-09 17:25:40 UTC
Size:
1.60 KB
patch
obsolete
>From 3348e418fcbc7bb033c83491f4b6be2a7a7c62bd Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 9 Apr 2019 16:06:27 +0000 >Subject: [PATCH] Bug 22626: 'Filter paid transactions' broken on Transactions > tab in staff > >This patch changes a parameter in the function which filters the >DataTable of transactions. The addition of more columns to the table >changed the index of the column which is being filtered. > >To test, apply the patch and locate a patron who has multiple fines or >charges, some of them paid. Go to Accounting -> Transactions. Test the >"Filter paid transactions" link. Table rows which show "0.00" in the >"Oustanding" column should be hidden. > >Signed-off-by: Liz Rea <wizzyrea@gmail.com> >--- > 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 22b796e8e7..9c97ed47bd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -141,7 +141,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, 5, true, false); >+ table_account_fines.fnFilter(filteredValue, 8, 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 22626
:
87618
|
87655
|
87665