3 # Copyright 2011 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 # Re-create statistics from issues and old_issues tables
33 my $dbh = C4
::Context
->dbh;
40 GetOptions
('issues' => \
$issues, 'returns' => \
$returns, 'help|?|h' => \
$help);
44 print ("Usage : perl $0 [--issues] [--returns]\n\n");
45 print (" issues: process only issues\n");
46 print (" returns: process only returns\n");
50 if ($issues == 0 && $returns == 0) {
57 my $count_renewals = 0;
58 my $count_returns = 0;
60 # Issues and renewals can be found in both issues and old_issues tables
62 foreach my $table ('issues', 'old_issues') {
64 print "looking for missing issues from $table\n";
65 my $query = "SELECT borrowernumber, branchcode, itemnumber, issuedate, renewals, lastreneweddate from $table where itemnumber is not null";
66 my $sth = $dbh->prepare($query);
68 # Looking for missing issues
69 while (my $hashref = $sth->fetchrow_hashref) {
70 my $ctnquery = "SELECT count(*) as cnt FROM statistics WHERE borrowernumber = ? AND itemnumber = ? AND DATE(datetime) = ? AND type = 'issue'";
71 my $substh = $dbh->prepare($ctnquery);
72 $substh->execute($hashref->{'borrowernumber'}, $hashref->{'itemnumber'}, $hashref->{'issuedate'});
73 my $count = $substh->fetchrow_hashref->{'cnt'};
75 # Inserting missing issue
76 my $insert = "INSERT INTO statistics (datetime, branch, value, type, other, itemnumber, itemtype, borrowernumber)
77 VALUES(?, ?, ?, ?, ?, ?, ?, ?)";
78 $substh = $dbh->prepare($insert);
79 my $item = Koha
::Items
->find($hashref->{'itemnumber'});
80 my $itemtype = $item->effective_itemtype;
83 $hashref->{'issuedate'},
84 $hashref->{'branchcode'},
88 $hashref->{'itemnumber'},
90 $hashref->{'borrowernumber'}
92 print "date: $hashref->{'issuedate'} branchcode: $hashref->{'branchcode'} type: issue itemnumber: $hashref->{'itemnumber'} itype: $itemtype borrowernumber: $hashref->{'borrowernumber'}\n";
96 # Looking for missing renewals
97 if ($hashref->{'renewals'} && $hashref->{'renewals'} > 0 ) {
98 # This is the not-so accurate part :
99 # We assume that there are missing renewals, based on the last renewal date
100 # Maybe should this be deactivated by default ?
101 my $ctnquery = "SELECT count(*) as cnt FROM statistics WHERE borrowernumber = ? AND itemnumber = ? AND DATE(datetime) = ? AND type = 'renew'";
102 my $substh = $dbh->prepare($ctnquery);
103 $substh->execute($hashref->{'borrowernumber'}, $hashref->{'itemnumber'}, $hashref->{'lastreneweddate'});
105 my $missingrenewalscount = $hashref->{'renewals'} - $substh->fetchrow_hashref->{'cnt'};
106 print "We assume $missingrenewalscount renewals are missing. Creating them\n" if ($missingrenewalscount > 0);
107 for (my $i = 0; $i < $missingrenewalscount; $i++) {
109 # Inserting missing renewals
110 my $insert = "INSERT INTO statistics (datetime, branch, value, type, other, itemnumber, itemtype, borrowernumber)
111 VALUES(?, ?, ?, ?, ?, ?, ?, ?)";
112 $substh = $dbh->prepare($insert);
113 my $item = Koha
::Items
->find($hashref->{'itemnumber'});
114 my $itemtype = $item->effective_itemtype;
117 $hashref->{'lastreneweddate'},
118 $hashref->{'branchcode'},
122 $hashref->{'itemnumber'},
124 $hashref->{'borrowernumber'}
126 print "date: $hashref->{'lastreneweddate'} branchcode: $hashref->{'branchcode'} type: renew itemnumber: $hashref->{'itemnumber'} itype: $itemtype borrowernumber: $hashref->{'borrowernumber'}\n";
138 print "looking for missing returns from old_issues\n";
139 my $query = "SELECT * from old_issues where itemnumber is not null";
140 my $sth = $dbh->prepare($query);
142 # Looking for missing returns
143 while (my $hashref = $sth->fetchrow_hashref) {
144 my $ctnquery = "SELECT count(*) as cnt FROM statistics WHERE borrowernumber = ? AND itemnumber = ? AND DATE(datetime) = ? AND type = 'return'";
145 my $substh = $dbh->prepare($ctnquery);
146 $substh->execute($hashref->{'borrowernumber'}, $hashref->{'itemnumber'}, $hashref->{'returndate'});
147 my $count = $substh->fetchrow_hashref->{'cnt'};
149 # Inserting missing issue
150 my $insert = "INSERT INTO statistics (datetime, branch, value, type, other, itemnumber, itemtype, borrowernumber)
151 VALUES(?, ?, ?, ?, ?, ?, ?, ?)";
152 $substh = $dbh->prepare($insert);
153 my $item = Koha
::Items
->find($hashref->{'itemnumber'});
154 my $itemtype = $item->effective_itemtype;
157 $hashref->{'returndate'},
158 $hashref->{'branchcode'},
162 $hashref->{'itemnumber'},
164 $hashref->{'borrowernumber'}
166 print "date: $hashref->{'returndate'} branchcode: $hashref->{'branchcode'} type: return itemnumber: $hashref->{'itemnumber'} itype: $itemtype borrowernumber: $hashref->{'borrowernumber'}\n";
173 print "Missing issues added: $count_issues\n" if $issues;
174 print "Missing renewals added: $count_renewals\n" if $issues;
175 print "Missing returns added: $count_returns\n" if $returns;