Add a new Debian package and GoogleJacket on OPAC detail page
[koha.git] / reports / borrowers_stats.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use CGI;
22 use C4::Auth;
23 use C4::Context;
24 use C4::Branch; # GetBranches
25 use C4::Koha;
26 use C4::Dates;
27 use C4::Acquisition;
28 use C4::Output;
29 use C4::Circulation;
30 use Date::Calc qw(
31   Today
32   Add_Delta_YM
33   );
34
35 =head1 NAME
36
37 plugin that shows a stats on borrowers
38
39 =head1 DESCRIPTION
40
41 =over 2
42
43 =cut
44
45 my $input = new CGI;
46 my $do_it=$input->param('do_it');
47 my $fullreportname = "reports/borrowers_stats.tmpl";
48 my $line = $input->param("Line");
49 my $column = $input->param("Column");
50 my @filters = $input->param("Filter");
51 my $digits = $input->param("digits");
52 my $period = $input->param("period");
53 my $borstat = $input->param("status");
54 my $borstat1 = $input->param("activity");
55 my $output = $input->param("output");
56 my $basename = $input->param("basename");
57 my $mime = $input->param("MIME");
58 my $del = $input->param("sep");
59
60 my ($template, $borrowernumber, $cookie)
61         = get_template_and_user({template_name => $fullreportname,
62                                 query => $input,
63                                 type => "intranet",
64                                 authnotrequired => 0,
65                                 flagsrequired => {reports=> 1},
66                                 debug => 1,
67                                 });
68 $template->param(do_it => $do_it);
69 if ($do_it) {
70         my $results = calculate($line, $column, $digits, $borstat,$borstat1 ,\@filters);
71         if ($output eq "screen"){
72                 $template->param(mainloop => $results);
73                 output_html_with_http_headers $input, $cookie, $template->output;
74                 exit(1);
75         } else {
76                 print $input->header(-type => 'application/vnd.sun.xml.calc',
77                                      -encoding    => 'utf-8',
78                                      -name=>"$basename.csv",
79                                      -attachment=>"$basename.csv");
80                 my $cols = @$results[0]->{loopcol};
81                 my $lines = @$results[0]->{looprow};
82                 my $sep;
83                 $sep =C4::Context->preference("delimiter");
84                 print @$results[0]->{line} ."/". @$results[0]->{column} .$sep;
85                 foreach my $col ( @$cols ) {
86                         print $col->{coltitle}.$sep;
87                 }
88                 print "Total\n";
89                 foreach my $line ( @$lines ) {
90                         my $x = $line->{loopcell};
91                         print $line->{rowtitle}.$sep;
92                         foreach my $cell (@$x) {
93                                 print $cell->{value}.$sep;
94                         }
95                         print $line->{totalrow};
96                         print "\n";
97                 }
98                 print "TOTAL";
99                 $cols = @$results[0]->{loopfooter};
100                 foreach my $col ( @$cols ) {
101                         print $sep.$col->{totalcol};
102                 }
103                 print $sep.@$results[0]->{total};
104                 exit(1);
105         }
106 } else {
107         my $dbh = C4::Context->dbh;
108         my @values;
109         my %labels;
110         my $req;
111         $req = $dbh->prepare( "select categorycode, description from categories order by description");
112         $req->execute;
113         my %select_catcode;
114         my @select_catcode;
115         push @select_catcode,"";
116         $select_catcode{""} ="";
117         while (my ($catcode, $description) =$req->fetchrow) {
118                 push @select_catcode, $catcode;
119                 $select_catcode{$catcode} = $description;
120         }
121         my $CGICatCode=CGI::scrolling_list( -name     => 'Filter',
122                                 -id => 'catcode',
123                                 -values   => \@select_catcode,
124                                 -labels   => \%select_catcode,
125                                 -size     => 1,
126                                 -multiple => 0 );
127
128         
129 my $branches = GetBranches;
130 my @branchloop;
131 my @select_branch;
132 #my %select_branches;
133 push @select_branch,"";
134 #$select_branches{""}="";
135 foreach my $thisbranch (sort keys %$branches) {
136         push @select_branch,$thisbranch;
137    # my $selected = 1 if $thisbranch eq $branch;
138     my %row =(value => $thisbranch,
139 #                selected => $selected,
140                 branchname => $branches->{$thisbranch}->{'branchname'},
141             );
142     push @branchloop, \%row;
143 }
144     my $CGIBranch=CGI::scrolling_list( -name     => 'Filter',
145                              -id => 'branch',
146                              -values   => \@select_branch,
147 #                             -labels   => \%select_branches,
148                              -size     => 1,
149                              -multiple => 0 );
150
151
152         $req = $dbh->prepare( "select distinctrow zipcode from borrowers order by zipcode");
153         $req->execute;
154         my @select_zipcode;
155         push @select_zipcode,"";
156         while (my ($value) =$req->fetchrow) {
157                 if ($value) {
158                         push @select_zipcode, $value;
159                 }
160         }
161
162         my $CGIZipCode=CGI::scrolling_list( -name     => 'Filter',
163                                 -id => 'zipcode',
164                                 -values   => \@select_zipcode,
165                                 -size     => 1,
166                                 -multiple => 0 );
167
168
169         $req = $dbh->prepare( "SELECT authorised_value,lib FROM authorised_values WHERE category='Bsort1' order by lib");
170         $req->execute;
171         my @select_sort1;
172         my %select_sort1;
173         push @select_sort1,"";
174         $select_sort1{""}="";
175         my $hassort1;
176         while (my ($auth_value,$lib) =$req->fetchrow) {
177                 if ($auth_value) {
178                         $hassort1=1;
179                         push @select_sort1, $auth_value;
180                         $select_sort1{$auth_value}=$lib
181                 }
182         }
183
184         my $CGIsort1=CGI::scrolling_list( -name     => 'Filter',
185                                 -id => 'sort1',
186                                 -values   => \@select_sort1,
187                                 -labels =>\%select_sort1,
188                                 -size     => 1,
189                                 -multiple => 0 );
190         
191         $req = $dbh->prepare( "select distinctrow sort2 from borrowers order by sort2");
192         $req->execute;
193         my @select_sort2;
194         push @select_sort2,"";
195         my $hassort2;
196         while (my ($value) =$req->fetchrow) {
197                 if ($value) {
198                         $hassort2 = 1;
199                         push @select_sort2, $value;
200                 }
201         }
202         my $CGIsort2=CGI::scrolling_list( -name     => 'Filter',
203                                 -id => 'sort2',
204                                 -values   => \@select_sort2,
205                                 -size     => 1,
206                                 -multiple => 0 );
207         
208         my @mime = ( C4::Context->preference("MIME") );
209         # warn 'MIME(s): ' . join ' ', @mime;
210         my $CGIextChoice=CGI::scrolling_list(
211                                 -name => 'MIME',
212                                 -id => 'MIME',
213                                 -values   => \@mime,
214                                 -size     => 1,
215                                 -multiple => 0 );
216         
217         my @dels = ( C4::Context->preference("delimiter") );
218         my $CGIsepChoice=CGI::scrolling_list(
219                                 -name => 'sep',
220                                 -id => 'sep',
221                                 -values   => \@dels,
222                                 -size     => 1,
223                                 -multiple => 0 );
224
225         $template->param(               CGICatCode => $CGICatCode,
226                                         CGIZipCode => $CGIZipCode,
227                                         CGISort1 => $CGIsort1,
228                                         hassort1 => $hassort1,
229                                         CGISort2 => $CGIsort2,
230                                         hassort2 => $hassort2,
231                                         CGIextChoice => $CGIextChoice,
232                                         CGIsepChoice => $CGIsepChoice,
233                                         CGIBranch => $CGIBranch,
234                                         DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
235                     );
236
237 }
238 output_html_with_http_headers $input, $cookie, $template->output;
239
240
241
242 sub calculate {
243         my ($line, $column, $digits, $status, $activity, $filters) = @_;
244         my @mainloop;
245         my @loopfooter;
246         my @loopcol;
247         my @loopline;
248         my @looprow;
249         my %globalline;
250         my $grantotal =0;
251 # extract parameters
252         my $dbh = C4::Context->dbh;
253
254 # Filters
255         my $linefilter = "";
256 #       warn "filtres ".@filters[0];
257 #       warn "filtres ".@filters[4];
258 #       warn "filtres ".@filters[5];
259 #       warn "filtres ".@filters[6];
260
261         
262         $linefilter = @$filters[0] if ($line =~ /categorycode/ )  ;
263         $linefilter = @$filters[1] if ($line =~ /zipcode/ )  ;
264         $linefilter = @$filters[2] if ($line =~ /branchcode/ ) ;
265         $linefilter = @$filters[5] if ($line =~ /sort1/ ) ;
266         $linefilter = @$filters[6] if ($line =~ /sort2/ ) ;
267
268         my $colfilter = "";
269         $colfilter = @$filters[0] if ($column =~ /categorycode/);
270         $colfilter = @$filters[1] if ($column =~ /zipcode/);
271         $colfilter = @$filters[2] if ($column =~ /branchcode/);
272         $colfilter = @$filters[5] if ($column =~ /sort1/);
273         $colfilter = @$filters[6] if ($column =~ /sort2/);
274
275         my @loopfilter;
276         for (my $i=0;$i<=6;$i++) {
277                 my %cell;
278                 if ( @$filters[$i] ) {
279                         $cell{filter} .= @$filters[$i];
280                         $cell{crit} .="Cat Code " if ($i==0);
281                         $cell{crit} .="Zip Code" if ($i==1);
282                         $cell{crit} .="Branchcode" if ($i==2);
283                         $cell{crit} .="Date of Birth" if ($i==3);
284                         $cell{crit} .="Date of Birth" if ($i==4);
285                         $cell{crit} .="Sort1" if ($i==5);
286                         $cell{crit} .="Sort2" if ($i==6);
287                         push @loopfilter, \%cell;
288                 }
289         }
290         if ($status) {
291                 push @loopfilter,{crit=>"Status",filter=>$status}
292         }
293                 
294         if ($activity) {
295                 push @loopfilter,{crit=>"Activity",filter=>$activity};
296         }
297 # year of activity
298         my ( $period_year, $period_month, $period_day )=Add_Delta_YM( Today(),-$period, 0);
299         my $newperioddate=$period_year."-".$period_month."-".$period_day;
300 #       warn "PERIOD".$period;
301 # 1st, loop rows.
302         my $linefield;
303         if (($line =~/zipcode/) and ($digits)) {
304                 $linefield .="left($line,$digits)";
305         } else{
306                 $linefield .= $line;
307         }
308         
309         my $strsth;
310         $strsth .= "select distinctrow $linefield from borrowers where $line is not null ";
311         $linefilter =~ s/\*/%/g;
312         if ( $linefilter ) {
313                 $strsth .= " and $linefield LIKE ? " ;
314         }
315         $strsth .= " and $status='1' " if ($status);
316         $strsth .=" order by $linefield";
317 #       warn "". $strsth;
318         
319         my $sth = $dbh->prepare( $strsth );
320         if ( $linefilter ) {
321                 $sth->execute($linefilter);
322         } else {
323                 $sth->execute;
324         }
325         while ( my ($celvalue) = $sth->fetchrow) {
326                 my %cell;
327                 if ($celvalue) {
328                         $cell{rowtitle} = $celvalue;
329 #               } else {
330 #                       $cell{rowtitle} = "";
331                 }
332                 $cell{totalrow} = 0;
333                 push @loopline, \%cell;
334         }
335
336 # 2nd, loop cols.
337         my $colfield;
338         if (($column =~/zipcode/) and ($digits)) {
339                 $colfield .= "left($column,$digits)";
340         } else{
341                 $colfield .= $column;
342         }
343         my $strsth2;
344         $colfilter =~ s/\*/%/g;
345         $strsth2 .= "select distinctrow $colfield from borrowers where $column is not null";
346         if ( $colfilter ) {
347                 $strsth2 .= " and $colfield LIKE ? ";
348         }
349         $strsth2 .= " and $status='1' " if ($status);
350         $strsth2 .= " order by $colfield";
351 #       warn "". $strsth2;
352         my $sth2 = $dbh->prepare( $strsth2 );
353         if ($colfilter) {
354                 $sth2->execute($colfilter);
355         } else {
356                 $sth2->execute;
357         }
358         while (my ($celvalue) = $sth2->fetchrow) {
359                 my %cell;
360                 my %ft;
361                 if ($celvalue) {
362                         $cell{coltitle} = $celvalue;
363                 }
364                 push @loopcol, \%cell;
365         }
366         
367
368         my $i=0;
369         my @totalcol;
370         my $hilighted=-1;
371         
372         #Initialization of cell values.....
373         my %table;
374 #       warn "init table";
375         foreach my $row ( @loopline ) {
376                 foreach my $col ( @loopcol ) {
377 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
378                         $table{$row->{rowtitle}}->{$col->{coltitle}}=0;
379                 }
380                 $table{$row->{rowtitle}}->{totalrow}=0;
381         }
382
383 # preparing calculation
384         my $strcalc .= "SELECT $linefield, $colfield, count( * ) FROM borrowers WHERE 1 ";
385         @$filters[0]=~ s/\*/%/g if (@$filters[0]);
386         $strcalc .= " AND categorycode like '" . @$filters[0] ."'" if ( @$filters[0] );
387         @$filters[1]=~ s/\*/%/g if (@$filters[1]);
388         $strcalc .= " AND zipcode like '" . @$filters[1] ."'" if ( @$filters[1] );
389         @$filters[2]=~ s/\*/%/g if (@$filters[2]);
390         $strcalc .= " AND branchcode like '" . @$filters[2] ."'" if ( @$filters[2] );
391         @$filters[3]=~ s/\*/%/g if (@$filters[3]);
392         $strcalc .= " AND dateofbirth > '" . @$filters[3] ."'" if ( @$filters[3] );
393         @$filters[4]=~ s/\*/%/g if (@$filters[4]);
394         $strcalc .= " AND dateofbirth < '" . @$filters[4] ."'" if ( @$filters[4] );
395         @$filters[5]=~ s/\*/%/g if (@$filters[5]);
396         $strcalc .= " AND sort1 like '" . @$filters[5] ."'" if ( @$filters[5] );
397         @$filters[6]=~ s/\*/%/g if (@$filters[6]);
398         $strcalc .= " AND sort2 like '" . @$filters[6] ."'" if ( @$filters[6] );
399         $strcalc .= " AND borrowernumber in (select distinct(borrowernumber) from old_issues where issuedate > '" . $newperioddate . "')" if ($activity eq 'active');
400         $strcalc .= " AND borrowernumber not in (select distinct(borrowernumber) from old_issues where issuedate > '" . $newperioddate . "')" if ($activity eq 'nonactive');
401         $strcalc .= " AND $status='1' " if ($status);
402         $strcalc .= " group by $linefield, $colfield";
403 #       warn "". $strcalc;
404         my $dbcalc = $dbh->prepare($strcalc);
405         $dbcalc->execute;
406 #       warn "filling table";
407         
408         my $emptycol; 
409         while (my ($row, $col, $value) = $dbcalc->fetchrow) {
410 #               warn "filling table $row / $col / $value ";
411                 $emptycol = 1 if ($col eq undef);
412                 $col = "zzEMPTY" if ($col eq undef);
413                 $row = "zzEMPTY" if ($row eq undef);
414                 
415                 $table{$row}->{$col}+=$value;
416                 $table{$row}->{totalrow}+=$value;
417                 $grantotal += $value;
418         }
419         
420         push @loopcol,{coltitle => "NULL"} if ($emptycol);
421         
422         foreach my $row ( sort keys %table ) {
423                 my @loopcell;
424                 #@loopcol ensures the order for columns is common with column titles
425                 # and the number matches the number of columns
426                 foreach my $col ( @loopcol ) {
427                         my $value =$table{$row}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
428                         push @loopcell, {value => $value  } ;
429                 }
430                 push @looprow,{ 'rowtitle' => ($row eq "zzEMPTY")?"NULL":$row,
431                                                 'loopcell' => \@loopcell,
432                                                 'hilighted' => ($hilighted >0),
433                                                 'totalrow' => $table{$row}->{totalrow}
434                                         };
435                 $hilighted = -$hilighted;
436         }
437         
438         foreach my $col ( @loopcol ) {
439                 my $total=0;
440                 foreach my $row ( @looprow ) {
441                         $total += $table{($row->{rowtitle} eq "NULL")?"zzEMPTY":$row->{rowtitle}}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
442 #                       warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
443                 }
444 #               warn "summ for column ".$col->{coltitle}."  = ".$total;
445                 push @loopfooter, {'totalcol' => $total};
446         }
447                         
448
449         # the header of the table
450         $globalline{loopfilter}=\@loopfilter;
451         # the core of the table
452         $globalline{looprow} = \@looprow;
453         $globalline{loopcol} = \@loopcol;
454 #       # the foot (totals by borrower type)
455         $globalline{loopfooter} = \@loopfooter;
456         $globalline{total}= $grantotal;
457         $globalline{line} = $line;
458         $globalline{column} = $column;
459         push @mainloop,\%globalline;
460         return \@mainloop;
461 }
462