kumara/countreturns.pl
1999-11-13 06:32:49 +00:00

12 lines
192 B
Perl
Executable file

#!/usr/bin/perl
#script to keep total of number of issues;
use C4::Output;
use C4::Stats;
use CGI;
my $input=new CGI;
print $input->header;
my $count=Count('return','today');
print $count;