Bugzilla – Attachment 87618 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.55 KB, created by
Owen Leonard
on 2019-04-09 16:10:45 UTC
(
hide
)
Description:
Bug 22626: 'Filter paid transactions' broken on Transactions tab in staff
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2019-04-09 16:10:45 UTC
Size:
1.55 KB
patch
obsolete
>From 76236e6224d3ff1cc96d3c26a0716b410f5a8d4a 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. >--- > 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 22b796e..9c97ed4 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.1.4
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