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.
 
 

13 lines
233 B

#!/usr/bin/perl
#script to keep total of number of issues;
use C4::Output;
use C4::Circulation::Fines;
use CGI;
my $input=new CGI;
print $input->header;
my ($count,@data)=Getoverdues();
print $count;
print $data[0]->{'date_due'};