Fixed typo in synopsis.
[koha.git] / reports.pl
1 #!/usr/bin/perl
2
3 #script to display reports
4 #written 8/11/99
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 CGI;
26 use C4::Output;
27 use C4::Stats;
28 use C4::Stock;
29
30 my $input = new CGI;
31 print $input->header;
32 my $type=$input->param('type');
33 print startpage();
34 print startmenu('issue');
35 my @data;
36 if ($type eq 'search'){
37  @data=statsreport('search','something');  
38 }
39 if ($type eq 'issue'){
40  @data=statsreport('issue','today');
41 }
42 if ($type eq 'stock'){
43  @data=stockreport();
44 }
45
46 print mkheadr(1,"$type reports");
47 print @data;
48
49 print endmenu('issue');
50 print endpage();