Sorting Branches by Branchcode on display.
[koha.git] / reports / bor_issues_top.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 CGI;
24 use C4::Auth;
25 use C4::Output;
26 use C4::Context;
27 use C4::Branch; # GetBranches
28 use C4::Koha;
29 use C4::Circulation;
30 use C4::Members;
31 use C4::Date;
32
33 =head1 NAME
34
35 plugin that shows a stats on borrowers
36
37 =head1 DESCRIPTION
38
39 =over 2
40
41 =cut
42
43 my $input = new CGI;
44 my $do_it=$input->param('do_it');
45 my $fullreportname = "reports/bor_issues_top.tmpl";
46 my $limit = $input->param("Limit");
47 my $column = $input->param("Criteria");
48 my @filters = $input->param("Filter");
49 $filters[0]=format_date_in_iso($filters[0]);
50 $filters[1]=format_date_in_iso($filters[1]);
51 $filters[2]=format_date_in_iso($filters[2]);
52 $filters[3]=format_date_in_iso($filters[3]);
53 my $output = $input->param("output");
54 my $basename = $input->param("basename");
55 my $mime = $input->param("MIME");
56 my $del = $input->param("sep");
57 #warn "calcul : ".$calc;
58 my ($template, $borrowernumber, $cookie)
59     = get_template_and_user({template_name => $fullreportname,
60                 query => $input,
61                 type => "intranet",
62                 authnotrequired => 0,
63                 flagsrequired => {reports => 1},
64                 debug => 1,
65                 });
66 $template->param(do_it => $do_it,
67         DHTMLcalendar_dateformat => get_date_format_string_for_DHTMLcalendar(),
68         );
69 if ($do_it) {
70 # Displaying results
71     my $results = calculate($limit, $column, \@filters);
72     if ($output eq "screen"){
73 # Printing results to screen
74         $template->param(mainloop => $results, limit=>$limit);
75         output_html_with_http_headers $input, $cookie, $template->output;
76         exit(1);
77     } else {
78 # Printing to a csv file
79         print $input->header(-type => 'application/vnd.sun.xml.calc',
80                             -encoding    => 'utf-8',
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     
121     my @mime = ( C4::Context->preference("MIME") );
122 #       foreach my $mime (@mime){
123 #               warn "".$mime;
124 #       }
125         my $CGIextChoice=CGI::scrolling_list(
126                                 -name     => 'MIME',
127                                 -id       => 'MIME',
128                                 -values   => \@mime,
129                                 -size     => 1,
130                                 -multiple => 0 );
131         
132         my @dels = ( C4::Context->preference("delimiter") );
133         my $CGIsepChoice=CGI::scrolling_list(
134                                 -name     => 'sep',
135                                 -id       => 'sep',
136                                 -values   => \@dels,
137                                 -size     => 1,
138                                 -multiple => 0 );
139         #branch
140         my $branches = GetBranches;
141         my @branchloop;
142         foreach my $thisbranch (sort keys %$branches) {
143             my %row =(value => $thisbranch,
144                                     branchname => $branches->{$thisbranch}->{'branchname'},
145                             );
146             push @branchloop, \%row;
147     }
148
149     #doctype
150     my $itemtypes = GetItemTypes;
151     my @itemtypeloop;
152     foreach my $thisitemtype (keys %$itemtypes) {
153 #                       my $selected = 1 if $thisbranch eq $branch;
154             my %row =(value => $thisitemtype,
155 #                                                                       selected => $selected,
156                                     description => $itemtypes->{$thisitemtype}->{'description'},
157                             );
158             push @itemtypeloop, \%row;
159     }
160     
161     #borcat
162     my ($codes,$labels) = GetborCatFromCatType(undef,undef);
163     my @borcatloop;
164     foreach my $thisborcat (sort keys %$labels) {
165 #                       my $selected = 1 if $thisbranch eq $branch;
166             my %row =(value => $thisborcat,
167 #                                                                       selected => $selected,
168                                     description => $labels->{$thisborcat},
169                             );
170             push @borcatloop, \%row;
171     }
172     
173     #Day
174     #Month
175     $template->param(
176                     CGIextChoice => $CGIextChoice,
177                     CGIsepChoice => $CGIsepChoice,
178                     branchloop =>\@branchloop,
179                     itemtypeloop =>\@itemtypeloop,
180                     borcatloop =>\@borcatloop,
181                     );
182 output_html_with_http_headers $input, $cookie, $template->output;
183 }
184
185
186
187
188 sub calculate {
189     my ($line, $column, $filters) = @_;
190     my @mainloop;
191     my @loopfooter;
192     my @loopcol;
193     my @loopline;
194     my @looprow;
195     my %globalline;
196     my $grantotal =0;
197 # extract parameters
198     my $dbh = C4::Context->dbh;
199
200 # Filters
201 # Checking filters
202 #
203     my @loopfilter;
204     for (my $i=0;$i<=6;$i++) {
205         my %cell;
206         if ( @$filters[$i] ) {
207             if (($i==1) and (@$filters[$i-1])) {
208                 $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
209             }
210             # format the dates filters, otherwise just fill as is
211             if ($i>=4) {
212                 $cell{filter} .= @$filters[$i];
213             } else {
214                 $cell{filter} .= format_date(@$filters[$i]);
215             }
216             $cell{crit} .="Issue From" if ($i==0);
217             $cell{crit} .="Issue To" if ($i==1);
218             $cell{crit} .="Return From" if ($i==2);
219             $cell{crit} .="Return To" if ($i==3);
220             $cell{crit} .="Branch" if ($i==4);
221             $cell{crit} .="Doc Type" if ($i==5);
222             $cell{crit} .="Bor Cat" if ($i==6);
223             $cell{crit} .="Day" if ($i==7);
224             $cell{crit} .="Month" if ($i==8);
225             $cell{crit} .="Year" if ($i==9);
226             push @loopfilter, \%cell;
227         }
228     }
229     my $colfield;
230     my $colorder;
231     if ($column){
232         $column = "issues.".$column if (($column=~/branchcode/) or ($column=~/timestamp/));
233         $column = "biblioitems.".$column if $column=~/itemtype/;
234         $column = "borrowers.".$column if $column=~/categorycode/;
235         my @colfilter ;
236         $colfilter[0] = @$filters[0] if ($column =~ /timestamp/ )  ;
237         $colfilter[1] = @$filters[1] if ($column =~ /timestamp/ )  ;
238         $colfilter[0] = @$filters[2] if ($column =~ /returndate/ )  ;
239         $colfilter[1] = @$filters[3] if ($column =~ /returndate/ )  ;
240         $colfilter[0] = @$filters[4] if ($column =~ /branch/ )  ;
241         $colfilter[0] = @$filters[5] if ($column =~ /itemtype/ )  ;
242         $colfilter[0] = @$filters[6] if ($column =~ /category/ )  ;
243     #   $colfilter[0] = @$filters[11] if ($column =~ /sort2/ ) ;
244         $colfilter[0] = @$filters[7] if ($column =~ /timestamp/ ) ;
245         $colfilter[0] = @$filters[8] if ($column =~ /timestamp/ ) ;
246         $colfilter[0] = @$filters[9] if ($column =~ /timestamp/ ) ;
247     #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
248                                                 
249     # loop cols.
250         if ($column eq "Day") {
251             #Display by day
252             $column = "issues.timestamp";
253             $colfield .="dayname($column)";  
254             $colorder .="weekday($column)";
255         } elsif ($column eq "Month") {
256             #Display by Month
257             $column = "issues.timestamp";
258             $colfield .="monthname($column)";  
259             $colorder .="month($column)";  
260         } elsif ($column eq "Year") {
261             #Display by Year
262             $column = "issues.timestamp";
263             $colfield .="Year($column)";
264             $colorder .= $column;
265         } else {
266             $colfield .= $column;
267             $colorder .= $column;
268         }  
269         
270         my $strsth2;
271         $strsth2 .= "select distinctrow $colfield FROM `issues`,borrowers,biblioitems LEFT JOIN items ON (biblioitems.biblioitemnumber=items.biblioitemnumber) WHERE issues.itemnumber=items.itemnumber AND issues.borrowernumber=borrowers.borrowernumber and returndate is not null";
272         if (($column=~/timestamp/) or ($column=~/returndate/)){
273             if ($colfilter[1] and ($colfilter[0])){
274                 $strsth2 .= " and $column between '$colfilter[0]' and '$colfilter[1]' " ;
275             } elsif ($colfilter[1]) {
276                     $strsth2 .= " and $column < '$colfilter[1]' " ;
277             } elsif ($colfilter[0]) {
278                 $strsth2 .= " and $column > '$colfilter[0]' " ;
279             }
280         } elsif ($colfilter[0]) {
281             $colfilter[0] =~ s/\*/%/g;
282             $strsth2 .= " and $column LIKE '$colfilter[0]' " ;
283         }
284         $strsth2 .=" group by $colfield";
285         $strsth2 .=" order by $colorder";
286         warn "". $strsth2;
287         
288         my $sth2 = $dbh->prepare( $strsth2 );
289         $sth2->execute;
290     
291         while (my ($celvalue) = $sth2->fetchrow) {
292             my %cell;
293             $cell{'coltitle'} = ($celvalue?$celvalue:"NULL");
294             push @loopcol, \%cell;
295         }
296     #   warn "fin des titres colonnes";
297     }
298     
299     my $i=0;
300 #       my @totalcol;
301     my $hilighted=-1;
302     
303     #Initialization of cell values.....
304     my @table;
305     
306 #       warn "init table";
307     for (my $i=1;$i<=$line;$i++) {
308         foreach my $col ( @loopcol ) {
309 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
310             $table[$i]->{($col->{coltitle})?$col->{coltitle}:"total"}->{'name'}=0;
311         }
312     }
313
314
315 # preparing calculation
316     my $strcalc ;
317     
318 # Processing average loanperiods
319     $strcalc .= "SELECT  CONCAT(borrowers.surname , \"\\t\",borrowers.firstname),  COUNT(*) AS RANK, borrowers.borrowernumber AS ID";
320     $strcalc .= " , $colfield " if ($colfield);
321     $strcalc .= " FROM `issues`,borrowers,biblioitems LEFT JOIN items ON (biblioitems.biblioitemnumber=items.biblioitemnumber)  WHERE issues.itemnumber=items.itemnumber AND issues.borrowernumber=borrowers.borrowernumber and returndate is not null";
322
323     @$filters[0]=~ s/\*/%/g if (@$filters[0]);
324     $strcalc .= " AND issues.timestamp > '" . @$filters[0] ."'" if ( @$filters[0] );
325     @$filters[1]=~ s/\*/%/g if (@$filters[1]);
326     $strcalc .= " AND issues.timestamp < '" . @$filters[1] ."'" if ( @$filters[1] );
327     @$filters[2]=~ s/\*/%/g if (@$filters[2]);
328     $strcalc .= " AND issues.returndate > '" . @$filters[2] ."'" if ( @$filters[2] );
329     @$filters[3]=~ s/\*/%/g if (@$filters[3]);
330     $strcalc .= " AND issues.returndate < '" . @$filters[3] ."'" if ( @$filters[3] );
331     @$filters[4]=~ s/\*/%/g if (@$filters[4]);
332     $strcalc .= " AND issues.branchcode like '" . @$filters[4] ."'" if ( @$filters[4] );
333     @$filters[5]=~ s/\*/%/g if (@$filters[5]);
334     $strcalc .= " AND biblioitems.itemtype like '" . @$filters[5] ."'" if ( @$filters[5] );
335     @$filters[6]=~ s/\*/%/g if (@$filters[6]);
336     $strcalc .= " AND borrowers.categorycode like '" . @$filters[6] ."'" if ( @$filters[6] );
337     @$filters[7]=~ s/\*/%/g if (@$filters[7]);
338     $strcalc .= " AND dayname(issues.timestamp) like '" . @$filters[7]."'" if (@$filters[7]);
339     @$filters[8]=~ s/\*/%/g if (@$filters[8]);
340     $strcalc .= " AND monthname(issues.timestamp) like '" . @$filters[8]."'" if (@$filters[8]);
341     @$filters[9]=~ s/\*/%/g if (@$filters[9]);
342     $strcalc .= " AND year(issues.timestamp) like '" . @$filters[9] ."'" if ( @$filters[9] );
343     
344     $strcalc .= " group by borrowers.borrowernumber";
345     $strcalc .= ", $colfield" if ($column);
346     $strcalc .= " order by RANK DESC";
347     $strcalc .= ",$colfield " if ($colfield);
348 #       my $max;
349 #       if (@loopcol) {
350 #               $max = $line*@loopcol;
351 #       } else { $max=$line;}
352 #       $strcalc .= " LIMIT 0,$max";
353     warn "SQL :". $strcalc;
354     
355     my $dbcalc = $dbh->prepare($strcalc);
356     $dbcalc->execute;
357 #       warn "filling table";
358     my $previous_col;
359     my %indice;
360     while (my  @data = $dbcalc->fetchrow) {
361         my ($row, $rank, $id, $col )=@data;
362         $col = "zzEMPTY" if ($col eq undef);
363         $indice{$col}=1 if (not($indice{$col}));
364         $table[$indice{$col}]->{$col}->{'name'}=$row;
365         $table[$indice{$col}]->{$col}->{'count'}=$rank;
366         $table[$indice{$col}]->{$col}->{'link'}=$id;
367 #               warn " ".$i." ".$col. " ".$row;
368         $indice{$col}++;
369     }
370     
371     push @loopcol,{coltitle => "Global"} if not($column);
372     
373     for ($i=1; $i<=$line;$i++) {
374         my @loopcell;
375         warn " $i";
376         #@loborrowersopcol ensures the order for columns is common with column titles
377         # and the number matches the number of columns
378         my $colcount=0;
379         foreach my $col ( @loopcol ) {
380 #                       warn " colonne :$col->{coltitle}";
381             my $value;
382             my $count=0;
383             my $link;
384             if (@loopcol){
385                 $value =$table[$i]->{(($col->{coltitle} eq "NULL") or ($col->{coltitle} eq "Global"))?"zzEMPTY":$col->{coltitle}}->{'name'};
386                 $count =$table[$i]->{(($col->{coltitle} eq "NULL") or ($col->{coltitle} eq "Global"))?"zzEMPTY":$col->{coltitle}}->{'count'};
387                 $link =$table[$i]->{(($col->{coltitle} eq "NULL") or ($col->{coltitle} eq "Global"))?"zzEMPTY":$col->{coltitle}}->{'link'};
388             } else {
389                 $value =$table[$i]->{"zzEMPTY"}->{'name'};
390                 $count =$table[$i]->{"zzEMPTY"}->{'count'};
391                 $link =$table[$i]->{"zzEMPTY"}->{'link'};
392             }
393 #                       warn " ".$i ." value:$value count:$count reference:$link";
394             push @loopcell, {value => $value, count =>$count, reference => $link} ;
395         }
396         push @looprow,{ 'rowtitle' => $i ,
397                         'loopcell' => \@loopcell,
398                         'hilighted' => ($hilighted >0),
399                     };
400         $hilighted = -$hilighted;
401     }
402 #       
403             
404
405     # the header of the table
406     $globalline{loopfilter}=\@loopfilter;
407     # the core of the table
408     $globalline{looprow} = \@looprow;
409     $globalline{loopcol} = \@loopcol;
410 #       # the foot (totals by borrower type)
411     $globalline{loopfooter} = \@loopfooter;
412     $globalline{total}= $grantotal;
413     $globalline{line} = $line;
414     $globalline{column} = $column;
415     push @mainloop,\%globalline;
416     return \@mainloop;
417 }
418
419 1;