[Bug 38628] New: Item search filters does not work with multiple search fields
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 Bug ID: 38628 Summary: Item search filters does not work with multiple search fields Change sponsored?: --- Product: Koha Version: Main Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Searching Assignee: koha-bugs@lists.koha-community.org Reporter: johanna.raisa@koha-suomi.fi QA Contact: testopia@bugs.koha-community.org When using more than one search field, the datatable filtering does not work. The same resultset is given every time if you are trying to filter. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan.druart@gmail.com -- You are receiving this mail because: You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 --- Comment #1 from Jonathan Druart <jonathan.druart@gmail.com> --- Can you detail? Is this about the pref DefaultPatronSearchFields? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 --- Comment #2 from Jonathan Druart <jonathan.druart@gmail.com> --- Sorry, *items* not *patrons*! -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 --- Comment #3 from Johanna Räisä <johanna.raisa@koha-suomi.fi> --- If you perform a item search like "title is dog% or title is cat%", after that when you start filtering from datatables the resultset is always the same. Hope you understand from that. :) -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|enhancement |normal --- Comment #4 from Jonathan Druart <jonathan.druart@gmail.com> --- Is it a regression or it never worked? -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38628 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julian.maurice@biblibre.com --- Comment #5 from Jonathan Druart <jonathan.druart@gmail.com> --- I think it never worked. catalogue/itemsearch.pl We deal with "columns": 83 $cgi->param( 'f', @f ); 84 $cgi->param( 'q', @q ); 85 $cgi->param( 'op', @op ); 86 $cgi->param( 'c', @c ); Then: 160 my @c = $param_names{'c[]'} ? $cgi->multi_param('c[]') : $cgi->multi_param('c'); 161 my @fields = $param_names{'f[]'} ? $cgi->multi_param('f[]') : $cgi->multi_param('f'); 162 my @q = $param_names{'q[]'} ? $cgi->multi_param('q[]') : $cgi->multi_param('q'); 163 my @op = $param_names{'op[]'} ? $cgi->multi_param('op[]') : $cgi->multi_param('op'); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org