Bugzilla – Attachment 38694 Details for
Bug 14038
SQLHelper replacement - C4::Members::Search - nl-search.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 14038: Make nl-search.pl not using C4::Members::Search
PASSED-QA-Bug-14038-Make-nl-searchpl-not-using-C4M.patch (text/plain), 1.83 KB, created by
Katrin Fischer
on 2015-04-29 20:45:19 UTC
(
hide
)
Description:
[PASSED QA] Bug 14038: Make nl-search.pl not using C4::Members::Search
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2015-04-29 20:45:19 UTC
Size:
1.83 KB
patch
obsolete
>From 4d5d7292d9eaf194c706e1706cd62150117abc2b Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 22 Apr 2015 10:19:33 +0200 >Subject: [PATCH] [PASSED QA] Bug 14038: Make nl-search.pl not using > C4::Members::Search > >To get rid of SQLHelper, we should not use this C4::Members::Search anymore. > >Test plan for Magnus :) >0/ Enable the pref you need to use the Norwegian national library card ft >1/ Go on the members/nl-search.pl page and search for patrons. >2/ Make sure you search by card number and by "social security number" > >Signed-off-by: Magnus Enger <magnus@enger.priv.no> >Searching works the same with and without the patch. Thanks Jonathan! > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > members/nl-search.pl | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > >diff --git a/members/nl-search.pl b/members/nl-search.pl >index 384b1fe..08f3a04 100755 >--- a/members/nl-search.pl >+++ b/members/nl-search.pl >@@ -42,6 +42,7 @@ use C4::Context; > use C4::Output; > use C4::Members; > use C4::Members::Attributes qw( SetBorrowerAttributes ); >+use C4::Utils::DataTables::Members; > use Koha::NorwegianPatronDB qw( NLCheckSysprefs NLSearch NLDecodePin NLGetFirstname NLGetSurname NLSync ); > use Koha::Database; > use Koha::DateUtils; >@@ -77,7 +78,12 @@ if ( $op && $op eq 'search' ) { > my $identifier = $cgi->param('q'); > if ( $identifier ) { > # Local search >- my $local_results = Search( $identifier ); >+ my $local_results = C4::Utils::DataTables::Members::search( >+ { >+ searchmember => $identifier, >+ dt_params => { iDisplayLength => -1 }, >+ } >+ )->{patrons}; > $template->param( 'local_result' => $local_results ); > # Search NL, unless we got at least one hit and further searching is > # disabled >-- >1.9.1
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 14038
:
38306
|
38665
| 38694