Added POD.
[koha.git] / member.pl
1 #!/usr/bin/perl
2
3 #script to do a borrower enquiery/brin up borrower details etc
4 #written 20/12/99 by chris@katipo.co.nz
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use C4::Output;
26 use CGI;
27 use C4::Search;
28 use HTML::Template;
29
30 my $input = new CGI;
31
32 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
33 my %tmpldata = pathtotemplate ( template => 'member.tmpl', theme => $theme, language => 'fi' );
34 my $template = HTML::Template->new( filename => $tmpldata{'path'}, 
35                                     die_on_bad_params => 0,
36                                     loop_context_vars => 1 );
37
38 my $member=$input->param('member');
39 $member=~ s/\,//g;
40
41 my $env;
42 my ($count,$results)=BornameSearch($env,$member,'web');
43
44 my @resultsdata;
45 for (my $i=0; $i < $count; $i++){
46   #find out stats
47   my ($od,$issue,$fines)=borrdata2($env,$results->[$i]{'borrowernumber'});
48
49   my %row = (
50         borrowernumber => $results->[$i]{'borrowernumber'},
51         cardnumber => $results->[$i]{'cardnumber'},
52         surname => $results->[$i]{'surname'},
53         firstname => $results->[$i]{'firstname'},
54         categorycode => $results->[$i]{'categorycode'},
55         streetaddress => $results->[$i]{'streetaddress'},
56         city => $results->[$i]{'city'},
57         odissue => "$od/$issue",
58         fines => $fines,
59         borrowernotes => $results->[$i]{'borrowernotes'});
60   push(@resultsdata, \%row);
61 }
62
63 $template->param( startmenumember => join ('', startmenu('member')),
64                         endmenumember   => join ('', endmenu('member')),
65                         member          => $member,
66                         resultsloop     => \@resultsdata );
67                         
68 print "Content-Type: text/html\n\n", $template->output;