really proud of this commit :-)
[koha.git] / reservereport.pl
1 #!/usr/bin/perl
2
3 #written 26/4/2000
4 #script to display reports
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::Stats;
26 use Date::Manip;
27 use CGI;
28 use C4::Output;
29 use HTML::Template;
30
31
32 my $input=new CGI;
33 my $time=$input->param('time');
34
35 #print $input->header;
36 #print startpage;
37 #print startmenu('report');
38 my $template = gettemplate("reservereport.tmpl");
39 #print center;
40 #print mktablehdr();
41 my ($count,$data)=unfilledreserves();
42
43 my @dataloop;
44 for (my $i=0;$i<$count;$i++){
45         my %line;
46         $line{name}="$data->[$i]->{'surname'}\, $data->[$i]->{'firstname'}";
47         $line{'reservedate'}=$data->[$i]->{'reservedate'};
48         $line{'title'}=$data->[$i]->{'title'};
49         $line{'classification'}="$data->[$i]->{'classification'}$data->[$i]->{'dewey'}");
50         push(@dataloop,\%line);
51 }
52
53 $template->param(       count => $count,
54                                                                 dataloop => \@dataloop);
55 print "Content-Type: text/html\n\n", $template->output;