Koha/reports.pl
2000-12-19 23:45:51 +00:00

32 lines
529 B
Perl
Executable file

#!/usr/bin/perl
#script to display reports
#written 8/11/99
use strict;
use CGI;
use C4::Output;
use C4::Stats;
use C4::Stock;
my $input = new CGI;
print $input->header;
my $type=$input->param('type');
print startpage();
print startmenu('issue');
my @data;
if ($type eq 'search'){
@data=statsreport('search','something');
}
if ($type eq 'issue'){
@data=statsreport('issue','today');
}
if ($type eq 'stock'){
@data=stockreport();
}
print mkheadr(1,"$type reports");
print @data;
print endmenu('issue');
print endpage();