merging 2.2 branch with head. Sorry for not making it before, many many commits done...
[koha.git] / C4 / Search.pm
1 package C4::Search;
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 require Exporter;
22 use DBI;
23 use C4::Context;
24 use C4::Reserves2;
25         # FIXME - C4::Search uses C4::Reserves2, which uses C4::Search.
26         # So Perl complains that all of the functions here get redefined.
27 use C4::Date;
28
29 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
30
31 # set the version for version checking
32 $VERSION = do { my @v = '$Revision$' =~ /\d+/g;
33           shift(@v) . "." . join("_", map {sprintf "%03d", $_ } @v); };
34
35 =head1 NAME
36
37 C4::Search - Functions for searching the Koha catalog and other databases
38
39 =head1 SYNOPSIS
40
41   use C4::Search;
42
43   my ($count, @results) = catalogsearch($env, $type, $search, $num, $offset);
44
45 =head1 DESCRIPTION
46
47 This module provides the searching facilities for the Koha catalog and
48 other databases.
49
50 C<&catalogsearch> is a front end to all the other searches. Depending
51 on what is passed to it, it calls the appropriate search function.
52
53 =head1 FUNCTIONS
54
55 =over 2
56
57 =cut
58
59 @ISA = qw(Exporter);
60 @EXPORT = qw(
61 &CatSearch &BornameSearch &ItemInfo &KeywordSearch &subsearch
62 &itemdata &bibdata &GetItems &borrdata &itemnodata &itemcount
63 &borrdata2 &NewBorrowerNumber &bibitemdata &borrissues
64 &getboracctrecord &ItemType &itemissues &subject &subtitle
65 &addauthor &bibitems &barcodes &findguarantees &allissues
66 &findguarantor &getwebsites &getwebbiblioitems &catalogsearch &itemcount2
67 &isbnsearch &breedingsearch &getbranchname &getborrowercategory);
68 # make all your functions, whether exported or not;
69
70
71 =item findguarantees
72
73   ($num_children, $children_arrayref) = &findguarantees($parent_borrno);
74   $child0_cardno = $children_arrayref->[0]{"cardnumber"};
75   $child0_borrno = $children_arrayref->[0]{"borrowernumber"};
76
77 C<&findguarantees> takes a borrower number (e.g., that of a patron
78 with children) and looks up the borrowers who are guaranteed by that
79 borrower (i.e., the patron's children).
80
81 C<&findguarantees> returns two values: an integer giving the number of
82 borrowers guaranteed by C<$parent_borrno>, and a reference to an array
83 of references to hash, which gives the actual results.
84
85 =cut
86 #'
87 sub findguarantees{
88   my ($bornum)=@_;
89   my $dbh = C4::Context->dbh;
90   my $sth=$dbh->prepare("select cardnumber,borrowernumber, firstname, surname from borrowers where guarantor=?");
91   $sth->execute($bornum);
92
93   my @dat;
94   while (my $data = $sth->fetchrow_hashref)
95   {
96     push @dat, $data;
97   }
98   $sth->finish;
99   return (scalar(@dat), \@dat);
100 }
101
102 =item findguarantor
103
104   $guarantor = &findguarantor($borrower_no);
105   $guarantor_cardno = $guarantor->{"cardnumber"};
106   $guarantor_surname = $guarantor->{"surname"};
107   ...
108
109 C<&findguarantor> takes a borrower number (presumably that of a child
110 patron), finds the guarantor for C<$borrower_no> (the child's parent),
111 and returns the record for the guarantor.
112
113 C<&findguarantor> returns a reference-to-hash. Its keys are the fields
114 from the C<borrowers> database table;
115
116 =cut
117 #'
118 sub findguarantor{
119   my ($bornum)=@_;
120   my $dbh = C4::Context->dbh;
121   my $sth=$dbh->prepare("select guarantor from borrowers where borrowernumber=?");
122   $sth->execute($bornum);
123   my $data=$sth->fetchrow_hashref;
124   $sth->finish;
125   $sth=$dbh->prepare("Select * from borrowers where borrowernumber=?");
126   $sth->execute($data->{'guarantor'});
127   $data=$sth->fetchrow_hashref;
128   $sth->finish;
129   return($data);
130 }
131
132 =item NewBorrowerNumber
133
134   $num = &NewBorrowerNumber();
135
136 Allocates a new, unused borrower number, and returns it.
137
138 =cut
139 #'
140 # FIXME - This is identical to C4::Circulation::Borrower::NewBorrowerNumber.
141 # Pick one and stick with it. Preferably use the other one. This function
142 # doesn't belong in C4::Search.
143 sub NewBorrowerNumber {
144   my $dbh = C4::Context->dbh;
145   my $sth=$dbh->prepare("Select max(borrowernumber) from borrowers");
146   $sth->execute;
147   my $data=$sth->fetchrow_hashref;
148   $sth->finish;
149   $data->{'max(borrowernumber)'}++;
150   return($data->{'max(borrowernumber)'});
151 }
152
153 =item catalogsearch
154
155   ($count, @results) = &catalogsearch($env, $type, $search, $num, $offset);
156
157 This is primarily a front-end to other, more specialized catalog
158 search functions: if C<$search-E<gt>{itemnumber}> or
159 C<$search-E<gt>{isbn}> is given, C<&catalogsearch> uses a precise
160 C<&CatSearch>. If $search->{subject} is given, it runs a subject
161 C<&CatSearch>. If C<$search-E<gt>{keyword}> is given, it runs a
162 C<&KeywordSearch>. Otherwise, it runs a loose C<&CatSearch>.
163
164 If C<$env-E<gt>{itemcount}> is 1, then C<&catalogsearch> also counts
165 the items for each result, and adds several keys:
166
167 =over 4
168
169 =item C<itemcount>
170
171 The total number of copies of this book.
172
173 =item C<locationhash>
174
175 This is a reference-to-hash; the keys are the names of branches where
176 this book may be found, and the values are the number of copies at
177 that branch.
178
179 =item C<location>
180
181 A descriptive string saying where the book is located, and how many
182 copies there are, if greater than 1.
183
184 =item C<subject2>
185
186 The book's subject, with spaces replaced with C<%20>, presumably for
187 HTML.
188
189 =back
190
191 =cut
192 #'
193 sub catalogsearch {
194         my ($env,$type,$search,$num,$offset)=@_;
195         my $dbh = C4::Context->dbh;
196         #  foreach my $key (%$search){
197         #    $search->{$key}=$dbh->quote($search->{$key});
198         #  }
199         my ($count,@results);
200         if ($search->{'itemnumber'} ne '' || $search->{'isbn'} ne ''){
201                 print STDERR "Doing a precise search\n";
202                 ($count,@results)=CatSearch($env,'precise',$search,$num,$offset);
203         } elsif ($search->{'subject'} ne ''){
204                 ($count,@results)=CatSearch($env,'subject',$search,$num,$offset);
205         } elsif ($search->{'keyword'} ne ''){
206                 ($count,@results)=&KeywordSearch($env,'keyword',$search,$num,$offset);
207         } else {
208                 ($count,@results)=CatSearch($env,'loose',$search,$num,$offset);
209
210         }
211         if ($env->{itemcount} eq '1') {
212                 foreach my $data (@results){
213                         my ($counts) = itemcount2($env, $data->{'biblionumber'}, 'intra');
214                         my $subject2=$data->{'subject'};
215                         $subject2=~ s/ /%20/g;
216                         $data->{'itemcount'}=$counts->{'total'};
217                         my $totalitemcounts=0;
218                         foreach my $key (keys %$counts){
219                                 if ($key ne 'total'){   # FIXME - Should ignore 'order', too.
220                                         #$data->{'location'}.="$key $counts->{$key} ";
221                                         $totalitemcounts+=$counts->{$key};
222                                         $data->{'locationhash'}->{$key}=$counts->{$key};
223                                 }
224                         }
225                         my $locationtext='';
226                         my $locationtextonly='';
227                         my $notavailabletext='';
228                         foreach (sort keys %{$data->{'locationhash'}}) {
229                                 if ($_ eq 'notavailable') {
230                                         $notavailabletext="Not available";
231                                         my $c=$data->{'locationhash'}->{$_};
232                                         $data->{'not-available-p'}=$totalitemcounts;
233                                         if ($totalitemcounts>1) {
234                                         $notavailabletext.=" ($c)";
235                                         $data->{'not-available-plural-p'}=1;
236                                         }
237                                 } else {
238                                         $locationtext.="$_";
239                                         my $c=$data->{'locationhash'}->{$_};
240                                         if ($_ eq 'Item Lost') {
241                                         $data->{'lost-p'}=$totalitemcounts;
242                                         $data->{'lost-plural-p'}=1
243                                                         if $totalitemcounts > 1;
244                                         } elsif ($_ eq 'Withdrawn') {
245                                         $data->{'withdrawn-p'}=$totalitemcounts;
246                                         $data->{'withdrawn-plural-p'}=1
247                                                         if $totalitemcounts > 1;
248                                         } elsif ($_ eq 'On Loan') {
249                                         $data->{'on-loan-p'}=$totalitemcounts;
250                                         $data->{'on-loan-plural-p'}=1
251                                                         if $totalitemcounts > 1;
252                                         } else {
253                                         $locationtextonly.=$_;
254                                         $locationtextonly.=" ($c), "
255                                                         if $totalitemcounts>1;
256                                         }
257                                         if ($totalitemcounts>1) {
258                                         $locationtext.=" ($c), ";
259                                         }
260                                 }
261                         }
262                         if ($notavailabletext) {
263                                 $locationtext.=$notavailabletext;
264                         } else {
265                                 $locationtext=~s/, $//;
266                         }
267                         $data->{'location'}=$locationtext;
268                         $data->{'location-only'}=$locationtextonly;
269                         $data->{'subject2'}=$subject2;
270                         $data->{'use-location-flags-p'}=1; # XXX
271                 }
272         }
273         return ($count,@results);
274 }
275
276 =item KeywordSearch
277
278   $search = { "keyword" => "One or more keywords",
279               "class"   => "VID|CD",    # Limit search to fiction and CDs
280               "dewey"   => "813",
281          };
282   ($count, @results) = &KeywordSearch($env, $type, $search, $num, $offset);
283
284 C<&KeywordSearch> searches the catalog by keyword: given a string
285 (C<$search-E<gt>{"keyword"}> consisting of a space-separated list of
286 keywords, it looks for books that contain any of those keywords in any
287 of a number of places.
288
289 C<&KeywordSearch> looks for keywords in the book title (and subtitle),
290 series name, notes (both C<biblio.notes> and C<biblioitems.notes>),
291 and subjects.
292
293 C<$search-E<gt>{"class"}> can be set to a C<|> (pipe)-separated list of
294 item class codes (e.g., "F" for fiction, "JNF" for junior nonfiction,
295 etc.). In this case, the search will be restricted to just those
296 classes.
297
298 If C<$search-E<gt>{"class"}> is not specified, you may specify
299 C<$search-E<gt>{"dewey"}>. This will restrict the search to that
300 particular Dewey Decimal Classification category. Setting
301 C<$search-E<gt>{"dewey"}> to "513" will return books about arithmetic,
302 whereas setting it to "5" will return all books with Dewey code 5I<xx>
303 (Science and Mathematics).
304
305 C<$env> and C<$type> are ignored.
306
307 C<$offset> and C<$num> specify the subset of results to return.
308 C<$num> specifies the number of results to return, and C<$offset> is
309 the number of the first result. Thus, setting C<$offset> to 100 and
310 C<$num> to 5 will return results 100 through 104 inclusive.
311
312 =cut
313 #'
314 sub KeywordSearch {
315   my ($env,$type,$search,$num,$offset)=@_;
316   my $dbh = C4::Context->dbh;
317   $search->{'keyword'}=~ s/ +$//;
318   my @key=split(' ',$search->{'keyword'});
319                 # FIXME - Naive users might enter comma-separated
320                 # words, e.g., "training, animal". Ought to cope with
321                 # this.
322   my $count=@key;
323   my $i=1;
324   my %biblionumbers;            # Set of biblionumbers returned by the
325                                 # various searches.
326
327   # FIXME - Ought to filter the stopwords out of the list of keywords.
328   #     @key = map { !defined($stopwords{$_}) } @key;
329
330   # FIXME - The way this code is currently set up, it looks for all of
331   # the keywords first in (title, notes, seriestitle), then in the
332   # subtitle, then in the subject. Thus, if you look for keywords
333   # "science fiction", this search won't find a book with
334   #     title    = "How to write fiction"
335   #     subtitle = "A science-based approach"
336   # Is this the desired effect? If not, then the first SQL query
337   # should look in the biblio, subtitle, and subject tables all at
338   # once. The way the first query is built can accomodate this easily.
339
340   # Look for keywords in table 'biblio'.
341
342   # Build an SQL query that finds each of the keywords in any of the
343   # title, biblio.notes, or seriestitle. To do this, we'll build up an
344   # array of clauses, one for each keyword.
345   my $query;                    # The SQL query
346   my @clauses = ();             # The search clauses
347   my @bind = ();                # The term bindings
348
349   $query = <<EOT;               # Beginning of the query
350         SELECT  biblionumber
351         FROM    biblio
352         WHERE
353 EOT
354   foreach my $keyword (@key)
355   {
356     my @subclauses = ();        # Subclauses, one for each field we're
357                                 # searching on
358
359     # For each field we're searching on, create a subclause that'll
360     # match the current keyword in the current field.
361     foreach my $field (qw(title notes seriestitle author))
362     {
363       push @subclauses,
364         "$field LIKE ? OR $field LIKE ?";
365           push(@bind,"\Q$keyword\E%","% \Q$keyword\E%");
366     }
367     # (Yes, this could have been done as
368     #   @subclauses = map {...} qw(field1 field2 ...)
369     # )but I think this way is more readable.
370
371     # Construct the current clause by joining the subclauses.
372     push @clauses, "(" . join(")\n\tOR (", @subclauses) . ")";
373   }
374   # Now join all of the clauses together and append to the query.
375   $query .= "(" . join(")\nAND (", @clauses) . ")";
376
377   # FIXME - Perhaps use $sth->bind_columns() ? Documented as the most
378   # efficient way to fetch data.
379   my $sth=$dbh->prepare($query);
380   $sth->execute(@bind);
381   while (my @res = $sth->fetchrow_array) {
382     for (@res)
383     {
384         $biblionumbers{$_} = 1;         # Add these results to the set
385     }
386   }
387   $sth->finish;
388
389   # Now look for keywords in the 'bibliosubtitle' table.
390
391   # Again, we build a list of clauses from the keywords.
392   @clauses = ();
393   @bind = ();
394   $query = "SELECT biblionumber FROM bibliosubtitle WHERE ";
395   foreach my $keyword (@key)
396   {
397     push @clauses,
398         "subtitle LIKE ? OR subtitle like ?";
399         push(@bind,"\Q$keyword\E%","% \Q$keyword\E%");
400   }
401   $query .= "(" . join(") AND (", @clauses) . ")";
402
403   $sth=$dbh->prepare($query);
404   $sth->execute(@bind);
405   while (my @res = $sth->fetchrow_array) {
406     for (@res)
407     {
408         $biblionumbers{$_} = 1;         # Add these results to the set
409     }
410   }
411   $sth->finish;
412
413   # Look for the keywords in the notes for individual items
414   # ('biblioitems.notes')
415
416   # Again, we build a list of clauses from the keywords.
417   @clauses = ();
418   @bind = ();
419   $query = "SELECT biblionumber FROM biblioitems WHERE ";
420   foreach my $keyword (@key)
421   {
422     push @clauses,
423         "notes LIKE ? OR notes like ?";
424         push(@bind,"\Q$keyword\E%","% \Q$keyword\E%");
425   }
426   $query .= "(" . join(") AND (", @clauses) . ")";
427
428   $sth=$dbh->prepare($query);
429   $sth->execute(@bind);
430   while (my @res = $sth->fetchrow_array) {
431     for (@res)
432     {
433         $biblionumbers{$_} = 1;         # Add these results to the set
434     }
435   }
436   $sth->finish;
437
438   # Look for keywords in the 'bibliosubject' table.
439
440   # FIXME - The other queries look for words in the desired field that
441   # begin with the individual keywords the user entered. This one
442   # searches for the literal string the user entered. Is this the
443   # desired effect?
444   # Note in particular that spaces are retained: if the user typed
445   #     science  fiction
446   # (with two spaces), this won't find the subject "science fiction"
447   # (one space). Likewise, a search for "%" will return absolutely
448   # everything.
449   # If this isn't the desired effect, see the previous searches for
450   # how to do it.
451
452   $sth=$dbh->prepare("Select biblionumber from bibliosubject where subject
453   like ? group by biblionumber");
454   $sth->execute("%$search->{'keyword'}%");
455
456   while (my @res = $sth->fetchrow_array) {
457     for (@res)
458     {
459         $biblionumbers{$_} = 1;         # Add these results to the set
460     }
461   }
462   $sth->finish;
463
464   my $i2=0;
465   my $i3=0;
466   my $i4=0;
467
468   my @res2;
469   my @res = keys %biblionumbers;
470   $count=@res;
471
472   $i=0;
473 #  print "count $count";
474   if ($search->{'class'} ne ''){
475     while ($i2 <$count){
476       my $query="select * from biblio,biblioitems where
477       biblio.biblionumber=? and
478       biblio.biblionumber=biblioitems.biblionumber ";
479       my @bind = ($res[$i2]);
480       if ($search->{'class'} ne ''){    # FIXME - Redundant
481       my @temp=split(/\|/,$search->{'class'});
482       my $count=@temp;
483       $query.= "and ( itemtype=?";
484       push(@bind,$temp[0]);
485       for (my $i=1;$i<$count;$i++){
486         $query.=" or itemtype=?";
487         push(@bind,$temp[$i]);
488       }
489       $query.=")";
490       }
491        my $sth=$dbh->prepare($query);
492        #    print $query;
493        $sth->execute(@bind);
494        if (my $data2=$sth->fetchrow_hashref){
495          my $dewey= $data2->{'dewey'};
496          my $subclass=$data2->{'subclass'};
497          # FIXME - This next bit is bogus, because it assumes that the
498          # Dewey code is a floating-point number. It isn't. It's
499          # actually a string that mainly consists of numbers. In
500          # particular, "4" is not a valid Dewey code, although "004"
501          # is ("Data processing; Computer science"). Likewise, zeros
502          # after the decimal are significant ("575" is not the same as
503          # "575.0"; the latter is more specific). And "000" is a
504          # perfectly good Dewey code ("General works; computer
505          # science") and should not be interpreted to mean "this
506          # database entry does not have a Dewey code". That's what
507          # NULL is for.
508          $dewey=~s/\.*0*$//;
509          ($dewey == 0) && ($dewey='');
510          ($dewey) && ($dewey.=" $subclass") ;
511           $sth->finish;
512           my $end=$offset +$num;
513           if ($i4 <= $offset){
514             $i4++;
515           }
516 #         print $i4;
517           if ($i4 <=$end && $i4 > $offset){
518             $data2->{'dewey'}=$dewey;
519             $res2[$i3]=$data2;
520
521 #           $res2[$i3]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
522             $i3++;
523             $i4++;
524 #           print "in here $i3<br>";
525           } else {
526 #           print $end;
527           }
528           $i++;
529         }
530      $i2++;
531      }
532      $count=$i;
533
534    } else {
535   # $search->{'class'} was not specified
536
537   # FIXME - This is bogus: it makes a separate query for each
538   # biblioitem, and returns results in apparently random order. It'd
539   # be much better to combine all of the previous queries into one big
540   # one (building it up a little at a time, of course), and have that
541   # big query select all of the desired fields, instead of just
542   # 'biblionumber'.
543
544   while ($i2 < $num && $i2 < $count){
545     my $query="select * from biblio,biblioitems where
546     biblio.biblionumber=? and
547     biblio.biblionumber=biblioitems.biblionumber ";
548     my @bind=($res[$i2+$offset]);
549
550     if ($search->{'dewey'} ne ''){
551       $query.= "and (dewey like ?)";
552       push(@bind,"$search->{'dewey'}%");
553     }
554
555     my $sth=$dbh->prepare($query);
556 #    print $query;
557     $sth->execute(@bind);
558     if (my $data2=$sth->fetchrow_hashref){
559         my $dewey= $data2->{'dewey'};
560         my $subclass=$data2->{'subclass'};
561         $dewey=~s/\.*0*$//;
562         ($dewey == 0) && ($dewey='');
563         ($dewey) && ($dewey.=" $subclass") ;
564         $sth->finish;
565         $data2->{'dewey'}=$dewey;
566
567         $res2[$i]=$data2;
568 #       $res2[$i]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
569         $i++;
570     }
571     $i2++;
572
573   }
574   }
575
576   #$count=$i;
577   return($count,@res2);
578 }
579
580 sub KeywordSearch2 {
581   my ($env,$type,$search,$num,$offset)=@_;
582   my $dbh = C4::Context->dbh;
583   $search->{'keyword'}=~ s/ +$//;
584   my @key=split(' ',$search->{'keyword'});
585   my $count=@key;
586   my $i=1;
587   my @results;
588   my $query ="Select * from biblio,bibliosubtitle,biblioitems where
589   biblio.biblionumber=biblioitems.biblionumber and
590   biblio.biblionumber=bibliosubtitle.biblionumber and
591   (((title like ? or title like ?)";
592   my @bind=("$key[0]%","% $key[0]%");
593   while ($i < $count){
594     $query .= " and (title like ? or title like ?)";
595     push(@bind,"$key[$i]%","% $key[$i]%");
596     $i++;
597   }
598   $query.= ") or ((subtitle like ? or subtitle like ?)";
599   push(@bind,"$key[0]%","% $key[0]%");
600   for ($i=1;$i<$count;$i++){
601     $query.= " and (subtitle like ? or subtitle like ?)";
602     push(@bind,"$key[$i]%","% $key[$i]%");
603   }
604   $query.= ") or ((seriestitle like ? or seriestitle like ?)";
605   push(@bind,"$key[0]%","% $key[0]%");
606   for ($i=1;$i<$count;$i++){
607     $query.=" and (seriestitle like ? or seriestitle like ?)";
608     push(@bind,"$key[$i]%","% $key[$i]%");
609   }
610   $query.= ") or ((biblio.notes like ? or biblio.notes like ?)";
611   push(@bind,"$key[0]%","% $key[0]%");
612   for ($i=1;$i<$count;$i++){
613     $query.=" and (biblio.notes like ? or biblio.notes like ?)";
614     push(@bind,"$key[$i]%","% $key[$i]%");
615   }
616   $query.= ") or ((biblioitems.notes like ? or biblioitems.notes like ?)";
617   push(@bind,"$key[0]%","% $key[0]%");
618   for ($i=1;$i<$count;$i++){
619     $query.=" and (biblioitems.notes like ? or biblioitems.notes like ?)";
620     push(@bind,"$key[$i]%","% $key[$i]%");
621   }
622   if ($search->{'keyword'} =~ /new zealand/i){
623     $query.= "or (title like 'nz%' or title like '% nz %' or title like '% nz' or subtitle like 'nz%'
624     or subtitle like '% nz %' or subtitle like '% nz' or author like 'nz %'
625     or author like '% nz %' or author like '% nz')"
626   }
627   if ($search->{'keyword'} eq  'nz' || $search->{'keyword'} eq 'NZ' ||
628   $search->{'keyword'} =~ /nz /i || $search->{'keyword'} =~ / nz /i ||
629   $search->{'keyword'} =~ / nz/i){
630     $query.= "or (title like 'new zealand%' or title like '% new zealand %'
631     or title like '% new zealand' or subtitle like 'new zealand%' or
632     subtitle like '% new zealand %'
633     or subtitle like '% new zealand' or author like 'new zealand%'
634     or author like '% new zealand %' or author like '% new zealand' or
635     seriestitle like 'new zealand%' or seriestitle like '% new zealand %'
636     or seriestitle like '% new zealand')"
637   }
638   $query .= "))";
639   if ($search->{'class'} ne ''){
640     my @temp=split(/\|/,$search->{'class'});
641     my $count=@temp;
642     $query.= "and ( itemtype=?";
643     push(@bind,"$temp[0]");
644     for (my $i=1;$i<$count;$i++){
645       $query.=" or itemtype=?";
646       push(@bind,"$temp[$i]");
647      }
648   $query.=")";
649   }
650   if ($search->{'dewey'} ne ''){
651     $query.= "and (dewey like '$search->{'dewey'}%') ";
652   }
653    $query.="group by biblio.biblionumber";
654    #$query.=" order by author,title";
655 #  print $query;
656   my $sth=$dbh->prepare($query);
657   $sth->execute(@bind);
658   $i=0;
659   while (my $data=$sth->fetchrow_hashref){
660 #FIXME: rewrite to use ? before uncomment
661 #    my $sti=$dbh->prepare("select dewey,subclass from biblioitems where biblionumber=$data->{'biblionumber'}
662 #    ");
663 #    $sti->execute;
664 #    my ($dewey, $subclass) = $sti->fetchrow;
665     my $dewey=$data->{'dewey'};
666     my $subclass=$data->{'subclass'};
667     $dewey=~s/\.*0*$//;
668     ($dewey == 0) && ($dewey='');
669     ($dewey) && ($dewey.=" $subclass");
670 #    $sti->finish;
671     $results[$i]="$data->{'author'}\t$data->{'title'}\t$data->{'biblionumber'}\t$data->{'copyrightdate'}\t$dewey";
672 #      print $results[$i];
673     $i++;
674   }
675   $sth->finish;
676   $sth=$dbh->prepare("Select biblionumber from bibliosubject where subject
677   like ? group by biblionumber");
678   $sth->execute("%".$search->{'keyword'}."%");
679   while (my $data=$sth->fetchrow_hashref){
680     $query="Select * from biblio,biblioitems where
681     biblio.biblionumber=? and
682     biblio.biblionumber=biblioitems.biblionumber ";
683     @bind=($data->{'biblionumber'});
684     if ($search->{'class'} ne ''){
685       my @temp=split(/\|/,$search->{'class'});
686       my $count=@temp;
687       $query.= " and ( itemtype=?";
688       push(@bind,$temp[0]);
689       for (my $i=1;$i<$count;$i++){
690         $query.=" or itemtype=?";
691         push(@bind,$temp[$i]);
692       }
693       $query.=")";
694
695     }
696     if ($search->{'dewey'} ne ''){
697       $query.= "and (dewey like ?)";
698       push(@bind,"$search->{'dewey'}%");
699     }
700     my $sth2=$dbh->prepare($query);
701     $sth2->execute(@bind);
702 #    print $query;
703     while (my $data2=$sth2->fetchrow_hashref){
704       my $dewey= $data2->{'dewey'};
705       my $subclass=$data2->{'subclass'};
706       $dewey=~s/\.*0*$//;
707       ($dewey == 0) && ($dewey='');
708       ($dewey) && ($dewey.=" $subclass") ;
709 #      $sti->finish;
710        $results[$i]="$data2->{'author'}\t$data2->{'title'}\t$data2->{'biblionumber'}\t$data2->{'copyrightdate'}\t$dewey";
711 #      print $results[$i];
712       $i++;
713     }
714     $sth2->finish;
715   }
716   my $i2=1;
717   @results=sort @results;
718   my @res;
719   $count=@results;
720   $i=1;
721   if ($count > 0){
722     $res[0]=$results[0];
723   }
724   while ($i2 < $count){
725     if ($results[$i2] ne $res[$i-1]){
726       $res[$i]=$results[$i2];
727       $i++;
728     }
729     $i2++;
730   }
731   $i2=0;
732   my @res2;
733   $count=@res;
734   while ($i2 < $num && $i2 < $count){
735     $res2[$i2]=$res[$i2+$offset];
736 #    print $res2[$i2];
737     $i2++;
738   }
739   $sth->finish;
740 #  $i--;
741 #  $i++;
742   return($i,@res2);
743 }
744
745 =item CatSearch
746
747   ($count, @results) = &CatSearch($env, $type, $search, $num, $offset);
748
749 C<&CatSearch> searches the Koha catalog. It returns a list whose first
750 element is the number of returned results, and whose subsequent
751 elements are the results themselves.
752
753 Each returned element is a reference-to-hash. Most of the keys are
754 simply the fields from the C<biblio> table in the Koha database, but
755 the following keys may also be present:
756
757 =over 4
758
759 =item C<illustrator>
760
761 The book's illustrator.
762
763 =item C<publisher>
764
765 The publisher.
766
767 =back
768
769 C<$env> is ignored.
770
771 C<$type> may be C<subject>, C<loose>, or C<precise>. This controls the
772 high-level behavior of C<&CatSearch>, as described below.
773
774 In many cases, the description below says that a certain field in the
775 database must match the search string. In these cases, it means that
776 the beginning of some word in the field must match the search string.
777 Thus, an author search for "sm" will return books whose author is
778 "John Smith" or "Mike Smalls", but not "Paul Grossman", since the "sm"
779 does not occur at the beginning of a word.
780
781 Note that within each search mode, the criteria are and-ed together.
782 That is, if you perform a loose search on the author "Jerome" and the
783 title "Boat", the search will only return books by Jerome containing
784 "Boat" in the title.
785
786 It is not possible to cross modes, e.g., set the author to "Asimov"
787 and the subject to "Math" in hopes of finding books on math by Asimov.
788
789 =head2 Loose search
790
791 If C<$type> is set to C<loose>, the following search criteria may be
792 used:
793
794 =over 4
795
796 =item C<$search-E<gt>{author}>
797
798 The search string is a space-separated list of words. Each word must
799 match either the C<author> or C<additionalauthors> field.
800
801 =item C<$search-E<gt>{title}>
802
803 Each word in the search string must match the book title. If no author
804 is specified, the book subtitle will also be searched.
805
806 =item C<$search-E<gt>{abstract}>
807
808 Searches for the given search string in the book's abstract.
809
810 =item C<$search-E<gt>{'date-before'}>
811
812 Searches for books whose copyright date matches the search string.
813 That is, setting C<$search-E<gt>{'date-before'}> to "1985" will find
814 books written in 1985, and setting it to "198" will find books written
815 between 1980 and 1989.
816
817 =item C<$search-E<gt>{title}>
818
819 Searches by title are also affected by the value of
820 C<$search-E<gt>{"ttype"}>; if it is set to C<exact>, then the book
821 title, (one of) the series titleZ<>(s), or (one of) the unititleZ<>(s) must
822 match the search string exactly (the subtitle is not searched).
823
824 If C<$search-E<gt>{"ttype"}> is set to anything other than C<exact>,
825 each word in the search string must match the title, subtitle,
826 unititle, or series title.
827
828 =item C<$search-E<gt>{class}>
829
830 Restricts the search to certain item classes. The value of
831 C<$search-E<gt>{"class"}> is a | (pipe)-separated list of item types.
832 Thus, setting it to "F" restricts the search to fiction, and setting
833 it to "CD|CAS" will only look in compact disks and cassettes.
834
835 =item C<$search-E<gt>{dewey}>
836
837 Searches for books whose Dewey Decimal Classification code matches the
838 search string. That is, setting C<$search-E<gt>{"dewey"}> to "5" will
839 search for all books in 5I<xx> (Science and mathematics), setting it
840 to "54" will search for all books in 54I<x> (Chemistry), and setting
841 it to "546" will search for books on inorganic chemistry.
842
843 =item C<$search-E<gt>{publisher}>
844
845 Searches for books whose publisher contains the search string (unlike
846 other search criteria, C<$search-E<gt>{publisher}> is a string, not a
847 set of words.
848
849 =back
850
851 =head2 Subject search
852
853 If C<$type> is set to C<subject>, the following search criterion may
854 be used:
855
856 =over 4
857
858 =item C<$search-E<gt>{subject}>
859
860 The search string is a space-separated list of words, each of which
861 must match the book's subject.
862
863 Special case: if C<$search-E<gt>{subject}> is set to C<nz>,
864 C<&CatSearch> will search for books whose subject is "New Zealand".
865 However, setting C<$search-E<gt>{subject}> to C<"nz football"> will
866 search for books on "nz" and "football", not books on "New Zealand"
867 and "football".
868
869 =back
870
871 =head2 Precise search
872
873 If C<$type> is set to C<precise>, the following search criteria may be
874 used:
875
876 =over 4
877
878 =item C<$search-E<gt>{item}>
879
880 Searches for books whose barcode exactly matches the search string.
881
882 =item C<$search-E<gt>{isbn}>
883
884 Searches for books whose ISBN exactly matches the search string.
885
886 =back
887
888 For a loose search, if an author was specified, the results are
889 ordered by author and title. If no author was specified, the results
890 are ordered by title.
891
892 For other (non-loose) searches, if a subject was specified, the
893 results are ordered alphabetically by subject.
894
895 In all other cases (e.g., loose search by keyword), the results are
896 not ordered.
897
898 =cut
899 #'
900 sub CatSearch  {
901         my ($env,$type,$search,$num,$offset)=@_;
902         my $dbh = C4::Context->dbh;
903         my $query = '';
904         my @bind = ();
905         my @results;
906
907         my $title = lc($search->{'title'});
908
909         if ($type eq 'loose') {
910                 if ($search->{'author'} ne ''){
911                         my @key=split(' ',$search->{'author'});
912                         my $count=@key;
913                         my $i=1;
914                         $query="select *,biblio.author,biblio.biblionumber from
915                                                         biblio
916                                                         left join additionalauthors
917                                                         on additionalauthors.biblionumber =biblio.biblionumber
918                                                         where
919                                                         ((biblio.author like ? or biblio.author like ? or
920                                                         additionalauthors.author like ? or additionalauthors.author
921                                                         like ?
922                                                                 )";
923                         @bind=("$key[0]%","% $key[0]%","$key[0]%","% $key[0]%");
924                         while ($i < $count){
925                                         $query .= " and (
926                                                                         biblio.author like ? or biblio.author like ? or
927                                                                         additionalauthors.author like ? or additionalauthors.author like ?
928                                                                         )";
929                                         push(@bind,"$key[$i]%","% $key[$i]%","$key[$i]%","% $key[$i]%");
930                                 $i++;
931                         }
932                         $query .= ")";
933                         if ($search->{'title'} ne ''){
934                                 my @key=split(' ',$search->{'title'});
935                                 my $count=@key;
936                                 my $i=0;
937                                 $query.= " and (((title like ? or title like ?)";
938                                 push(@bind,"$key[0]%","% $key[0]%");
939                                 while ($i<$count){
940                                         $query .= " and (title like ? or title like ?)";
941                                         push(@bind,"$key[$i]%","% $key[$i]%");
942                                         $i++;
943                                 }
944                                 $query.=") or ((seriestitle like ? or seriestitle like ?)";
945                                 push(@bind,"$key[0]%","% $key[0]%");
946                                 for ($i=1;$i<$count;$i++){
947                                         $query.=" and (seriestitle like ? or seriestitle like ?)";
948                                         push(@bind,"$key[$i]%","% $key[$i]%");
949                                         }
950                                 $query.=") or ((unititle like ? or unititle like ?)";
951                                 push(@bind,"$key[0]%","% $key[0]%");
952                                 for ($i=1;$i<$count;$i++){
953                                         $query.=" and (unititle like ? or unititle like ?)";
954                                         push(@bind,"$key[$i]%","% $key[$i]%");
955                                         }
956                                 $query .= "))";
957                         }
958                         if ($search->{'abstract'} ne ''){
959                                 $query.= " and (abstract like ?)";
960                                 push(@bind,"%$search->{'abstract'}%");
961                         }
962                         if ($search->{'date-before'} ne ''){
963                                 $query.= " and (copyrightdate like ?)";
964                                 push(@bind,"%$search->{'date-before'}%");
965                         }
966                         $query.=" group by biblio.biblionumber";
967                 } else {
968                         if ($search->{'title'} ne '') {
969                                 if ($search->{'ttype'} eq 'exact'){
970                                         $query="select * from biblio
971                                         where
972                                         (biblio.title=? or (biblio.unititle = ?
973                                         or biblio.unititle like ? or
974                                         biblio.unititle like ? or
975                                         biblio.unititle like ?) or
976                                         (biblio.seriestitle = ? or
977                                         biblio.seriestitle like ? or
978                                         biblio.seriestitle like ? or
979                                         biblio.seriestitle like ?)
980                                         )";
981                                         @bind=($search->{'title'},$search->{'title'},"$search->{'title'} |%","%| $search->{'title'} |%","%| $search->{'title'}",$search->{'title'},"$search->{'title'} |%","%| $search->{'title'} |%","%| $search->{'title'}");
982                                 } else {
983                                         my @key=split(' ',$search->{'title'});
984                                         my $count=@key;
985                                         my $i=1;
986                                         $query="select biblio.biblionumber,author,title,unititle,notes,abstract,serial,seriestitle,copyrightdate,timestamp,subtitle from biblio
987                                         left join bibliosubtitle on
988                                         biblio.biblionumber=bibliosubtitle.biblionumber
989                                         where
990                                         (((title like ? or title like ?)";
991                                         @bind=("$key[0]%","% $key[0]%");
992                                         while ($i<$count){
993                                                 $query .= " and (title like ? or title like ?)";
994                                                 push(@bind,"$key[$i]%","% $key[$i]%");
995                                                 $i++;
996                                         }
997                                         $query.=") or ((subtitle like ? or subtitle like ?)";
998                                         push(@bind,"$key[0]%","% $key[0]%");
999                                         for ($i=1;$i<$count;$i++){
1000                                                 $query.=" and (subtitle like ? or subtitle like ?)";
1001                                                 push(@bind,"$key[$i]%","% $key[$i]%");
1002                                         }
1003                                         $query.=") or ((seriestitle like ? or seriestitle like ?)";
1004                                         push(@bind,"$key[0]%","% $key[0]%");
1005                                         for ($i=1;$i<$count;$i++){
1006                                                 $query.=" and (seriestitle like ? or seriestitle like ?)";
1007                                                 push(@bind,"$key[$i]%","% $key[$i]%");
1008                                         }
1009                                         $query.=") or ((unititle like ? or unititle like ?)";
1010                                         push(@bind,"$key[0]%","% $key[0]%");
1011                                         for ($i=1;$i<$count;$i++){
1012                                                 $query.=" and (unititle like ? or unititle like ?)";
1013                                                 push(@bind,"$key[$i]%","% $key[$i]%");
1014                                         }
1015                                         $query .= "))";
1016                                 }
1017                                 if ($search->{'abstract'} ne ''){
1018                                         $query.= " and (abstract like ?)";
1019                                         push(@bind,"%$search->{'abstract'}%");
1020                                 }
1021                                 if ($search->{'date-before'} ne ''){
1022                                         $query.= " and (copyrightdate like ?)";
1023                                         push(@bind,"%$search->{'date-before'}%");
1024                                 }
1025                         } elsif ($search->{'class'} ne ''){
1026                                 $query="select * from biblioitems,biblio where biblio.biblionumber=biblioitems.biblionumber";
1027                                 my @temp=split(/\|/,$search->{'class'});
1028                                 my $count=@temp;
1029                                 $query.= " and ( itemtype= ?)";
1030                                 @bind=($temp[0]);
1031                                 for (my $i=1;$i<$count;$i++){
1032                                         $query.=" or itemtype=?";
1033                                         push(@bind,$temp[$i]);
1034                                 }
1035                                 $query.=")";
1036                                 if ($search->{'illustrator'} ne ''){
1037                                         $query.=" and illus like ?";
1038                                         push(@bind,"%".$search->{'illustrator'}."%");
1039                                 }
1040                                 if ($search->{'dewey'} ne ''){
1041                                         $query.=" and biblioitems.dewey like ?";
1042                                         push(@bind,"$search->{'dewey'}%");
1043                                 }
1044                         } elsif ($search->{'dewey'} ne ''){
1045                                 $query="select * from biblioitems,biblio
1046                                 where biblio.biblionumber=biblioitems.biblionumber
1047                                 and biblioitems.dewey like ?";
1048                                 @bind=("$search->{'dewey'}%");
1049                         } elsif ($search->{'illustrator'} ne '') {
1050                                         $query="select * from biblioitems,biblio
1051                                 where biblio.biblionumber=biblioitems.biblionumber
1052                                 and biblioitems.illus like ?";
1053                                         @bind=("%".$search->{'illustrator'}."%");
1054                         } elsif ($search->{'publisher'} ne ''){
1055                                 $query = "Select * from biblio,biblioitems where biblio.biblionumber
1056                                 =biblioitems.biblionumber and (publishercode like ?)";
1057                                 @bind=("%$search->{'publisher'}%");
1058                         } elsif ($search->{'abstract'} ne ''){
1059                                 $query = "Select * from biblio where abstract like ?";
1060                                 @bind=("%$search->{'abstract'}%");
1061                         } elsif ($search->{'date-before'} ne ''){
1062                                 $query = "Select * from biblio where copyrightdate like ?";
1063                                 @bind=("%$search->{'date-before'}%");
1064                         }
1065                         $query .=" group by biblio.biblionumber";
1066                 }
1067         }
1068         if ($type eq 'subject'){
1069                 my @key=split(' ',$search->{'subject'});
1070                 my $count=@key;
1071                 my $i=1;
1072                 $query="select * from bibliosubject, biblioitems where
1073 (bibliosubject.biblionumber = biblioitems.biblionumber) and ( subject like ? or subject like ? or subject like ?)";
1074                 @bind=("$key[0]%","% $key[0]%","%($key[0])%");
1075                 while ($i<$count){
1076                         $query.=" and (subject like ? or subject like ? or subject like ?)";
1077                         push(@bind,"$key[$i]%","% $key[$i]%","%($key[$i])%");
1078                         $i++;
1079                 }
1080
1081                 # FIXME - Wouldn't it be better to fix the database so that if a
1082                 # book has a subject "NZ", then it also gets added the subject
1083                 # "New Zealand"?
1084                 # This can also be generalized by adding a table of subject
1085                 # synonyms to the database: just declare "NZ" to be a synonym for
1086                 # "New Zealand", "SF" a synonym for both "Science fiction" and
1087                 # "Fantastic fiction", etc.
1088
1089                 if (lc($search->{'subject'}) eq 'nz'){
1090                         $query.= " or (subject like 'NEW ZEALAND %' or subject like '% NEW ZEALAND %'
1091                         or subject like '% NEW ZEALAND' or subject like '%(NEW ZEALAND)%' ) ";
1092                 } elsif ( $search->{'subject'} =~ /^nz /i || $search->{'subject'} =~ / nz /i || $search->{'subject'} =~ / nz$/i){
1093                         $query=~ s/ nz/ NEW ZEALAND/ig;
1094                         $query=~ s/nz /NEW ZEALAND /ig;
1095                         $query=~ s/\(nz\)/\(NEW ZEALAND\)/gi;
1096                 }
1097         }
1098         if ($type eq 'precise'){
1099                 if ($search->{'itemnumber'} ne ''){
1100                         $query="select * from items,biblio ";
1101                         my $search2=uc $search->{'itemnumber'};
1102                         $query=$query." where
1103                         items.biblionumber=biblio.biblionumber
1104                         and barcode=?";
1105                         @bind=($search2);
1106                                         # FIXME - .= <<EOT;
1107                 }
1108                 if ($search->{'isbn'} ne ''){
1109                         my $search2=uc $search->{'isbn'};
1110                         my $sth1=$dbh->prepare("select * from biblioitems where isbn=?");
1111                         $sth1->execute($search2);
1112                         my $i2=0;
1113                         while (my $data=$sth1->fetchrow_hashref) {
1114                                 my $sth=$dbh->prepare("select * from biblioitems,biblio where
1115                                         biblio.biblionumber = ?
1116                                         and biblioitems.biblionumber = biblio.biblionumber");
1117                                 $sth->execute($data->{'biblionumber'});
1118                                 # FIXME - There's already a $data in this scope.
1119                                 my $data=$sth->fetchrow_hashref;
1120                                 my ($dewey, $subclass) = ($data->{'dewey'}, $data->{'subclass'});
1121                                 # FIXME - The following assumes that the Dewey code is a
1122                                 # floating-point number. It isn't: it's a string.
1123                                 $dewey=~s/\.*0*$//;
1124                                 ($dewey == 0) && ($dewey='');
1125                                 ($dewey) && ($dewey.=" $subclass");
1126                                 $data->{'dewey'}=$dewey;
1127                                 $results[$i2]=$data;
1128                         #           $results[$i2]="$data->{'author'}\t$data->{'title'}\t$data->{'biblionumber'}\t$data->{'copyrightdate'}\t$dewey\t$data->{'isbn'}\t$data->{'itemtype'}";
1129                                 $i2++;
1130                                 $sth->finish;
1131                         }
1132                         $sth1->finish;
1133                 }
1134         }
1135         if ($type ne 'precise' && $type ne 'subject'){
1136                 if ($search->{'author'} ne ''){
1137                         $query .= " order by biblio.author,title";
1138                 } else {
1139                         $query .= " order by title";
1140                 }
1141         } else {
1142                 if ($type eq 'subject'){
1143                         $query .= " group by subject ";
1144                 }
1145         }
1146         my $sth=$dbh->prepare($query);
1147         $sth->execute(@bind);
1148         my $count=1;
1149         my $i=0;
1150         my $limit= $num+$offset;
1151         while (my $data=$sth->fetchrow_hashref){
1152                 my $query="select classification,dewey,subclass,publishercode from biblioitems where biblionumber=?";
1153                 my @bind=($data->{'biblionumber'});
1154                 if ($search->{'class'} ne ''){
1155                         my @temp=split(/\|/,$search->{'class'});
1156                         my $count=@temp;
1157                         $query.= " and ( itemtype= ?";
1158                         push(@bind,$temp[0]);
1159                         for (my $i=1;$i<$count;$i++){
1160                         $query.=" or itemtype=?";
1161                         push(@bind,$temp[$i]);
1162                         }
1163                         $query.=")";
1164                 }
1165                 if ($search->{'dewey'} ne ''){
1166                         $query.=" and dewey=? ";
1167                         push(@bind,$search->{'dewey'});
1168                 }
1169                 if ($search->{'illustrator'} ne ''){
1170                         $query.=" and illus like ?";
1171                         push(@bind,"%$search->{'illustrator'}%");
1172                 }
1173                 if ($search->{'publisher'} ne ''){
1174                         $query.= " and (publishercode like ?)";
1175                         push(@bind,"%$search->{'publisher'}%");
1176                 }
1177                 my $sti=$dbh->prepare($query);
1178                 $sti->execute(@bind);
1179                 my $classification;
1180                 my $dewey;
1181                 my $subclass;
1182                 my $true=0;
1183                 my $publishercode;
1184                 my $bibitemdata;
1185                 if ($bibitemdata = $sti->fetchrow_hashref()){
1186                         $true=1;
1187                         $classification=$bibitemdata->{'classification'};
1188                         $dewey=$bibitemdata->{'dewey'};
1189                         $subclass=$bibitemdata->{'subclass'};
1190                         $publishercode=$bibitemdata->{'publishercode'};
1191                 }
1192                 #  print STDERR "$dewey $subclass $publishercode\n";
1193                 # FIXME - The Dewey code is a string, not a number.
1194                 $dewey=~s/\.*0*$//;
1195                 ($dewey == 0) && ($dewey='');
1196                 ($dewey) && ($dewey.=" $subclass");
1197                 $data->{'classification'}=$classification;
1198                 $data->{'dewey'}=$dewey;
1199                 $data->{'publishercode'}=$publishercode;
1200                 $sti->finish;
1201                 if ($true == 1){
1202                         if ($count > $offset && $count <= $limit){
1203                                 $results[$i]=$data;
1204                                 $i++;
1205                         }
1206                         $count++;
1207                 }
1208         }
1209         $sth->finish;
1210         $count--;
1211         return($count,@results);
1212 }
1213
1214 sub updatesearchstats{
1215   my ($dbh,$query)=@_;
1216
1217 }
1218
1219 =item subsearch
1220
1221   @results = &subsearch($env, $subject);
1222
1223 Searches for books that have a subject that exactly matches
1224 C<$subject>.
1225
1226 C<&subsearch> returns an array of results. Each element of this array
1227 is a string, containing the book's title, author, and biblionumber,
1228 separated by tabs.
1229
1230 C<$env> is ignored.
1231
1232 =cut
1233 #'
1234 sub subsearch {
1235   my ($env,$subject)=@_;
1236   my $dbh = C4::Context->dbh;
1237   my $sth=$dbh->prepare("Select * from biblio,bibliosubject where
1238   biblio.biblionumber=bibliosubject.biblionumber and
1239   bibliosubject.subject=? group by biblio.biblionumber
1240   order by biblio.title");
1241   $sth->execute($subject);
1242   my $i=0;
1243   my @results;
1244   while (my $data=$sth->fetchrow_hashref){
1245     push @results, $data;
1246     $i++;
1247   }
1248   $sth->finish;
1249   return(@results);
1250 }
1251
1252 =item ItemInfo
1253
1254   @results = &ItemInfo($env, $biblionumber, $type);
1255
1256 Returns information about books with the given biblionumber.
1257
1258 C<$type> may be either C<intra> or anything else. If it is not set to
1259 C<intra>, then the search will exclude lost, very overdue, and
1260 withdrawn items.
1261
1262 C<$env> is ignored.
1263
1264 C<&ItemInfo> returns a list of references-to-hash. Each element
1265 contains a number of keys. Most of them are table items from the
1266 C<biblio>, C<biblioitems>, C<items>, and C<itemtypes> tables in the
1267 Koha database. Other keys include:
1268
1269 =over 4
1270
1271 =item C<$data-E<gt>{branchname}>
1272
1273 The name (not the code) of the branch to which the book belongs.
1274
1275 =item C<$data-E<gt>{datelastseen}>
1276
1277 This is simply C<items.datelastseen>, except that while the date is
1278 stored in YYYY-MM-DD format in the database, here it is converted to
1279 DD/MM/YYYY format. A NULL date is returned as C<//>.
1280
1281 =item C<$data-E<gt>{datedue}>
1282
1283 =item C<$data-E<gt>{class}>
1284
1285 This is the concatenation of C<biblioitems.classification>, the book's
1286 Dewey code, and C<biblioitems.subclass>.
1287
1288 =item C<$data-E<gt>{ocount}>
1289
1290 I think this is the number of copies of the book available.
1291
1292 =item C<$data-E<gt>{order}>
1293
1294 If this is set, it is set to C<One Order>.
1295
1296 =back
1297
1298 =cut
1299 #'
1300 sub ItemInfo {
1301         my ($env,$biblionumber,$type) = @_;
1302         my $dbh   = C4::Context->dbh;
1303         my $query = "SELECT *,items.notforloan as itemnotforloan FROM items, biblio, biblioitems 
1304                                         left join itemtypes on biblioitems.itemtype = itemtypes.itemtype
1305                                         WHERE items.biblionumber = ?
1306                                         AND biblioitems.biblioitemnumber = items.biblioitemnumber
1307                                         AND biblio.biblionumber = items.biblionumber";
1308         if ($type ne 'intra'){
1309                 $query .= " and ((items.itemlost<>1 and items.itemlost <> 2)
1310                 or items.itemlost is NULL)
1311                 and (wthdrawn <> 1 or wthdrawn is NULL)";
1312         }
1313         $query .= " order by items.dateaccessioned desc";
1314         my $sth=$dbh->prepare($query);
1315         $sth->execute($biblionumber);
1316         my $i=0;
1317         my @results;
1318         while (my $data=$sth->fetchrow_hashref){
1319                 my $datedue = '';
1320                 my $isth=$dbh->prepare("Select issues.*,borrowers.cardnumber from issues,borrowers where itemnumber = ? and returndate is null and issues.borrowernumber=borrowers.borrowernumber");
1321                 $isth->execute($data->{'itemnumber'});
1322                 if (my $idata=$isth->fetchrow_hashref){
1323                 $data->{borrowernumber} = $idata->{borrowernumber};
1324                 $data->{cardnumber} = $idata->{cardnumber};
1325                 $datedue = format_date($idata->{'date_due'});
1326                 }
1327                 if ($data->{'itemlost'} eq '2'){
1328                         $datedue='Very Overdue';
1329                 }
1330                 if ($data->{'itemlost'} eq '1'){
1331                         $datedue='Lost';
1332                 }
1333                 if ($data->{'wthdrawn'} eq '1'){
1334                         $datedue="Cancelled";
1335                 }
1336                 if ($datedue eq ''){
1337         #       $datedue="Available";
1338                         my ($restype,$reserves)=C4::Reserves2::CheckReserves($data->{'itemnumber'});
1339                         if ($restype) {
1340                                 $datedue=$restype;
1341                         }
1342                 }
1343                 $isth->finish;
1344         #get branch information.....
1345                 my $bsth=$dbh->prepare("SELECT * FROM branches WHERE branchcode = ?");
1346                 $bsth->execute($data->{'holdingbranch'});
1347                 if (my $bdata=$bsth->fetchrow_hashref){
1348                         $data->{'branchname'} = $bdata->{'branchname'};
1349                 }
1350                 my $date=format_date($data->{'datelastseen'});
1351                 $data->{'datelastseen'}=$date;
1352                 $data->{'datedue'}=$datedue;
1353         # get notforloan complete status if applicable
1354                 my $sthnflstatus = $dbh->prepare('select authorised_value from marc_subfield_structure where kohafield="items.notforloan"');
1355                 $sthnflstatus->execute;
1356                 my ($authorised_valuecode) = $sthnflstatus->fetchrow;
1357                 if ($authorised_valuecode) {
1358                         $sthnflstatus = $dbh->prepare("select lib from authorised_values where category=? and authorised_value=?");
1359                         $sthnflstatus->execute($authorised_valuecode,$data->{itemnotforloan});
1360                         my ($lib) = $sthnflstatus->fetchrow;
1361                         $data->{notforloan} = $lib;
1362                 }
1363                 $results[$i]=$data;
1364                 $i++;
1365         }
1366         $sth->finish;
1367         #FIXME: ordering/indentation here looks wrong
1368         my $sth2=$dbh->prepare("Select * from aqorders where biblionumber=?");
1369         $sth2->execute($biblionumber);
1370         my $data;
1371         my $ocount;
1372         if ($data=$sth2->fetchrow_hashref){
1373                 $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
1374                 if ($ocount > 0){
1375                 $data->{'ocount'}=$ocount;
1376                 $data->{'order'}="One Order";
1377                 $results[$i]=$data;
1378                 }
1379         }
1380         $sth2->finish;
1381         
1382         return(@results);
1383 }
1384
1385 =item GetItems
1386
1387   @results = &GetItems($env, $biblionumber);
1388
1389 Returns information about books with the given biblionumber.
1390
1391 C<$env> is ignored.
1392
1393 C<&GetItems> returns an array of strings. Each element is a
1394 tab-separated list of values: biblioitemnumber, itemtype,
1395 classification, Dewey number, subclass, ISBN, volume, number, and
1396 itemdata.
1397
1398 Itemdata, in turn, is a string of the form
1399 "I<barcode>C<[>I<holdingbranch>C<[>I<flags>" where I<flags> contains
1400 the string C<NFL> if the item is not for loan, and C<LOST> if the item
1401 is lost.
1402
1403 =cut
1404 #'
1405 sub GetItems {
1406    my ($env,$biblionumber)=@_;
1407    #debug_msg($env,"GetItems");
1408    my $dbh = C4::Context->dbh;
1409    my $sth=$dbh->prepare("Select * from biblioitems where (biblionumber = ?)");
1410    $sth->execute($biblionumber);
1411    #debug_msg($env,"executed query");
1412    my $i=0;
1413    my @results;
1414    while (my $data=$sth->fetchrow_hashref) {
1415       #debug_msg($env,$data->{'biblioitemnumber'});
1416       my $dewey = $data->{'dewey'};
1417       $dewey =~ s/0+$//;
1418       my $line = $data->{'biblioitemnumber'}."\t".$data->{'itemtype'};
1419       $line .= "\t$data->{'classification'}\t$dewey";
1420       $line .= "\t$data->{'subclass'}\t$data->{isbn}";
1421       $line .= "\t$data->{'volume'}\t$data->{number}";
1422       my $isth= $dbh->prepare("select * from items where biblioitemnumber = ?");
1423       $isth->execute($data->{'biblioitemnumber'});
1424       while (my $idata = $isth->fetchrow_hashref) {
1425         my $iline = $idata->{'barcode'}."[".$idata->{'holdingbranch'}."[";
1426         if ($idata->{'notforloan'} == 1) {
1427           $iline .= "NFL ";
1428         }
1429         if ($idata->{'itemlost'} == 1) {
1430           $iline .= "LOST ";
1431         }
1432         $line .= "\t$iline";
1433       }
1434       $isth->finish;
1435       $results[$i] = $line;
1436       $i++;
1437    }
1438    $sth->finish;
1439    return(@results);
1440 }
1441
1442 =item itemdata
1443
1444   $item = &itemdata($barcode);
1445
1446 Looks up the item with the given barcode, and returns a
1447 reference-to-hash containing information about that item. The keys of
1448 the hash are the fields from the C<items> and C<biblioitems> tables in
1449 the Koha database.
1450
1451 =cut
1452 #'
1453 sub itemdata {
1454   my ($barcode)=@_;
1455   my $dbh = C4::Context->dbh;
1456   my $sth=$dbh->prepare("Select * from items,biblioitems where barcode=?
1457   and items.biblioitemnumber=biblioitems.biblioitemnumber");
1458   $sth->execute($barcode);
1459   my $data=$sth->fetchrow_hashref;
1460   $sth->finish;
1461   return($data);
1462 }
1463
1464 =item bibdata
1465
1466   $data = &bibdata($biblionumber, $type);
1467
1468 Returns information about the book with the given biblionumber.
1469
1470 C<$type> is ignored.
1471
1472 C<&bibdata> returns a reference-to-hash. The keys are the fields in
1473 the C<biblio>, C<biblioitems>, and C<bibliosubtitle> tables in the
1474 Koha database.
1475
1476 In addition, C<$data-E<gt>{subject}> is the list of the book's
1477 subjects, separated by C<" , "> (space, comma, space).
1478
1479 If there are multiple biblioitems with the given biblionumber, only
1480 the first one is considered.
1481
1482 =cut
1483 #'
1484 sub bibdata {
1485         my ($bibnum, $type) = @_;
1486         my $dbh   = C4::Context->dbh;
1487         my $sth   = $dbh->prepare("Select *, biblioitems.notes AS bnotes, biblio.notes
1488                                                                 from biblio, biblioitems
1489                                                                 left join bibliosubtitle on
1490                                                                 biblio.biblionumber = bibliosubtitle.biblionumber
1491                                                                 left join itemtypes on biblioitems.itemtype=itemtypes.itemtype
1492                                                                 where biblio.biblionumber = ?
1493                                                                 and biblioitems.biblionumber = biblio.biblionumber");
1494         $sth->execute($bibnum);
1495         my $data;
1496         $data  = $sth->fetchrow_hashref;
1497         $sth->finish;
1498         # handle management of repeated subtitle
1499         $sth   = $dbh->prepare("Select * from bibliosubtitle where biblionumber = ?");
1500         $sth->execute($bibnum);
1501         my @subtitles;
1502         while (my $dat = $sth->fetchrow_hashref){
1503                 my %line;
1504                 $line{subtitle} = $dat->{subtitle};
1505                 push @subtitles, \%line;
1506         } # while
1507         $data->{subtitles} = \@subtitles;
1508         $sth->finish;
1509         $sth   = $dbh->prepare("Select * from bibliosubject where biblionumber = ?");
1510         $sth->execute($bibnum);
1511         my @subjects;
1512         while (my $dat = $sth->fetchrow_hashref){
1513                 my %line;
1514                 $line{subject} = $dat->{'subject'};
1515                 push @subjects, \%line;
1516         } # while
1517         $data->{subjects} = \@subjects;
1518         $sth->finish;
1519         $sth   = $dbh->prepare("Select * from additionalauthors where biblionumber = ?");
1520         $sth->execute($bibnum);
1521         while (my $dat = $sth->fetchrow_hashref){
1522                 $data->{'additionalauthors'} .= "$dat->{'author'} - ";
1523         } # while
1524         chop $data->{'additionalauthors'};
1525         chop $data->{'additionalauthors'};
1526         chop $data->{'additionalauthors'};
1527         $sth->finish;
1528         return($data);
1529 } # sub bibdata
1530
1531 =item bibitemdata
1532
1533   $itemdata = &bibitemdata($biblioitemnumber);
1534
1535 Looks up the biblioitem with the given biblioitemnumber. Returns a
1536 reference-to-hash. The keys are the fields from the C<biblio>,
1537 C<biblioitems>, and C<itemtypes> tables in the Koha database, except
1538 that C<biblioitems.notes> is given as C<$itemdata-E<gt>{bnotes}>.
1539
1540 =cut
1541 #'
1542 sub bibitemdata {
1543     my ($bibitem) = @_;
1544     my $dbh   = C4::Context->dbh;
1545     my $sth   = $dbh->prepare("Select *,biblioitems.notes as bnotes from biblio, biblioitems,itemtypes where biblio.biblionumber = biblioitems.biblionumber and biblioitemnumber = ? and biblioitems.itemtype = itemtypes.itemtype");
1546     my $data;
1547
1548     $sth->execute($bibitem);
1549
1550     $data = $sth->fetchrow_hashref;
1551
1552     $sth->finish;
1553     return($data);
1554 } # sub bibitemdata
1555
1556 =item subject
1557
1558   ($count, $subjects) = &subject($biblionumber);
1559
1560 Looks up the subjects of the book with the given biblionumber. Returns
1561 a two-element list. C<$subjects> is a reference-to-array, where each
1562 element is a subject of the book, and C<$count> is the number of
1563 elements in C<$subjects>.
1564
1565 =cut
1566 #'
1567 sub subject {
1568   my ($bibnum)=@_;
1569   my $dbh = C4::Context->dbh;
1570   my $sth=$dbh->prepare("Select * from bibliosubject where biblionumber=?");
1571   $sth->execute($bibnum);
1572   my @results;
1573   my $i=0;
1574   while (my $data=$sth->fetchrow_hashref){
1575     $results[$i]=$data;
1576     $i++;
1577   }
1578   $sth->finish;
1579   return($i,\@results);
1580 }
1581
1582 =item addauthor
1583
1584   ($count, $authors) = &addauthors($biblionumber);
1585
1586 Looks up the additional authors for the book with the given
1587 biblionumber.
1588
1589 Returns a two-element list. C<$authors> is a reference-to-array, where
1590 each element is an additional author, and C<$count> is the number of
1591 elements in C<$authors>.
1592
1593 =cut
1594 #'
1595 sub addauthor {
1596   my ($bibnum)=@_;
1597   my $dbh = C4::Context->dbh;
1598   my $sth=$dbh->prepare("Select * from additionalauthors where biblionumber=?");
1599   $sth->execute($bibnum);
1600   my @results;
1601   my $i=0;
1602   while (my $data=$sth->fetchrow_hashref){
1603     $results[$i]=$data;
1604     $i++;
1605   }
1606   $sth->finish;
1607   return($i,\@results);
1608 }
1609
1610 =item subtitle
1611
1612   ($count, $subtitles) = &subtitle($biblionumber);
1613
1614 Looks up the subtitles for the book with the given biblionumber.
1615
1616 Returns a two-element list. C<$subtitles> is a reference-to-array,
1617 where each element is a subtitle, and C<$count> is the number of
1618 elements in C<$subtitles>.
1619
1620 =cut
1621 #'
1622 sub subtitle {
1623   my ($bibnum)=@_;
1624   my $dbh = C4::Context->dbh;
1625   my $sth=$dbh->prepare("Select * from bibliosubtitle where biblionumber=?");
1626   $sth->execute($bibnum);
1627   my @results;
1628   my $i=0;
1629   while (my $data=$sth->fetchrow_hashref){
1630     $results[$i]=$data;
1631     $i++;
1632   }
1633   $sth->finish;
1634   return($i,\@results);
1635 }
1636
1637 =item itemissues
1638
1639   @issues = &itemissues($biblioitemnumber, $biblio);
1640
1641 Looks up information about who has borrowed the bookZ<>(s) with the
1642 given biblioitemnumber.
1643
1644 C<$biblio> is ignored.
1645
1646 C<&itemissues> returns an array of references-to-hash. The keys
1647 include the fields from the C<items> table in the Koha database.
1648 Additional keys include:
1649
1650 =over 4
1651
1652 =item C<date_due>
1653
1654 If the item is currently on loan, this gives the due date.
1655
1656 If the item is not on loan, then this is either "Available" or
1657 "Cancelled", if the item has been withdrawn.
1658
1659 =item C<card>
1660
1661 If the item is currently on loan, this gives the card number of the
1662 patron who currently has the item.
1663
1664 =item C<timestamp0>, C<timestamp1>, C<timestamp2>
1665
1666 These give the timestamp for the last three times the item was
1667 borrowed.
1668
1669 =item C<card0>, C<card1>, C<card2>
1670
1671 The card number of the last three patrons who borrowed this item.
1672
1673 =item C<borrower0>, C<borrower1>, C<borrower2>
1674
1675 The borrower number of the last three patrons who borrowed this item.
1676
1677 =back
1678
1679 =cut
1680 #'
1681 sub itemissues {
1682     my ($bibitem, $biblio)=@_;
1683     my $dbh   = C4::Context->dbh;
1684     # FIXME - If this function die()s, the script will abort, and the
1685     # user won't get anything; depending on how far the script has
1686     # gotten, the user might get a blank page. It would be much better
1687     # to at least print an error message. The easiest way to do this
1688     # is to set $SIG{__DIE__}.
1689     my $sth   = $dbh->prepare("Select * from items where
1690 items.biblioitemnumber = ?")
1691       || die $dbh->errstr;
1692     my $i     = 0;
1693     my @results;
1694
1695     $sth->execute($bibitem)
1696       || die $sth->errstr;
1697
1698     while (my $data = $sth->fetchrow_hashref) {
1699         # Find out who currently has this item.
1700         # FIXME - Wouldn't it be better to do this as a left join of
1701         # some sort? Currently, this code assumes that if
1702         # fetchrow_hashref() fails, then the book is on the shelf.
1703         # fetchrow_hashref() can fail for any number of reasons (e.g.,
1704         # database server crash), not just because no items match the
1705         # search criteria.
1706         my $sth2   = $dbh->prepare("select * from issues,borrowers
1707 where itemnumber = ?
1708 and returndate is NULL
1709 and issues.borrowernumber = borrowers.borrowernumber");
1710
1711         $sth2->execute($data->{'itemnumber'});
1712         if (my $data2 = $sth2->fetchrow_hashref) {
1713             $data->{'date_due'} = $data2->{'date_due'};
1714             $data->{'card'}     = $data2->{'cardnumber'};
1715             $data->{'borrower'}     = $data2->{'borrowernumber'};
1716         } else {
1717             if ($data->{'wthdrawn'} eq '1') {
1718                 $data->{'date_due'} = 'Cancelled';
1719             } else {
1720                 $data->{'date_due'} = 'Available';
1721             } # else
1722         } # else
1723
1724         $sth2->finish;
1725
1726         # Find the last 3 people who borrowed this item.
1727         $sth2 = $dbh->prepare("select * from issues, borrowers
1728                                                 where itemnumber = ?
1729                                                                         and issues.borrowernumber = borrowers.borrowernumber
1730                                                                         and returndate is not NULL
1731                                                                         order by returndate desc,timestamp desc") || die $dbh->errstr;
1732         $sth2->execute($data->{'itemnumber'}) || die $sth2->errstr;
1733         for (my $i2 = 0; $i2 < 2; $i2++) { # FIXME : error if there is less than 3 pple borrowing this item
1734             if (my $data2 = $sth2->fetchrow_hashref) {
1735                 $data->{"timestamp$i2"} = $data2->{'timestamp'};
1736                 $data->{"card$i2"}      = $data2->{'cardnumber'};
1737                 $data->{"borrower$i2"}  = $data2->{'borrowernumber'};
1738             } # if
1739         } # for
1740
1741         $sth2->finish;
1742         $results[$i] = $data;
1743         $i++;
1744     }
1745
1746     $sth->finish;
1747     return(@results);
1748 }
1749
1750 =item itemnodata
1751
1752   $item = &itemnodata($env, $dbh, $biblioitemnumber);
1753
1754 Looks up the item with the given biblioitemnumber.
1755
1756 C<$env> and C<$dbh> are ignored.
1757
1758 C<&itemnodata> returns a reference-to-hash whose keys are the fields
1759 from the C<biblio>, C<biblioitems>, and C<items> tables in the Koha
1760 database.
1761
1762 =cut
1763 #'
1764 sub itemnodata {
1765   my ($env,$dbh,$itemnumber) = @_;
1766   $dbh = C4::Context->dbh;
1767   my $sth=$dbh->prepare("Select * from biblio,items,biblioitems
1768     where items.itemnumber = ?
1769     and biblio.biblionumber = items.biblionumber
1770     and biblioitems.biblioitemnumber = items.biblioitemnumber");
1771 #  print $query;
1772   $sth->execute($itemnumber);
1773   my $data=$sth->fetchrow_hashref;
1774   $sth->finish;
1775   return($data);
1776 }
1777
1778 =item BornameSearch
1779
1780   ($count, $borrowers) = &BornameSearch($env, $searchstring, $type);
1781
1782 Looks up patrons (borrowers) by name.
1783
1784 C<$env> is ignored.
1785
1786 BUGFIX 499: C<$type> is now used to determine type of search.
1787 if $type is "simple", search is performed on the first letter of the
1788 surname only.
1789
1790 C<$searchstring> is a space-separated list of search terms. Each term
1791 must match the beginning a borrower's surname, first name, or other
1792 name.
1793
1794 C<&BornameSearch> returns a two-element list. C<$borrowers> is a
1795 reference-to-array; each element is a reference-to-hash, whose keys
1796 are the fields of the C<borrowers> table in the Koha database.
1797 C<$count> is the number of elements in C<$borrowers>.
1798
1799 =cut
1800 #'
1801 #used by member enquiries from the intranet
1802 #called by member.pl
1803 sub BornameSearch  {
1804         my ($env,$searchstring,$orderby,$type)=@_;
1805         my $dbh = C4::Context->dbh;
1806         my $query = ""; my $count; my @data;
1807         my @bind=();
1808
1809         if($type eq "simple")   # simple search for one letter only
1810         {
1811                 $query="Select * from borrowers where surname like ? order by $orderby";
1812                 @bind=("$searchstring%");
1813         }
1814         else    # advanced search looking in surname, firstname and othernames
1815         {
1816                 @data=split(' ',$searchstring);
1817                 $count=@data;
1818                 $query="Select * from borrowers
1819                 where ((surname like ? or surname like ?
1820                 or firstname  like ? or firstname like ?
1821                 or othernames like ? or othernames like ?)
1822                 ";
1823                 @bind=("$data[0]%","% $data[0]%","$data[0]%","% $data[0]%","$data[0]%","% $data[0]%");
1824                 for (my $i=1;$i<$count;$i++){
1825                         $query=$query." and (".
1826                         " surname like ? or surname like ?
1827                         or firstname  like ? or firstname like ?
1828                         or othernames like ? or othernames like ?)";
1829                         push(@bind,"$data[$i]%","% $data[$i]%","$data[$i]%","% $data[$i]%","$data[$i]%","% $data[$i]%");
1830                                         # FIXME - .= <<EOT;
1831                 }
1832                 $query=$query.") or cardnumber like ?
1833                 order by $orderby";
1834                 push(@bind,$searchstring);
1835                                         # FIXME - .= <<EOT;
1836         }
1837
1838         my $sth=$dbh->prepare($query);
1839         warn "Q $orderby : $query";
1840         $sth->execute(@bind);
1841         my @results;
1842         my $cnt=$sth->rows;
1843         while (my $data=$sth->fetchrow_hashref){
1844         push(@results,$data);
1845         }
1846         #  $sth->execute;
1847         $sth->finish;
1848         return ($cnt,\@results);
1849 }
1850
1851 =item borrdata
1852
1853   $borrower = &borrdata($cardnumber, $borrowernumber);
1854
1855 Looks up information about a patron (borrower) by either card number
1856 or borrower number. If $borrowernumber is specified, C<&borrdata>
1857 searches by borrower number; otherwise, it searches by card number.
1858
1859 C<&borrdata> returns a reference-to-hash whose keys are the fields of
1860 the C<borrowers> table in the Koha database.
1861
1862 =cut
1863 #'
1864 sub borrdata {
1865   my ($cardnumber,$bornum)=@_;
1866   $cardnumber = uc $cardnumber;
1867   my $dbh = C4::Context->dbh;
1868   my $sth;
1869   if ($bornum eq ''){
1870     $sth=$dbh->prepare("Select * from borrowers where cardnumber=?");
1871     $sth->execute($cardnumber);
1872   } else {
1873     $sth=$dbh->prepare("Select * from borrowers where borrowernumber=?");
1874   $sth->execute($bornum);
1875   }
1876   my $data=$sth->fetchrow_hashref;
1877   $sth->finish;
1878   if ($data) {
1879         return($data);
1880         } else { # try with firstname
1881                 if ($cardnumber) {
1882                         my $sth=$dbh->prepare("select * from borrowers where firstname=?");
1883                         $sth->execute($cardnumber);
1884                         my $data=$sth->fetchrow_hashref;
1885                         $sth->finish;
1886                         return($data);
1887                 }
1888         }
1889         return undef;
1890 }
1891
1892 =item borrissues
1893
1894   ($count, $issues) = &borrissues($borrowernumber);
1895
1896 Looks up what the patron with the given borrowernumber has borrowed.
1897
1898 C<&borrissues> returns a two-element array. C<$issues> is a
1899 reference-to-array, where each element is a reference-to-hash; the
1900 keys are the fields from the C<issues>, C<biblio>, and C<items> tables
1901 in the Koha database. C<$count> is the number of elements in
1902 C<$issues>.
1903
1904 =cut
1905 #'
1906 sub borrissues {
1907   my ($bornum)=@_;
1908   my $dbh = C4::Context->dbh;
1909   my $sth=$dbh->prepare("Select * from issues,biblio,items where borrowernumber=?
1910    and items.itemnumber=issues.itemnumber
1911         and items.biblionumber=biblio.biblionumber
1912         and issues.returndate is NULL order by date_due");
1913     $sth->execute($bornum);
1914   my @result;
1915   while (my $data = $sth->fetchrow_hashref) {
1916     push @result, $data;
1917   }
1918   $sth->finish;
1919   return(scalar(@result), \@result);
1920 }
1921
1922 =item allissues
1923
1924   ($count, $issues) = &allissues($borrowernumber, $sortkey, $limit);
1925
1926 Looks up what the patron with the given borrowernumber has borrowed,
1927 and sorts the results.
1928
1929 C<$sortkey> is the name of a field on which to sort the results. This
1930 should be the name of a field in the C<issues>, C<biblio>,
1931 C<biblioitems>, or C<items> table in the Koha database.
1932
1933 C<$limit> is the maximum number of results to return.
1934
1935 C<&allissues> returns a two-element array. C<$issues> is a
1936 reference-to-array, where each element is a reference-to-hash; the
1937 keys are the fields from the C<issues>, C<biblio>, C<biblioitems>, and
1938 C<items> tables of the Koha database. C<$count> is the number of
1939 elements in C<$issues>
1940
1941 =cut
1942 #'
1943 sub allissues {
1944   my ($bornum,$order,$limit)=@_;
1945   #FIXME: sanity-check order and limit
1946   my $dbh = C4::Context->dbh;
1947   my $query="Select * from issues,biblio,items,biblioitems
1948   where borrowernumber=? and
1949   items.biblioitemnumber=biblioitems.biblioitemnumber and
1950   items.itemnumber=issues.itemnumber and
1951   items.biblionumber=biblio.biblionumber order by $order";
1952   if ($limit !=0){
1953     $query.=" limit $limit";
1954   }
1955   #print $query;
1956   my $sth=$dbh->prepare($query);
1957   $sth->execute($bornum);
1958   my @result;
1959   my $i=0;
1960   while (my $data=$sth->fetchrow_hashref){
1961     $result[$i]=$data;;
1962     $i++;
1963   }
1964   $sth->finish;
1965   return($i,\@result);
1966 }
1967
1968 =item borrdata2
1969
1970   ($borrowed, $due, $fine) = &borrdata2($env, $borrowernumber);
1971
1972 Returns aggregate data about items borrowed by the patron with the
1973 given borrowernumber.
1974
1975 C<$env> is ignored.
1976
1977 C<&borrdata2> returns a three-element array. C<$borrowed> is the
1978 number of books the patron currently has borrowed. C<$due> is the
1979 number of overdue items the patron currently has borrowed. C<$fine> is
1980 the total fine currently due by the borrower.
1981
1982 =cut
1983 #'
1984 sub borrdata2 {
1985   my ($env,$bornum)=@_;
1986   my $dbh = C4::Context->dbh;
1987   my $query="Select count(*) from issues where borrowernumber='$bornum' and
1988     returndate is NULL";
1989     # print $query;
1990   my $sth=$dbh->prepare($query);
1991   $sth->execute;
1992   my $data=$sth->fetchrow_hashref;
1993   $sth->finish;
1994   $sth=$dbh->prepare("Select count(*) from issues where
1995     borrowernumber='$bornum' and date_due < now() and returndate is NULL");
1996   $sth->execute;
1997   my $data2=$sth->fetchrow_hashref;
1998   $sth->finish;
1999   $sth=$dbh->prepare("Select sum(amountoutstanding) from accountlines where
2000     borrowernumber='$bornum'");
2001   $sth->execute;
2002   my $data3=$sth->fetchrow_hashref;
2003   $sth->finish;
2004
2005 return($data2->{'count(*)'},$data->{'count(*)'},$data3->{'sum(amountoutstanding)'});
2006 }
2007
2008 =item getboracctrecord
2009
2010   ($count, $acctlines, $total) = &getboracctrecord($env, $borrowernumber);
2011
2012 Looks up accounting data for the patron with the given borrowernumber.
2013
2014 C<$env> is ignored.
2015
2016 (FIXME - I'm not at all sure what this is about.)
2017
2018 C<&getboracctrecord> returns a three-element array. C<$acctlines> is a
2019 reference-to-array, where each element is a reference-to-hash; the
2020 keys are the fields of the C<accountlines> table in the Koha database.
2021 C<$count> is the number of elements in C<$acctlines>. C<$total> is the
2022 total amount outstanding for all of the account lines.
2023
2024 =cut
2025 #'
2026 sub getboracctrecord {
2027    my ($env,$params) = @_;
2028    my $dbh = C4::Context->dbh;
2029    my @acctlines;
2030    my $numlines=0;
2031    my $sth=$dbh->prepare("Select * from accountlines where
2032 borrowernumber=? order by date desc,timestamp desc");
2033 #   print $query;
2034    $sth->execute($params->{'borrowernumber'});
2035    my $total=0;
2036    while (my $data=$sth->fetchrow_hashref){
2037    #FIXME before reinstating: insecure?
2038 #      if ($data->{'itemnumber'} ne ''){
2039 #        $query="Select * from items,biblio where items.itemnumber=
2040 #       '$data->{'itemnumber'}' and biblio.biblionumber=items.biblionumber";
2041 #       my $sth2=$dbh->prepare($query);
2042 #       $sth2->execute;
2043 #       my $data2=$sth2->fetchrow_hashref;
2044 #       $sth2->finish;
2045 #       $data=$data2;
2046  #     }
2047       $acctlines[$numlines] = $data;
2048       $numlines++;
2049       $total += $data->{'amountoutstanding'};
2050    }
2051    $sth->finish;
2052    return ($numlines,\@acctlines,$total);
2053 }
2054
2055 =item itemcount
2056
2057   ($count, $lcount, $nacount, $fcount, $scount, $lostcount,
2058   $mending, $transit,$ocount) =
2059     &itemcount($env, $biblionumber, $type);
2060
2061 Counts the number of items with the given biblionumber, broken down by
2062 category.
2063
2064 C<$env> is ignored.
2065
2066 If C<$type> is not set to C<intra>, lost, very overdue, and withdrawn
2067 items will not be counted.
2068
2069 C<&itemcount> returns a nine-element list:
2070
2071 C<$count> is the total number of items with the given biblionumber.
2072
2073 C<$lcount> is the number of items at the Levin branch.
2074
2075 C<$nacount> is the number of items that are neither borrowed, lost,
2076 nor withdrawn (and are therefore presumably on a shelf somewhere).
2077
2078 C<$fcount> is the number of items at the Foxton branch.
2079
2080 C<$scount> is the number of items at the Shannon branch.
2081
2082 C<$lostcount> is the number of lost and very overdue items.
2083
2084 C<$mending> is the number of items at the Mending branch (being
2085 mended?).
2086
2087 C<$transit> is the number of items at the Transit branch (in transit
2088 between branches?).
2089
2090 C<$ocount> is the number of items that haven't arrived yet
2091 (aqorders.quantity - aqorders.quantityreceived).
2092
2093 =cut
2094 #'
2095
2096 # FIXME - There's also a &C4::Biblio::itemcount.
2097 # Since they're all exported, acqui/acquire.pl doesn't compile with -w.
2098 sub itemcount {
2099   my ($env,$bibnum,$type)=@_;
2100   my $dbh = C4::Context->dbh;
2101   my $query="Select * from items where
2102   biblionumber=? ";
2103   if ($type ne 'intra'){
2104     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2105     (wthdrawn <> 1 or wthdrawn is NULL)";
2106   }
2107   my $sth=$dbh->prepare($query);
2108   #  print $query;
2109   $sth->execute($bibnum);
2110   my $count=0;
2111   my $lcount=0;
2112   my $nacount=0;
2113   my $fcount=0;
2114   my $scount=0;
2115   my $lostcount=0;
2116   my $mending=0;
2117   my $transit=0;
2118   my $ocount=0;
2119   while (my $data=$sth->fetchrow_hashref){
2120     $count++;
2121
2122     my $sth2=$dbh->prepare("select * from issues,items where issues.itemnumber=
2123     ? and returndate is NULL
2124     and items.itemnumber=issues.itemnumber and ((items.itemlost <>1 and
2125     items.itemlost <> 2) or items.itemlost is NULL)
2126     and (wthdrawn <> 1 or wthdrawn is NULL)");
2127     $sth2->execute($data->{'itemnumber'});
2128     if (my $data2=$sth2->fetchrow_hashref){
2129        $nacount++;
2130     } else {
2131       if ($data->{'holdingbranch'} eq 'C' || $data->{'holdingbranch'} eq 'LT'){
2132         $lcount++;
2133       }
2134       if ($data->{'holdingbranch'} eq 'F' || $data->{'holdingbranch'} eq 'FP'){
2135         $fcount++;
2136       }
2137       if ($data->{'holdingbranch'} eq 'S' || $data->{'holdingbranch'} eq 'SP'){
2138         $scount++;
2139       }
2140       if ($data->{'itemlost'} eq '1'){
2141         $lostcount++;
2142       }
2143       if ($data->{'itemlost'} eq '2'){
2144         $lostcount++;
2145       }
2146       if ($data->{'holdingbranch'} eq 'FM'){
2147         $mending++;
2148       }
2149       if ($data->{'holdingbranch'} eq 'TR'){
2150         $transit++;
2151       }
2152     }
2153     $sth2->finish;
2154   }
2155 #  if ($count == 0){
2156     my $sth2=$dbh->prepare("Select * from aqorders where biblionumber=?");
2157     $sth2->execute($bibnum);
2158     if (my $data=$sth2->fetchrow_hashref){
2159       $ocount=$data->{'quantity'} - $data->{'quantityreceived'};
2160     }
2161 #    $count+=$ocount;
2162     $sth2->finish;
2163   $sth->finish;
2164   return ($count,$lcount,$nacount,$fcount,$scount,$lostcount,$mending,$transit,$ocount);
2165 }
2166
2167 =item itemcount2
2168
2169   $counts = &itemcount2($env, $biblionumber, $type);
2170
2171 Counts the number of items with the given biblionumber, broken down by
2172 category.
2173
2174 C<$env> is ignored.
2175
2176 C<$type> may be either C<intra> or anything else. If it is not set to
2177 C<intra>, then the search will exclude lost, very overdue, and
2178 withdrawn items.
2179
2180 C<$&itemcount2> returns a reference-to-hash, with the following fields:
2181
2182 =over 4
2183
2184 =item C<total>
2185
2186 The total number of items with this biblionumber.
2187
2188 =item C<order>
2189
2190 The number of items on order (aqorders.quantity -
2191 aqorders.quantityreceived).
2192
2193 =item I<branchname>
2194
2195 For each branch that has at least one copy of the book, C<$counts>
2196 will have a key with the branch name, giving the number of copies at
2197 that branch.
2198
2199 =back
2200
2201 =cut
2202 #'
2203 sub itemcount2 {
2204   my ($env,$bibnum,$type)=@_;
2205   my $dbh = C4::Context->dbh;
2206   my $query="Select * from items,branches where
2207   biblionumber=? and items.holdingbranch=branches.branchcode";
2208   if ($type ne 'intra'){
2209     $query.=" and ((itemlost <>1 and itemlost <> 2) or itemlost is NULL) and
2210     (wthdrawn <> 1 or wthdrawn is NULL)";
2211   }
2212   my $sth=$dbh->prepare($query);
2213   #  print $query;
2214   $sth->execute($bibnum);
2215   my %counts;
2216   $counts{'total'}=0;
2217   while (my $data=$sth->fetchrow_hashref){
2218     $counts{'total'}++;
2219
2220     my $status;
2221     for my $test (
2222       [
2223         'Item Lost',
2224         'select * from items
2225           where itemnumber=?
2226             and not ((items.itemlost <>1 and items.itemlost <> 2)
2227                       or items.itemlost is NULL)'
2228       ], [
2229         'Withdrawn',
2230         'select * from items
2231           where itemnumber=? and not (wthdrawn <> 1 or wthdrawn is NULL)'
2232       ], [
2233         'On Loan', "select * from issues,items
2234           where issues.itemnumber=? and returndate is NULL
2235             and items.itemnumber=issues.itemnumber"
2236       ],
2237     ) {
2238         my($testlabel, $query2) = @$test;
2239
2240         my $sth2=$dbh->prepare($query2);
2241         $sth2->execute($data->{'itemnumber'});
2242
2243         # FIXME - fetchrow_hashref() can fail for any number of reasons
2244         # (e.g., a database server crash). Perhaps use a left join of some
2245         # sort for this?
2246         $status = $testlabel if $sth2->fetchrow_hashref;
2247         $sth2->finish;
2248     last if defined $status;
2249     }
2250     $status = $data->{'branchname'} unless defined $status;
2251     $counts{$status}++;
2252   }
2253   my $sth2=$dbh->prepare("Select * from aqorders where biblionumber=? and
2254   datecancellationprinted is NULL and quantity > quantityreceived");
2255   $sth2->execute($bibnum);
2256   if (my $data=$sth2->fetchrow_hashref){
2257       $counts{'order'}=$data->{'quantity'} - $data->{'quantityreceived'};
2258   }
2259   $sth2->finish;
2260   $sth->finish;
2261   return (\%counts);
2262 }
2263
2264 =item ItemType
2265
2266   $description = &ItemType($itemtype);
2267
2268 Given an item type code, returns the description for that type.
2269
2270 =cut
2271 #'
2272
2273 # FIXME - I'm pretty sure that after the initial setup, the list of
2274 # item types doesn't change very often. Hence, it seems slow and
2275 # inefficient to make yet another database call to look up information
2276 # that'll only change every few months or years.
2277 #
2278 # Much better, I think, to automatically build a Perl file that can be
2279 # included in those scripts that require it, e.g.:
2280 #       @itemtypes = qw( ART BCD CAS CD F ... );
2281 #       %itemtypedesc = (
2282 #               ART     => "Art Prints",
2283 #               BCD     => "CD-ROM from book",
2284 #               CD      => "Compact disc (WN)",
2285 #               F       => "Free Fiction",
2286 #               ...
2287 #       );
2288 # The web server can then run a cron job to rebuild this file from the
2289 # database every hour or so.
2290 #
2291 # The same thing goes for branches, book funds, book sellers, currency
2292 # rates, printers, stopwords, and perhaps others.
2293 sub ItemType {
2294   my ($type)=@_;
2295   my $dbh = C4::Context->dbh;
2296   my $sth=$dbh->prepare("select description from itemtypes where itemtype=?");
2297   $sth->execute($type);
2298   my $dat=$sth->fetchrow_hashref;
2299   $sth->finish;
2300   return ($dat->{'description'});
2301 }
2302
2303 =item bibitems
2304
2305   ($count, @results) = &bibitems($biblionumber);
2306
2307 Given the biblionumber for a book, C<&bibitems> looks up that book's
2308 biblioitems (different publications of the same book, the audio book
2309 and film versions, etc.).
2310
2311 C<$count> is the number of elements in C<@results>.
2312
2313 C<@results> is an array of references-to-hash; the keys are the fields
2314 of the C<biblioitems> and C<itemtypes> tables of the Koha database. In
2315 addition, C<itemlost> indicates the availability of the item: if it is
2316 "2", then all copies of the item are long overdue; if it is "1", then
2317 all copies are lost; otherwise, there is at least one copy available.
2318
2319 =cut
2320 #'
2321 sub bibitems {
2322     my ($bibnum) = @_;
2323     my $dbh   = C4::Context->dbh;
2324     my $sth   = $dbh->prepare("SELECT biblioitems.*,
2325                         itemtypes.*,
2326                         MIN(items.itemlost)        as itemlost,
2327                         MIN(items.dateaccessioned) as dateaccessioned
2328                           FROM biblioitems, itemtypes, items
2329                          WHERE biblioitems.biblionumber     = ?
2330                            AND biblioitems.itemtype         = itemtypes.itemtype
2331                            AND biblioitems.biblioitemnumber = items.biblioitemnumber
2332                       GROUP BY items.biblioitemnumber");
2333     my $count = 0;
2334     my @results;
2335     $sth->execute($bibnum);
2336     while (my $data = $sth->fetchrow_hashref) {
2337         $results[$count] = $data;
2338         $count++;
2339     } # while
2340     $sth->finish;
2341     return($count, @results);
2342 } # sub bibitems
2343
2344 =item barcodes
2345
2346   @barcodes = &barcodes($biblioitemnumber);
2347
2348 Given a biblioitemnumber, looks up the corresponding items.
2349
2350 Returns an array of references-to-hash; the keys are C<barcode> and
2351 C<itemlost>.
2352
2353 The returned items include very overdue items, but not lost ones.
2354
2355 =cut
2356 #'
2357 sub barcodes{
2358     #called from request.pl
2359     my ($biblioitemnumber)=@_;
2360     my $dbh = C4::Context->dbh;
2361     my $sth=$dbh->prepare("SELECT barcode, itemlost, holdingbranch FROM items
2362                            WHERE biblioitemnumber = ?
2363                              AND (wthdrawn <> 1 OR wthdrawn IS NULL)");
2364     $sth->execute($biblioitemnumber);
2365     my @barcodes;
2366     my $i=0;
2367     while (my $data=$sth->fetchrow_hashref){
2368         $barcodes[$i]=$data;
2369         $i++;
2370     }
2371     $sth->finish;
2372     return(@barcodes);
2373 }
2374
2375 =item getwebsites
2376
2377   ($count, @websites) = &getwebsites($biblionumber);
2378
2379 Looks up the web sites pertaining to the book with the given
2380 biblionumber.
2381
2382 C<$count> is the number of elements in C<@websites>.
2383
2384 C<@websites> is an array of references-to-hash; the keys are the
2385 fields from the C<websites> table in the Koha database.
2386
2387 =cut
2388 #'
2389 sub getwebsites {
2390     my ($biblionumber) = @_;
2391     my $dbh   = C4::Context->dbh;
2392     my $sth   = $dbh->prepare("Select * from websites where biblionumber = ?");
2393     my $count = 0;
2394     my @results;
2395
2396     $sth->execute($biblionumber);
2397     while (my $data = $sth->fetchrow_hashref) {
2398         # FIXME - The URL scheme shouldn't be stripped off, at least
2399         # not here, since it's part of the URL, and will be useful in
2400         # constructing a link to the site. If you don't want the user
2401         # to see the "http://" part, strip that off when building the
2402         # HTML code.
2403         $data->{'url'} =~ s/^http:\/\///;       # FIXME - Leaning toothpick
2404                                                 # syndrome
2405         $results[$count] = $data;
2406         $count++;
2407     } # while
2408
2409     $sth->finish;
2410     return($count, @results);
2411 } # sub getwebsites
2412
2413 =item getwebbiblioitems
2414
2415   ($count, @results) = &getwebbiblioitems($biblionumber);
2416
2417 Given a book's biblionumber, looks up the web versions of the book
2418 (biblioitems with itemtype C<WEB>).
2419
2420 C<$count> is the number of items in C<@results>. C<@results> is an
2421 array of references-to-hash; the keys are the items from the
2422 C<biblioitems> table of the Koha database.
2423
2424 =cut
2425 #'
2426 sub getwebbiblioitems {
2427     my ($biblionumber) = @_;
2428     my $dbh   = C4::Context->dbh;
2429     my $sth   = $dbh->prepare("Select * from biblioitems where biblionumber = ?
2430 and itemtype = 'WEB'");
2431     my $count = 0;
2432     my @results;
2433
2434     $sth->execute($biblionumber);
2435     while (my $data = $sth->fetchrow_hashref) {
2436         $data->{'url'} =~ s/^http:\/\///;
2437         $results[$count] = $data;
2438         $count++;
2439     } # while
2440
2441     $sth->finish;
2442     return($count, @results);
2443 } # sub getwebbiblioitems
2444
2445
2446 =item breedingsearch
2447
2448   ($count, @results) = &breedingsearch($title,$isbn,$random);
2449 C<$title> contains the title,
2450 C<$isbn> contains isbn or issn,
2451 C<$random> contains the random seed from a z3950 search.
2452
2453 C<$count> is the number of items in C<@results>. C<@results> is an
2454 array of references-to-hash; the keys are the items from the C<marc_breeding> table of the Koha database.
2455
2456 =cut
2457
2458 sub breedingsearch {
2459         my ($title,$isbn,$z3950random) = @_;
2460         my $dbh   = C4::Context->dbh;
2461         my $count = 0;
2462         my ($query,@bind);
2463         my $sth;
2464         my @results;
2465
2466         $query = "Select id,file,isbn,title,author from marc_breeding where ";
2467         if ($z3950random) {
2468                 $query .= "z3950random = ?";
2469                 @bind=($z3950random);
2470         } else {
2471             @bind=();
2472                 if ($title) {
2473                         $query .= "title like ?";
2474                         push(@bind,"$title%");
2475                 }
2476                 if ($title && $isbn) {
2477                         $query .= " and ";
2478                 }
2479                 if ($isbn) {
2480                         $query .= "isbn like ?";
2481                         push(@bind,"$isbn%");
2482                 }
2483         }
2484         $sth   = $dbh->prepare($query);
2485         $sth->execute(@bind);
2486         while (my $data = $sth->fetchrow_hashref) {
2487                         $results[$count] = $data;
2488                         $count++;
2489         } # while
2490
2491         $sth->finish;
2492         return($count, @results);
2493 } # sub breedingsearch
2494
2495
2496
2497
2498
2499 =item isbnsearch
2500
2501   ($count, @results) = &isbnsearch($isbn,$title);
2502
2503 Given an isbn and/or a title, returns the biblios having it.
2504 Used in acqui.simple, isbnsearch.pl only
2505
2506 C<$count> is the number of items in C<@results>. C<@results> is an
2507 array of references-to-hash; the keys are the items from the
2508 C<biblioitems> table of the Koha database.
2509
2510 =cut
2511
2512 sub isbnsearch {
2513     my ($isbn,$title) = @_;
2514     my $dbh   = C4::Context->dbh;
2515     my $count = 0;
2516     my ($query,@bind);
2517     my $sth;
2518     my @results;
2519
2520     $query = "Select distinct biblio.*, biblioitems.classification from biblio, biblioitems where
2521                                 biblio.biblionumber = biblioitems.biblionumber";
2522         @bind=();
2523         if ($isbn) {
2524                 $query .= " and isbn like ?";
2525                 @bind=(uc($isbn)."%");
2526         }
2527         if ($title) {
2528                 $query .= " and title like ?";
2529                 @bind=($title."%");
2530         }
2531     $sth   = $dbh->prepare($query);
2532
2533     $sth->execute(@bind);
2534     while (my $data = $sth->fetchrow_hashref) {
2535         $results[$count] = $data;
2536         $count++;
2537     } # while
2538
2539     $sth->finish;
2540     return($count, @results);
2541 } # sub isbnsearch
2542
2543 =item getbranchname
2544
2545   $branchname = &getbranchname($branchcode);
2546
2547 Given the branch code, the function returns the corresponding
2548 branch name for a comprehensive information display
2549
2550 =cut
2551
2552 sub getbranchname
2553 {
2554         my ($branchcode) = @_;
2555         my $dbh = C4::Context->dbh;
2556         my $sth = $dbh->prepare("SELECT branchname FROM branches WHERE branchcode = ?");
2557         $sth->execute($branchcode);
2558         my $branchname = $sth->fetchrow();
2559         $sth->finish();
2560         return $branchname;
2561 } # sub getbranchname
2562
2563 =item getborrowercategory
2564
2565   $description = &getborrowercategory($categorycode);
2566
2567 Given the borrower's category code, the function returns the corresponding
2568 description for a comprehensive information display.
2569
2570 =cut
2571
2572 sub getborrowercategory
2573 {
2574         my ($catcode) = @_;
2575         my $dbh = C4::Context->dbh;
2576         my $sth = $dbh->prepare("SELECT description FROM categories WHERE categorycode = ?");
2577         $sth->execute($catcode);
2578         my $description = $sth->fetchrow();
2579         $sth->finish();
2580         return $description;
2581 } # sub getborrowercategory
2582
2583
2584 END { }       # module clean-up code here (global destructor)
2585
2586 1;
2587 __END__
2588
2589 =back
2590
2591 =head1 AUTHOR
2592
2593 Koha Developement team <info@koha.org>
2594
2595 =cut