kumara/countpaid.pl
1999-11-13 08:33:32 +00:00

13 lines
197 B
Perl
Executable file

#!/usr/bin/perl
#script to show amount paid today;
use C4::Output;
use C4::Stats;
use CGI;
my $input=new CGI;
print $input->header;
my $count=TotalPaid('today');
$count=$count*-1;
print $count;