Fix for rank being set to zero if a specific item is selected
[koha.git] / circ / ysearch.pl
1 #!/usr/bin/perl
2
3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
4
5 # Copyright 2007 Tamil s.a.r.l.
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 =head1 ysearch.pl
23
24
25 =cut
26
27 use strict;
28 use CGI;
29 use C4::Context;
30
31 my $input   = new CGI;
32 my $query   = $input->param('query');
33
34 # FIXME: charset should be UTF-8 but borrowers table is still ISO-8859-1
35 print $input->header(-type => 'text/plain', -charset => 'ISO-8859-1');
36
37 my $dbh = C4::Context->dbh;
38 my $query = "SELECT surname, firstname, cardnumber, address, city, zipcode ".
39             "FROM borrowers " .
40             "WHERE surname LIKE '". $query . "%' " .
41             "OR firstname LIKE '" . $query . "%' " .
42             #"OR cardnumber LIKE '" . $query . "%' " .
43             "ORDER BY surname, firstname ";
44 my $sth = $dbh->prepare( $query );
45 $sth->execute();
46 while ( my $rec = $sth->fetchrow_hashref ) {
47     print $rec->{surname} . ", " . $rec->{firstname} . "\t" .
48           $rec->{cardnumber} . "\t" .
49           $rec->{address} . "\t" .
50           $rec->{city} . "\t" .
51           $rec->{zip} .
52           "\n";
53 }