New XML API
[koha.git] / reports / issues_stats.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
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 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use C4::Search;
27 use C4::Koha;
28 use C4::Interface::CGI::Output;
29 use C4::Circulation::Circ2;
30 use Date::Manip;
31
32 =head1 NAME
33
34 plugin that shows a stats on borrowers
35
36 =head1 DESCRIPTION
37
38
39 =over2
40
41 =cut
42
43
44
45 my $input = new CGI;
46 my $do_it=$input->param('do_it');
47 my $fullreportname = "reports/issues_stats.tmpl";
48 my $line = $input->param("Line");
49 my $column = $input->param("Column");
50 my @filters = $input->param("Filter");
51 my $podsp = $input->param("DisplayBy");
52 my $type = $input->param("PeriodTypeSel");
53 my $daysel = $input->param("PeriodDaySel");
54 my $monthsel = $input->param("PeriodMonthSel");
55 my $calc = $input->param("Cellvalue");
56 my $output = $input->param("output");
57 my $basename = $input->param("basename");
58 my $mime = $input->param("MIME");
59 my $del = $input->param("sep");
60 #warn "calcul : ".$calc;
61 my ($template, $borrowernumber, $cookie)
62         = get_template_and_user({template_name => $fullreportname,
63                                 query => $input,
64                                 type => "intranet",
65                                 authnotrequired => 0,
66                                 flagsrequired => {editcatalogue => 1},
67                                 debug => 1,
68                                 });
69 $template->param(do_it => $do_it);
70 if ($do_it) {
71 # Displaying results
72         my $results = calculate($line, $column, $podsp, $type, $daysel, $monthsel, $calc, \@filters);
73         if ($output eq "screen"){
74 # Printing results to screen
75                 $template->param(mainloop => $results);
76                 output_html_with_http_headers $input, $cookie, $template->output;
77                 exit(1);
78         } else {
79 # Printing to a csv file
80                 print $input->header(-type => 'application/vnd.sun.xml.calc',
81                         -attachment=>"$basename.csv",
82                         -filename=>"$basename.csv" );
83                 my $cols = @$results[0]->{loopcol};
84                 my $lines = @$results[0]->{looprow};
85                 my $sep;
86                 $sep =C4::Context->preference("delimiter");
87 # header top-right
88                 print @$results[0]->{line} ."/". @$results[0]->{column} .$sep;
89 # Other header
90                 foreach my $col ( @$cols ) {
91                         print $col->{coltitle}.$sep;
92                 }
93                 print "Total\n";
94 # Table
95                 foreach my $line ( @$lines ) {
96                         my $x = $line->{loopcell};
97                         print $line->{rowtitle}.$sep;
98                         foreach my $cell (@$x) {
99                                 print $cell->{value}.$sep;
100                         }
101                         print $line->{totalrow};
102                         print "\n";
103                 }
104 # footer
105                 print "TOTAL";
106                 $cols = @$results[0]->{loopfooter};
107                 foreach my $col ( @$cols ) {
108                         print $sep.$col->{totalcol};
109                 }
110                 print $sep.@$results[0]->{total};
111                 exit(1);
112         }
113 # Displaying choices
114 } else {
115         my $dbh = C4::Context->dbh;
116         my @values;
117         my %labels;
118         my %select;
119         my $req;
120         $req = $dbh->prepare("select distinctrow categorycode,description from categories order by description");
121         $req->execute;
122         my @select;
123         push @select,"";
124         $select{""}="";
125         while (my ($value, $desc) =$req->fetchrow) {
126                 push @select, $value;
127                 $select{$value}=$desc;
128         }
129         my $CGIBorCat=CGI::scrolling_list( -name     => 'Filter',
130                                 -id => 'Filter',
131                                 -values   => \@select,
132                                 -labels   => \%select,
133                                 -size     => 1,
134                                 -multiple => 0 );
135         
136         $req = $dbh->prepare( "select distinctrow itemtype,description from itemtypes order by description");
137         $req->execute;
138         undef @select;
139         undef %select;
140         push @select,"";
141         $select{""}="";
142         while (my ($value,$desc) =$req->fetchrow) {
143                 push @select, $value;
144                 $select{$value}=$desc;
145         }
146         my $CGIItemTypes=CGI::scrolling_list( -name     => 'Filter',
147                                 -id => 'Filter',
148                                 -values   => \@select,
149                                 -labels    => \%select,
150                                 -size     => 1,
151                                 -multiple => 0 );
152         
153         $req = $dbh->prepare("select distinctrow sort1 from borrowers where sort1 is not null order by sort1");
154         $req->execute;
155         undef @select;
156         push @select,"";
157         my $hassort1;
158         while (my ($value) =$req->fetchrow) {
159                 $hassort1 =1 if ($value);
160                 push @select, $value;
161         }
162         my $branches=GetBranches();
163         my @select_branch;
164         my %select_branches;
165         push @select_branch,"";
166         $select_branches{""} = "";
167         foreach my $branch (keys %$branches) {
168                 push @select_branch, $branch;
169                 $select_branches{$branch} = $branches->{$branch}->{'branchname'};
170         }
171         my $CGIBranch=CGI::scrolling_list( -name     => 'Filter',
172                                 -id => 'Filter',
173                                 -values   => \@select_branch,
174                                 -labels   => \%select_branches,
175                                 -size     => 1,
176                                 -multiple => 0 );
177         
178         my $CGISort1=CGI::scrolling_list( -name     => 'Filter',
179                                 -id => 'Filter',
180                                 -values   => \@select,
181                                 -size     => 1,
182                                 -multiple => 0 );
183         
184         $req = $dbh->prepare("select distinctrow sort2 from borrowers where sort2 is not null order by sort2");
185         $req->execute;
186         undef @select;
187         push @select,"";
188         my $hassort2;
189         my $hglghtsort2;
190         while (my ($value) =$req->fetchrow) {
191                 $hassort2 =1 if ($value);
192                 $hglghtsort2= !($hassort1);
193                 push @select, $value;
194         }
195         my $CGISort2=CGI::scrolling_list( -name     => 'Filter',
196                                 -id => 'Filter',
197                                 -values   => \@select,
198                                 -size     => 1,
199                                 -multiple => 0 );
200         
201         my @mime = ( C4::Context->preference("MIME") );
202 #       foreach my $mime (@mime){
203 #               warn "".$mime;
204 #       }
205         
206         my $CGIextChoice=CGI::scrolling_list(
207                                 -name     => 'MIME',
208                                 -id       => 'MIME',
209                                 -values   => \@mime,
210                                 -size     => 1,
211                                 -multiple => 0 );
212         
213         my @dels = ( C4::Context->preference("delimiter") );
214         my $CGIsepChoice=CGI::scrolling_list(
215                                 -name     => 'sep',
216                                 -id       => 'sep',
217                                 -values   => \@dels,
218                                 -size     => 1,
219                                 -multiple => 0 );
220         
221         $template->param(
222                                         CGIBorCat => $CGIBorCat,
223                                         CGIItemType => $CGIItemTypes,
224                                         CGIBranch => $CGIBranch,
225                                         hassort1=> $hassort1,
226                                         hassort2=> $hassort2,
227                                         HlghtSort2 => $hglghtsort2,
228                                         CGISort1 => $CGISort1,
229                                         CGISort2 => $CGISort2,
230                                         CGIextChoice => $CGIextChoice,
231                                         CGIsepChoice => $CGIsepChoice
232                                         );
233 output_html_with_http_headers $input, $cookie, $template->output;
234 }
235
236
237
238
239 sub calculate {
240         my ($line, $column, $dsp, $type,$daysel,$monthsel ,$process, $filters) = @_;
241         my @mainloop;
242         my @loopfooter;
243         my @loopcol;
244         my @loopline;
245         my @looprow;
246         my %globalline;
247         my $grantotal =0;
248 # extract parameters
249         my $dbh = C4::Context->dbh;
250
251 # Filters
252 # Checking filters
253 #
254         my @loopfilter;
255         for (my $i=0;$i<=6;$i++) {
256                 my %cell;
257                 if ( @$filters[$i] ) {
258                         if (($i==1) and (@$filters[$i-1])) {
259                                 $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
260                         }
261                         $cell{filter} .= @$filters[$i];
262                         $cell{crit} .="Period From" if ($i==0);
263                         $cell{crit} .="Period To" if ($i==1);
264                         $cell{crit} .="Borrower Cat" if ($i==2);
265                         $cell{crit} .="Doc Type" if ($i==3);
266                         $cell{crit} .="Branch" if ($i==4);
267                         $cell{crit} .="Sort1" if ($i==5);
268                         $cell{crit} .="Sort2" if ($i==6);
269                         push @loopfilter, \%cell;
270                 }
271         }
272         push @loopfilter,{crit=>"Issue|Return ",filter=>$type};
273         push @loopfilter,{crit=>"Display by ",filter=>$dsp} if ($dsp);
274         push @loopfilter,{crit=>"Select Day ",filter=>$daysel} if ($daysel);
275         push @loopfilter,{crit=>"Select Month ",filter=>$monthsel} if ($monthsel);
276         
277         
278         my @linefilter;
279 #       warn "filtres ".@filters[0];
280 #       warn "filtres ".@filters[1];
281 #       warn "filtres ".@filters[2];
282 #       warn "filtres ".@filters[3];
283         
284         $linefilter[0] = @$filters[0] if ($line =~ /datetime/ )  ;
285         $linefilter[1] = @$filters[1] if ($line =~ /datetime/ )  ;
286         $linefilter[0] = @$filters[2] if ($line =~ /category/ )  ;
287         $linefilter[0] = @$filters[3] if ($line =~ /itemtype/ )  ;
288         $linefilter[0] = @$filters[4] if ($line =~ /branch/ )  ;
289 #       $linefilter[0] = @$filters[11] if ($line =~ /sort2/ ) ;
290         $linefilter[0] = @$filters[5] if ($line =~ /sort1/ ) ;
291         $linefilter[0] = @$filters[6] if ($line =~ /sort2/ ) ;
292 #warn "filtre lignes".$linefilter[0]." ".$linefilter[1];
293
294         my @colfilter ;
295         $colfilter[0] = @$filters[0] if ($column =~ /datetime/) ;
296         $colfilter[1] = @$filters[1] if ($column =~ /datetime/) ;
297         $colfilter[0] = @$filters[2] if ($column =~ /category/) ;
298         $colfilter[0] = @$filters[3] if ($column =~ /itemtype/) ;
299         $colfilter[0] = @$filters[4] if ($column =~ /branch/ )  ;
300         $colfilter[0] = @$filters[5] if ($column =~ /sort1/  )  ;
301         $colfilter[0] = @$filters[6] if ($column =~ /sort2/  )  ;
302 #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
303                                               
304 # 1st, loop rows.                             
305         my $linefield;                               
306         if (($line =~/datetime/) and ($dsp == 1)) {
307                 #Display by day
308                 $linefield .="concat(weekday($line),' ',dayname($line))";  
309         } elsif (($line=~/datetime/) and ($dsp == 2)) {
310                 #Display by Month
311                 $linefield .="monthname($line)";  
312         } elsif (($line=~/datetime/) and ($dsp == 3)) {
313                 #Display by Year
314                 $linefield .="Year($line)";
315         } elsif ($line=~/datetime/) {
316                 $linefield .= 'date_format(`datetime`,"%Y-%m-%d")';
317         } else {
318                 $linefield .= $line;
319         }  
320         my $lineorder = $linefield;
321         $lineorder = "weekday($line)" if $lineorder =~ "^dayname";
322
323         my $strsth;
324         $strsth .= "select distinctrow $linefield from statistics, borrowers where (statistics.borrowernumber=borrowers.borrowernumber) and $line is not null ";
325         
326         if ($line=~/datetime/) {
327                 if ($linefilter[1] and ($linefilter[0])){
328                         $strsth .= " and $line between ? and ? " ;
329                 } elsif ($linefilter[1]) {
330                                 $strsth .= " and $line < ? " ;
331                 } elsif ($linefilter[0]) {
332                         $strsth .= " and $line > ? " ;
333                 }
334                 $strsth .= " and type ='".$type."' " if $type;
335                 $strsth .= " and dayname(datetime) ='". $daysel ."' " if $daysel;
336                 $strsth .= " and monthname(datetime) ='". $monthsel ."' " if $monthsel;
337         } elsif ($linefilter[0]) {
338                 $linefilter[0] =~ s/\*/%/g;
339                 $strsth .= " and $line LIKE ? " ;
340         }
341         $strsth .=" group by $linefield";
342         $strsth .=" order by $lineorder";
343         warn "". $strsth;
344         
345         my $sth = $dbh->prepare( $strsth );
346         if (( @linefilter ) and ($linefilter[1])){
347                 $sth->execute("'".$linefilter[0]."'","'".$linefilter[1]."'");
348         } elsif ($linefilter[0]) {
349                 $sth->execute($linefilter[0]);
350         } else {
351                 $sth->execute;
352         }
353         
354         while ( my ($celvalue) = $sth->fetchrow) {
355                 my %cell;
356                 if ($celvalue) {
357                         $cell{rowtitle} = $celvalue;
358                 } else {
359                         $cell{rowtitle} = "";
360                 }
361                 $cell{totalrow} = 0;
362                 push @loopline, \%cell;
363         }
364
365 # 2nd, loop cols.
366         my $colfield;                               
367         if (($column =~/datetime/) and ($dsp == 1)) {
368                 #Display by day
369                 $colfield .="dayname($column)";  
370         } elsif (($column=~/datetime/) and ($dsp == 2)) {
371                 #Display by Month
372                 $colfield .="monthname($column)";  
373         } elsif (($column=~/datetime/) and ($dsp == 3)) {
374                 #Display by Year
375                 $colfield .="Year($column)";
376         } elsif ($column=~/datetime/) {
377                 $colfield .='date_format(`datetime`,"%Y-%m-%d")';       
378         } else {
379                 $colfield .= $column;
380         }  
381         
382         my $strsth2;
383         $strsth2 .= "select distinctrow $colfield from statistics, borrowers where (statistics.borrowernumber=borrowers.borrowernumber) and $column is not null ";
384         
385         if ($column=~/datetime/){
386                 if (($colfilter[1]) and ($colfilter[0])){
387                         $strsth2 .= " and $column between ? and ? " ;
388                 } elsif ($colfilter[1]) {
389                         $strsth2 .= " and $column < ? " ;
390                 } elsif ($colfilter[0]) {
391                         $strsth2 .= " and $column > ? " ;
392                 }
393                 $strsth2 .= " and type ='".$type."' " if $type;
394                 $strsth2 .= " and dayname(datetime) ='". $daysel ."' " if $daysel;
395                 $strsth2 .= " and monthname(datetime) ='". $monthsel ."' " if $monthsel;
396         } elsif ($colfilter[0]) {
397                 $colfilter[0] =~ s/\*/%/g;
398                 $strsth2 .= " and $column LIKE ? " ;
399         }
400         $strsth2 .=" group by $colfield";
401         $strsth2 .=" order by $colfield";
402 #       warn "". $strsth2;
403         
404         my $sth2 = $dbh->prepare( $strsth2 );
405         if (( @colfilter ) and ($colfilter[1])){
406                 $sth2->execute("'".$colfilter[0]."'","'".$colfilter[1]."'");
407         } elsif ($colfilter[0]) {
408                 $sth2->execute($colfilter[0]);
409         } else {
410                 $sth2->execute;
411         }
412         
413
414         while (my ($celvalue) = $sth2->fetchrow) {
415                 my %cell;
416                 my %ft;
417 #               warn "coltitle :".$celvalue;
418                 $cell{coltitle} = $celvalue;
419                 $ft{totalcol} = 0;
420                 push @loopcol, \%cell;
421         }
422 #       warn "fin des titres colonnes";
423
424         my $i=0;
425         my @totalcol;
426         my $hilighted=-1;
427         
428         #Initialization of cell values.....
429         my %table;
430 #       warn "init table";
431         foreach my $row ( @loopline ) {
432                 foreach my $col ( @loopcol ) {
433 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
434                         $table{$row->{rowtitle}}->{$col->{coltitle}}=0;
435                 }
436                 $table{$row->{rowtitle}}->{totalrow}=0;
437         }
438
439 # preparing calculation
440         my $strcalc ;
441
442         $strcalc .= "SELECT $linefield, $colfield, ";
443         $strcalc .= "COUNT( * ) " if ($process ==1);
444         if ($process ==3){
445                 my $rqbookcount = $dbh->prepare("SELECT count(*) FROM items");
446                 $rqbookcount->execute;
447                 my ($bookcount) = $rqbookcount->fetchrow;
448                 $strcalc .= "100*(COUNT(itemnumber))/ $bookcount " ;
449         }
450         $strcalc .= "FROM statistics,borrowers where (statistics.borrowernumber=borrowers.borrowernumber) ";
451
452         @$filters[0]=~ s/\*/%/g if (@$filters[0]);
453         $strcalc .= " AND statistics.datetime > '" . @$filters[0] ."'" if ( @$filters[0] );
454         @$filters[1]=~ s/\*/%/g if (@$filters[1]);
455         $strcalc .= " AND statistics.datetime < '" . @$filters[1] ."'" if ( @$filters[1] );
456         @$filters[2]=~ s/\*/%/g if (@$filters[2]);
457         $strcalc .= " AND borrowers.categorycode like '" . @$filters[2] ."'" if ( @$filters[2] );
458         @$filters[3]=~ s/\*/%/g if (@$filters[3]);
459         $strcalc .= " AND statistics.itemtype like '" . @$filters[3] ."'" if ( @$filters[3] );
460         @$filters[4]=~ s/\*/%/g if (@$filters[4]);
461         $strcalc .= " AND statistics.branch like '" . @$filters[4] ."'" if ( @$filters[4] );
462         @$filters[5]=~ s/\*/%/g if (@$filters[5]);
463         $strcalc .= " AND borrowers.sort1 like '" . @$filters[5] ."'" if ( @$filters[5] );
464         @$filters[6]=~ s/\*/%/g if (@$filters[6]);
465         $strcalc .= " AND borrowers.sort2 like '" . @$filters[6] ."'" if ( @$filters[6] );
466         $strcalc .= " AND dayname(datetime) like '" . $daysel ."'" if ( $daysel );
467         $strcalc .= " AND monthname(datetime) like '" . $monthsel ."'" if ( $monthsel );
468         $strcalc .= " AND statistics.type like '" . $type ."'" if ( $type );
469         
470         $strcalc .= " group by $linefield, $colfield order by $lineorder,$colfield";
471         warn "". $strcalc;
472         my $dbcalc = $dbh->prepare($strcalc);
473         $dbcalc->execute;
474 #       warn "filling table";
475         my $emptycol; 
476         while (my ($row, $col, $value) = $dbcalc->fetchrow) {
477 #               warn "filling table $row / $col / $value ";
478                 $emptycol = 1 if ($col eq undef);
479                 $col = "zzEMPTY" if ($col eq undef);
480                 $row = "zzEMPTY" if ($row eq undef);
481                 
482                 $table{$row}->{$col}+=$value;
483                 $table{$row}->{totalrow}+=$value;
484                 $grantotal += $value;
485         }
486         push @loopcol,{coltitle => "NULL"} if ($emptycol);
487
488         foreach my $row ( sort keys %table ) {
489                 my @loopcell;
490                 #@loopcol ensures the order for columns is common with column titles
491                 # and the number matches the number of columns
492                 foreach my $col ( @loopcol ) {
493                         my $value =$table{$row}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
494                         push @loopcell, {value => $value  } ;
495                 }
496                 push @looprow,{ 'rowtitle' => ($row eq "zzEMPTY")?"NULL":$row,
497                                                         'loopcell' => \@loopcell,
498                                                         'hilighted' => ($hilighted >0),
499                                                         'totalrow' => $table{$row}->{totalrow}
500                                                 };
501                 $hilighted = -$hilighted;
502         }
503         
504 #       warn "footer processing";
505         foreach my $col ( @loopcol ) {
506                 my $total=0;
507                 foreach my $row ( @looprow ) {
508                         $total += $table{($row->{rowtitle} eq "NULL")?"zzEMPTY":$row->{rowtitle}}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
509 #                       warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
510                 }
511 #               warn "summ for column ".$col->{coltitle}."  = ".$total;
512                 push @loopfooter, {'totalcol' => $total};
513         }
514                         
515
516         # the header of the table
517         $globalline{loopfilter}=\@loopfilter;
518         # the core of the table
519         $globalline{looprow} = \@looprow;
520         $globalline{loopcol} = \@loopcol;
521 #       # the foot (totals by borrower type)
522         $globalline{loopfooter} = \@loopfooter;
523         $globalline{total}= $grantotal;
524         $globalline{line} = $line;
525         $globalline{column} = $column;
526         push @mainloop,\%globalline;
527         return \@mainloop;
528 }
529
530 1;