Bug fixing and complete removal of Date::Manip
[koha.git] / C4 / Stats.pm
1 package C4::Stats;
2
3 # $Id$
4 # Modified by TG
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 require Exporter;
24
25 use C4::Context;
26 use vars qw($VERSION @ISA @EXPORT);
27
28 # set the version for version checking
29 $VERSION = 0.01;
30
31 =head1 NAME
32
33 C4::Stats - Update Koha statistics (log)
34
35 =head1 SYNOPSIS
36
37   use C4::Stats;
38
39 =head1 DESCRIPTION
40
41 The C<&UpdateStats> function adds an entry to the statistics table in
42 the Koha database, which acts as an activity log.
43
44 =head1 FUNCTIONS
45
46 =over 2
47
48 =cut
49
50 @ISA = qw(Exporter);
51 @EXPORT = qw(&UpdateStats &statsreport &TotalOwing
52 &TotalPaid &getcharges &Getpaidbranch &unfilledreserves &getcredits &getinvoices);
53
54 =item UpdateStats
55
56   &UpdateStats($env, $branch, $type, $value, $other, $itemnumber,
57                $itemtype, $borrowernumber);
58
59 Adds a line to the statistics table of the Koha database. In effect,
60 it logs an event.
61
62 C<$branch>, C<$type>, C<$value>, C<$other>, C<$itemnumber>,
63 C<$itemtype>, and C<$borrowernumber> correspond to the fields of the
64 statistics table in the Koha database.
65
66 If C<$branch> is the empty string, the branch code will be taken from
67 C<$env-E<gt>{branchcode}>.
68
69 C<$env-E<gt>{usercode}> specifies the value of the C<usercode> field.
70
71 =cut
72 #'
73 sub UpdateStats {
74         #module to insert stats data into stats table
75         my ($env,$branch,$type,$amount,$other,$itemnum,$itemtype,$borrowernumber,$accountno)=@_;
76         my $dbh = C4::Context->dbh;
77         if ($branch eq ''){
78                 $branch=$env->{'branchcode'};
79         }
80         my $user = $env->{'usercode'};
81         print $borrowernumber;
82         # FIXME - Use $dbh->do() instead
83         my $sth=$dbh->prepare("Insert into statistics (datetime,branch,type,usercode,value,
84                                         other,itemnumber,itemtype,borrowernumber,proccode) values (now(),?,?,?,?,?,?,?,?,?)");
85         $sth->execute($branch,$type,$user,$amount,$other,$itemnum,$itemtype,$borrowernumber,$accountno);
86         $sth->finish;
87 }
88
89 # Otherwise, it'd need a POD.
90 sub TotalPaid {
91         my ($time,$time2)=@_;
92         $time2=$time unless $time2;
93         my $dbh = C4::Context->dbh;
94
95
96         my $query="Select * from accountlines,borrowers where (accounttype = 'Pay' or accounttype='W')
97                                         and accountlines.borrowernumber = borrowers.borrowernumber";
98         my @bind = ();
99         if ($time eq 'today'){
100                 $query .= " and date = now()";
101         } else {
102                 $query.=" and date>=? and date<=?";
103                 @bind = ($time,$time2);
104         }
105
106       
107
108
109            $query.=" order by timestamp";
110
111           # print $query;
112
113         my $sth=$dbh->prepare($query);
114
115        # $sth->execute();
116          $sth->execute(@bind);
117         my @results;
118         my $i=0;
119         while (my $data=$sth->fetchrow_hashref){
120                 $results[$i]=$data;
121                 $i++;
122         }
123         $sth->finish;
124         #  print $query;
125         return(@results);
126 }
127
128 # Otherwise, it needs a POD.
129 sub getcharges{
130         my($borrowerno,$offset,$accountno)=@_;
131         my $dbh = C4::Context->dbh;
132         my $query="";
133         my $sth;
134
135         # getcharges is now taking accountno. as an argument
136         if ($offset){
137               $sth=$dbh->prepare("Select * from accountlines where borrowernumber=?
138               and accountno = ? and amount>0");
139               $sth->execute($borrowerno,$offset);
140
141         # this bit left in for old 2 arg usage of getcharges
142         } else {
143                  $sth=$dbh->prepare("Select * from accountlines where borrowernumber=?
144               and accountno = ?");
145               $sth->execute($borrowerno,$accountno);
146         }
147
148         #  print $query,"<br>";
149         my $i=0;
150         my @results;
151         while (my $data=$sth->fetchrow_hashref){
152         #    if ($data->{'timestamp'} == $timestamp){
153                 $results[$i]=$data;
154                 $i++;
155         #    }
156         }
157         return(@results);
158 }
159
160 # Otherwise, it needs a POD.
161 sub getcredits{
162         my ($date,$date2)=@_;
163         my $dbh = C4::Context->dbh;
164
165
166
167         my $sth=$dbh->prepare("Select * from accountlines,borrowers where (( (accounttype <> 'Pay'))
168                                    and amount < 0  and accountlines.borrowernumber = borrowers.borrowernumber
169                                    and date >=?  and date <=?)");
170         $sth->execute($date, $date2);
171
172         my $i=0;
173         my @results;
174         while (my $data=$sth->fetchrow_hashref){
175                 $results[$i]=$data;
176                 $i++;
177         }
178         return(@results);
179 }
180
181 sub getinvoices{
182         my ($date,$date2)=@_;
183         my $dbh = C4::Context->dbh;
184         my $sth=$dbh->prepare("Select * from accountlines,borrowers where amount>0 and amountoutstanding > 0  and accountlines.borrowernumber = borrowers.borrowernumber
185                                    and (date >=?  and date <=?)");
186         $sth->execute($date, $date2);
187
188         my $i=0;
189         my @results;
190         while (my $data=$sth->fetchrow_hashref){
191                 $results[$i]=$data;
192                 $i++;
193         }
194         return(@results);
195 }
196
197
198 # Otherwise, this needs a POD.
199 sub Getpaidbranch{
200         my($date,$borrno)=@_;
201         my $dbh = C4::Context->dbh;
202         my $sth=$dbh->prepare("select * from statistics where type='payment' and datetime >? and  borrowernumber=?");
203         $sth->execute($date,$borrno);
204         #  print $query;
205         my $data=$sth->fetchrow_hashref;
206         $sth->finish;
207         return($data->{'branch'});
208 }
209
210 # FIXME - This is only used in reservereport.pl and reservereport.xls,
211 # neither of which is used.
212 # Otherwise, it needs a POD.
213 sub unfilledreserves {
214         my $dbh = C4::Context->dbh;
215       
216         my $i=0;
217         my @results;
218        
219    my     $sth=$dbh->prepare("select *,biblio.title from reserves,biblio,borrowers where (found <> '1' or found is NULL) and cancellationdate
220                 is NULL and biblio.biblionumber=reserves.biblionumber  and
221                 reserves.borrowernumber=borrowers.borrowernumber
222                 order by
223                 reserves.reservedate,biblio.title");
224         $sth->execute;
225         while (my $data=$sth->fetchrow_hashref){
226                 $results[$i]=$data;
227                 $i++;
228         }
229         $sth->finish;
230         return($i,\@results);
231 }
232
233 1;
234 __END__
235
236 =back
237
238 =head1 AUTHOR
239
240 Koha Developement team <info@koha.org>
241
242 =cut
243