From: Paul POULAIN Date: Thu, 8 Nov 2007 19:00:25 +0000 (-0600) Subject: dealing with >=, <= and date stuff in NoZebra X-Git-Tag: v3.00.00-alpha~1005 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=3a9c0efda8457b0d59b33a603e72bdc32b412e07;hp=bb916bf84a6533a171a60aaa00b72a813b8970ae;p=koha_gimpoz dealing with >=, <= and date stuff in NoZebra - if the user search on >= or <=, fix a bug removing the < and > - if the user search on a numeric value (mainly for dates search), retrieve only numeric results Example : previously Date >=2005 returned "printed in 1976", as "printed" was > than 2005 now it don't. note that Date >=1900 returns "printed in 1976" as NZ search is a always wrdl search (and, as you know 1976 > 1900 ;-) ) Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- diff --git a/C4/Search.pm b/C4/Search.pm index 8de44b9210..907e410db8 100644 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1237,10 +1237,16 @@ sub NZanalyse { $string =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|&|\+|\*|\// /g; # warn "leaf : $string\n"; # parse the string in in operator/operand/value again - $string =~ /(.*)(=|>|>=|<|<=)(.*)/; + $string =~ /(.*)(>=|<=)(.*)/; my $left = $1; my $operator = $2; my $right = $3; + unless ($operator) { + $string =~ /(.*)(>|<|=)(.*)/; + $left = $1; + $operator = $2; + $right = $3; + } my $results; # automatic replace for short operators $left='title' if $left =~ '^ti'; @@ -1253,17 +1259,19 @@ sub NZanalyse { #do a specific search my $dbh = C4::Context->dbh; $operator='LIKE' if $operator eq '=' and $right=~ /%/; - my $sth = $dbh->prepare("SELECT biblionumbers FROM nozebra WHERE server=? AND indexname=? AND value $operator ?"); - # warn "$left / $operator / $right\n"; + my $sth = $dbh->prepare("SELECT biblionumbers,value FROM nozebra WHERE server=? AND indexname=? AND value $operator ?"); + warn "$left / $operator / $right\n"; # split each word, query the DB and build the biblionumbers result foreach (split / /,$right) { - my $biblionumbers; + my ($biblionumbers,$value); next unless $_; -# warn "EXECUTE : $server, $left, $_"; + warn "EXECUTE : $server, $left, $_"; $sth->execute($server, $left, $_); - while (my $line = $sth->fetchrow) { - $biblionumbers .= $line; -# warn "result : $line"; + while (my ($line,$value) = $sth->fetchrow) { + # if we are dealing with a numeric value, use only numeric results (in case of >=, <=, > or <) + # otherwise, fill the result + $biblionumbers .= $line unless ($right =~ /\d/ && $value =~ /\D/); + warn "result : $value ". ($right =~ /\d/) . "==".(!$value =~ /\d/) ;#= $line"; } # do a AND with existing list if there is one, otherwise, use the biblionumbers list as 1st result list if ($results) {