Bug 2341: items marked 'on order' not reserveable from search results
[koha.git] / circ / ysearch.pl
blobf8fc52a88572a536415601df1e48d80075b60967
1 #!/usr/bin/perl
3 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
5 # Copyright 2007 Tamil s.a.r.l.
7 # This file is part of Koha.
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.
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.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 =head1 ysearch.pl
25 =cut
27 use strict;
28 #use warnings; FIXME - Bug 2505
29 use CGI;
30 use C4::Context;
31 use C4::Auth qw/check_cookie_auth/;
33 my $input = new CGI;
34 my $query = $input->param('query');
36 binmode STDOUT, ":utf8";
37 print $input->header(-type => 'text/plain', -charset => 'UTF-8');
39 my ($auth_status, $sessionID) = check_cookie_auth($input->cookie('CGISESSID'), { circulate => '*' });
40 if ($auth_status ne "ok") {
41 exit 0;
44 my $dbh = C4::Context->dbh;
45 my $sql = qq(SELECT surname, firstname, cardnumber, address, city, zipcode, country
46 FROM borrowers
47 WHERE surname LIKE ?
48 OR firstname LIKE ?
49 OR cardnumber LIKE ?
50 ORDER BY surname, firstname);
51 my $sth = $dbh->prepare( $sql );
52 $sth->execute("$query%", "$query%", "$query%");
54 while ( my $rec = $sth->fetchrow_hashref ) {
55 print $rec->{surname} . ", " . $rec->{firstname} . "\t" .
56 $rec->{cardnumber} . "\t" .
57 $rec->{address} . "\t" .
58 $rec->{city} . "\t" .
59 $rec->{zip} . "\t" .
60 $rec->{country} .
61 "\n";