3 # Copyright 2000-2002 Katipo Communications
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>.
34 use Koha
::Patron
::Categories
;
38 plugin that shows a stats on borrowers
44 $debug and open my $debugfh, '>', '/tmp/bor_issues_top.debug.log';
47 my $fullreportname = "reports/bor_issues_top.tt";
48 my $do_it = $input->param('do_it');
49 my $limit = $input->param("Limit");
50 my $column = $input->param("Criteria");
51 my @filters = $input->multi_param("Filter");
52 foreach ( @filters[0..3] ) {
53 $_ and $_ = eval { output_pref
( { dt
=> dt_from_string
( $_ ), dateonly
=> 1, dateformat
=> 'iso' }); };
55 my $output = $input->param("output");
56 my $basename = $input->param("basename");
57 my ($template, $borrowernumber, $cookie)
58 = get_template_and_user
({template_name
=> $fullreportname,
61 flagsrequired
=> {reports
=> '*'},
64 our $sep = $input->param("sep") || C4
::Context
->preference('delimiter') || ',';
65 $sep = "\t" if ($sep eq 'tabulation');
66 $template->param(do_it
=> $do_it,
70 my $results = calculate
($limit, $column, \
@filters);
71 if ($output eq "screen"){
72 # Printing results to screen
73 $template->param(mainloop
=> $results, limit
=>$limit);
74 output_html_with_http_headers
$input, $cookie, $template->output;
76 # Printing to a csv file
77 print $input->header(-type
=> 'application/vnd.sun.xml.calc',
79 -attachment
=>"$basename.csv",
80 -filename
=>"$basename.csv" );
81 my $cols = @
$results[0]->{loopcol
};
82 my $lines = @
$results[0]->{looprow
};
84 print @
$results[0]->{line
} ."/". @
$results[0]->{column
} .$sep;
86 print join($sep, map {$_->{coltitle
}} @
$cols);
87 print $sep . "Total\n";
89 foreach my $line ( @
$lines ) {
90 my $x = $line->{loopcell
};
91 print $line->{rowtitle
}.$sep;
92 print join($sep, map {$_->{value
}} @
$x);
93 print $sep,$line->{totalrow
};
98 $cols = @
$results[0]->{loopfooter
};
99 print join($sep, map {$_->{totalcol
}} @
$cols);
100 print $sep.@
$results[0]->{total
};
105 my $dbh = C4
::Context
->dbh;
107 # here each element returned by map is a hashref, get it?
108 my @mime = ( map { {type
=>$_} } (split /[;:]/, 'CSV') ); # FIXME translation
109 my $delims = GetDelimiterChoices
;
111 my $patron_categories = Koha
::Patron
::Categories
->search_limited({}, {order_by
=> ['categorycode']});
112 my $itemtypes = Koha
::ItemTypes
->search_with_localization;
115 CGIseplist
=> $delims,
116 itemtypes
=> $itemtypes,
117 patron_categories
=> $patron_categories,
119 output_html_with_http_headers
$input, $cookie, $template->output;
123 my ($limit, $column, $filters) = @_;
130 my $dbh = C4
::Context
->dbh;
147 for (my $i=0;$i<=6;$i++) {
149 if ( @
$filters[$i] ) {
150 if (($i==1) and (@
$filters[$i-1])) {
151 $cell{err
} = 1 if (@
$filters[$i]<@
$filters[$i-1]) ;
153 # format the dates filters, otherwise just fill as is
154 $cell{filter
} .= @
$filters[$i];
155 defined ($cellmap[$i]) and
156 $cell{crit
} .= $cellmap[$i];
157 push @loopfilter, \
%cell;
163 $column = "old_issues." .$column if (($column=~/branchcode/) or ($column=~/timestamp/));
164 $column = "biblioitems.".$column if $column=~/itemtype/;
165 $column = "borrowers." .$column if $column=~/categorycode/;
167 if ($column =~ /timestamp/) {
168 $colfilter[0] = @
$filters[0];
169 $colfilter[1] = @
$filters[1];
170 } elsif ($column =~ /returndate/) {
171 $colfilter[0] = @
$filters[2];
172 $colfilter[1] = @
$filters[3];
173 } elsif ($column =~ /branchcode/) {
174 $colfilter[0] = @
$filters[4];
175 } elsif ($column =~ /itemtype/) {
176 $colfilter[0] = @
$filters[5];
177 } elsif ($column =~ /category/) {
178 $colfilter[0] = @
$filters[6];
179 } elsif ($column =~ /sort2/ ) {
180 # $colfilter[0] = @$filters[11];
184 if ($column eq "Day") {
186 $column = "old_issues.timestamp";
187 $colfield .="dayname($column)";
188 $colorder .="weekday($column)";
189 } elsif ($column eq "Month") {
191 $column = "old_issues.timestamp";
192 $colfield .="monthname($column)";
193 $colorder .="month($column)";
194 } elsif ($column eq "Year") {
196 $column = "old_issues.timestamp";
197 $colfield .="Year($column)";
198 $colorder .= $column;
200 $colfield .= $column;
201 $colorder .= $column;
205 $strsth2 .= "SELECT DISTINCTROW $colfield
207 LEFT JOIN borrowers ON old_issues.borrowernumber=borrowers.borrowernumber
208 LEFT JOIN items ON old_issues.itemnumber=items.itemnumber
209 LEFT JOIN biblioitems ON (biblioitems.biblioitemnumber=items.biblioitemnumber)
211 if (($column=~/timestamp/) or ($column=~/returndate/)){
212 if ($colfilter[1] and $colfilter[0]){
213 $strsth2 .= " AND $column between '$colfilter[0]' AND '$colfilter[1]' " ;
214 } elsif ($colfilter[1]) {
215 $strsth2 .= " AND $column < '$colfilter[1]' " ;
216 } elsif ($colfilter[0]) {
217 $strsth2 .= " AND $column > '$colfilter[0]' " ;
219 } elsif ($colfilter[0]) {
220 $colfilter[0] =~ s/\*/%/g;
221 $strsth2 .= " AND $column LIKE '$colfilter[0]' " ;
223 $strsth2 .=" GROUP BY $colfield";
224 $strsth2 .=" ORDER BY $colorder";
226 $debug and print $debugfh "bor_issues_top (old_issues) SQL: $strsth2\n";
227 my $sth2 = $dbh->prepare($strsth2);
229 print $debugfh "rows: ", $sth2->rows, "\n";
230 while (my @row = $sth2->fetchrow) {
231 $columns{($row[0] ||'NULL')}++;
232 push @loopcol, { coltitle
=> $row[0] || 'NULL' };
235 $strsth2 =~ s/old_issues/issues/g;
236 $debug and print $debugfh "bor_issues_top (issues) SQL: $strsth2\n";
237 $sth2 = $dbh->prepare($strsth2);
239 $debug and print $debugfh "rows: ", $sth2->rows, "\n";
240 while (my @row = $sth2->fetchrow) {
241 $columns{($row[0] ||'NULL')}++;
242 push @loopcol, { coltitle
=> $row[0] || 'NULL' };
244 $debug and print $debugfh "full array: ", Dumper
(\
%columns), "\n";
251 # Processing average loanperiods
252 $strcalc .= "SELECT CONCAT_WS('', borrowers.surname , \",\\t\", borrowers.firstname), COUNT(*) AS RANK, borrowers.borrowernumber AS ID";
253 $strcalc .= " , $colfield " if ($colfield);
254 $strcalc .= " FROM `old_issues`
255 LEFT JOIN borrowers USING(borrowernumber)
256 LEFT JOIN items USING(itemnumber)
257 LEFT JOIN biblioitems USING(biblioitemnumber)
258 WHERE old_issues.borrowernumber IS NOT NULL
261 'old_issues.issuedate >',
262 'old_issues.issuedate <',
263 'old_issues.returndate >',
264 'old_issues.returndate <',
265 'old_issues.branchcode like',
266 'biblioitems.itemtype like',
267 'borrowers.categorycode like',
269 foreach ((@
$filters)[0..9]) {
270 my $term = shift @filterterms; # go through both arrays in step
273 $strcalc .= " AND $term '$_' ";
275 $strcalc .= " GROUP BY borrowers.borrowernumber";
276 $strcalc .= ", $colfield" if ($column);
277 $strcalc .= " ORDER BY RANK DESC";
278 $strcalc .= ",$colfield " if ($colfield);
279 $strcalc .= " LIMIT $limit" if ($limit);
281 $debug and print $debugfh "(old_issues) SQL : $strcalc\n";
282 my $dbcalc = $dbh->prepare($strcalc);
284 $debug and print $debugfh "rows: ", $dbcalc->rows, "\n";
286 # DATA STRUCTURE is going to look like this:
287 # (2253=> {name=>"John Doe",
288 # allcols=>{MAIN=>12, MEDIA_LIB=>3}
291 while (my @data = $dbcalc->fetchrow) {
292 my ($row, $rank, $id, $col) = @data;
293 $col = "zzEMPTY" if (!defined($col));
294 unless ($patrons{$id}) {
295 $patrons{$id} = {name
=>$row, allcols
=>{}, newcols
=>{}, oldcols
=>{}};
297 $patrons{$id}->{oldcols
}->{$col} = $rank;
302 $strcalc =~ s/old_issues/issues/g;
303 $debug and print $debugfh "(issues) SQL : $strcalc\n";
304 $dbcalc = $dbh->prepare($strcalc);
306 $debug and print $debugfh "rows: ", $dbcalc->rows, "\n";
307 while (my @data = $dbcalc->fetchrow) {
308 my ($row, $rank, $id, $col) = @data;
309 $col = "zzEMPTY" if (!defined($col));
310 unless ($patrons{$id}) {
311 $patrons{$id} = {name
=>$row, allcols
=>{}, newcols
=>{}, oldcols
=>{}};
313 $patrons{$id}->{newcols
}->{$col} = $rank;
316 foreach my $id (keys %patrons) {
317 my @uniq = keys %{{ %{$patrons{$id}->{newcols
}}, %{$patrons{$id}->{oldcols
}} }}; # get uniq keys, see perlfaq4
319 my $count = ($patrons{$id}->{newcols
}->{$_} || 0) +
320 ($patrons{$id}->{oldcols
}->{$_} || 0);
321 $patrons{$id}->{allcols
}->{$_} = $count;
322 $patrons{$id}->{total
} += $count;
325 $debug and print $debugfh "\n\npatrons: ", Dumper
(\
%patrons);
328 my @cols_in_order = sort keys %columns; # if you want to order the columns, do something here
329 my @ranked_ids = sort {
330 $patrons{$b}->{total
} <=> $patrons{$a}->{total
}
331 || $patrons{$a}->{name
} cmp $patrons{$b}->{name
}
333 foreach my $id (@ranked_ids) {
336 foreach my $key (@cols_in_order) {
339 value
=> $patrons{$id}->{name
},
341 count
=> $patrons{$id}->{allcols
}->{$key},
345 value
=> $patrons{$id}->{name
},
347 count
=> $patrons{$id}->{total
},
351 push @looprow,{ 'rowtitle' => $i++ ,
352 'loopcell' => \
@loopcell,
353 'hilighted' => ($i%2),
355 # use a limit, if a limit is defined
356 last if $i > $limit and $limit
359 # the header of the table
360 $globalline{loopfilter
}=\
@loopfilter;
361 # the core of the table
362 $globalline{looprow
} = \
@looprow;
363 $globalline{loopcol
} = [ map {{coltitle
=>$_}} @cols_in_order ];
364 # the foot (totals by borrower type)
365 $globalline{loopfooter
} = [];
366 $globalline{total
}= $grantotal; # FIXME: useless
367 $globalline{column
} = $column;
368 return [\
%globalline]; # reference to a 1 element array: that element is a hashref
371 $debug and close $debugfh;