Kumara - predecessor to Koha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
786 B

#!/usr/bin/perl
#written 26/4/2000
#script to display reports
use C4::Stats;
use strict;
use CGI;
use C4::Output;
my $input=new CGI;
#print $input->header;
#print startpage;
#print startmenu('report');
#print center;
#print mktablehdr();
my ($count,$data)=unfilledreserves();
#print $count;
for (my $i=0;$i<$count;$i++){
# print mktablerow(4,'white',"$data->[$i]->{'surname'}\, $data->[$i]->{'firstname'}",$data->[$i]->{'reservedate'},$data->[$i]->{'title'},"$data->[$i]->{'classification'}$data->[$i]->{'dewey'}");
print "$data->[$i]->{'surname'}\'$data->[$i]->{'firstname'}\t$data->[$i]->{'reservedate'}\t$data->[$i]->{'title'}\t$data->[$i]->{'classification'}$data->[$i]->{'dewey'}$data->[$i]->{'subclass'}\n";
}
#print mktableft();
#print endmenu('report');
#print endpage;