release notes for 200pre3
[koha.git] / stats2.pl
index e828a86..8944b02 100755 (executable)
--- a/stats2.pl
+++ b/stats2.pl
@@ -1,5 +1,7 @@
 #!/usr/bin/perl
 
+# $Id$
+
 #written 14/1/2000
 #script to display reports
 
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-use C4::Stats;
 use strict;
+use C4::Context;
+use C4::Stats;
 use Date::Manip;
 use CGI;
 use C4::Output;
 use DBI;
-use C4::Database;
 
 my $input=new CGI;
 my $time=$input->param('time');
@@ -59,12 +61,12 @@ if ($time=~ /\//){
 $date=UnixDate($date,'%Y-%m-%d');
 $date2=UnixDate($date2,'%Y-%m-%d');
 
-my $dbh=C4Connect;
-my $query="select * 
+my $dbh = C4::Context->dbh;
+my $query="select *
 from accountlines,accountoffsets,borrowers where
 accountlines.borrowernumber=accountoffsets.borrowernumber and
 (accountlines.accountno=accountoffsets.accountno or accountlines.accountno
-=accountoffsets.offsetaccount) and accountlines.timestamp >=20000621000000 
+=accountoffsets.offsetaccount) and accountlines.timestamp >=20000621000000
 and borrowers.borrowernumber=accountlines.borrowernumber
 group by accountlines.borrowernumber,accountlines.accountno";
 my $sth=$dbh->prepare($query);
@@ -76,7 +78,7 @@ print mktablehdr;
 while (my $data=$sth->fetchrow_hashref){
   print "<TR><Td>$data->{'surname'}</td><td>$data->{'description'}</td><td>$data->{'amount'}
   </td>";
-  if ($data->{'accountype'}='Pay'){
+  if ($data->{'accountype'}='Pay'){    # FIXME - This should be "==", not "=", right?
     my $branch=Getpaidbranch($data->{'timestamp'});
     print "<td>$branch</td>";
   }
@@ -94,4 +96,3 @@ print endcenter;
 print endmenu('report');
 print endpage;
 $sth->finish;
-$dbh->disconnect;