]> git.koha-community.org Git - koha.git/commit
Bug 30164: Fix datatable wrapper when no filter passed
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 23 Feb 2022 14:21:04 +0000 (15:21 +0100)
committerKyle Hall <kyle@bywatersolutions.com>
Fri, 4 Mar 2022 13:22:06 +0000 (08:22 -0500)
commit43dd25e2aa2298bea2a60cacaa8c465cf5f7678c
tree75f33f42d3e2502404baad0b0217534c1fb880f7
parent8ff018c3867d35a426339343f66debdae80e1146
Bug 30164: Fix datatable wrapper when no filter passed

This problem appears (at least) on the cities list view:
If you pass a filter in the "Search cities" filter in the header, it
won't be taken into account and all the cities will be displayed.

There are two problems. First we are passing an "empty" q=[] in the
body, the filter from the header is passed as URL parameters. We should
not need to pass the q if it's empty.
Then the main problem is coming from a bug in
Koha::REST::Plugin::Query but I didn't manage to track it down. If we
have two 2 passed, only the second one will be used. We are certainly
using a hash somewhere we should not.

This patch is fixing the bug but not on the correct side. A follow-up
bug should take care of the main problem at lower level.

Test plan:
Hit /admin/cities.pl
Create some cities
Use the filter in the header of the page and submit
=> Without this patch all cities are retrieved
=> With this patch applied only the relevant cities are displayed.

Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/js/datatables.js