Cleaned up regex's looking for defunct CVS files
[koha.git] / reports / borrowers_stats.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Context;
25 use C4::Branch; # GetBranches
26 use C4::Koha;
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         foreach my $mime (@mime){
210                 warn "".$mime;
211         }
212         
213         my $CGIextChoice=CGI::scrolling_list(
214                                 -name => 'MIME',
215                                 -id => 'MIME',
216                                 -values   => \@mime,
217                                 -size     => 1,
218                                 -multiple => 0 );
219         
220         my @dels = ( C4::Context->preference("delimiter") );
221         my $CGIsepChoice=CGI::scrolling_list(
222                                 -name => 'sep',
223                                 -id => 'sep',
224                                 -values   => \@dels,
225                                 -size     => 1,
226                                 -multiple => 0 );
227
228         $template->param(               CGICatCode => $CGICatCode,
229                                         CGIZipCode => $CGIZipCode,
230 #                                       CGIBranch => $CGIBranch,
231                                         CGISort1 => $CGIsort1,
232                                         hassort1 => $hassort1,
233                                         CGISort2 => $CGIsort2,
234                                         hassort2 => $hassort2,
235                                         CGIextChoice => $CGIextChoice,
236                                         CGIsepChoice => $CGIsepChoice,
237                                         CGIBranch => $CGIBranch,
238 #                                       CGIBranch => \@branchloop
239                         DHTMLcalendar_dateformat => get_date_format_string_for_DHTMLcalendar(),
240                     );
241
242 }
243 output_html_with_http_headers $input, $cookie, $template->output;
244
245
246
247 sub calculate {
248         my ($line, $column, $digits, $status, $activity, $filters) = @_;
249         my @mainloop;
250         my @loopfooter;
251         my @loopcol;
252         my @loopline;
253         my @looprow;
254         my %globalline;
255         my $grantotal =0;
256 # extract parameters
257         my $dbh = C4::Context->dbh;
258
259 # Filters
260         my $linefilter = "";
261 #       warn "filtres ".@filters[0];
262 #       warn "filtres ".@filters[4];
263 #       warn "filtres ".@filters[5];
264 #       warn "filtres ".@filters[6];
265
266         
267         $linefilter = @$filters[0] if ($line =~ /categorycode/ )  ;
268         $linefilter = @$filters[1] if ($line =~ /zipcode/ )  ;
269         $linefilter = @$filters[2] if ($line =~ /branchcode/ ) ;
270         $linefilter = @$filters[5] if ($line =~ /sort1/ ) ;
271         $linefilter = @$filters[6] if ($line =~ /sort2/ ) ;
272
273         my $colfilter = "";
274         $colfilter = @$filters[0] if ($column =~ /categorycode/);
275         $colfilter = @$filters[1] if ($column =~ /zipcode/);
276         $colfilter = @$filters[2] if ($column =~ /branchcode/);
277         $colfilter = @$filters[5] if ($column =~ /sort1/);
278         $colfilter = @$filters[6] if ($column =~ /sort2/);
279
280         my @loopfilter;
281         for (my $i=0;$i<=6;$i++) {
282                 my %cell;
283                 if ( @$filters[$i] ) {
284                         $cell{filter} .= @$filters[$i];
285                         $cell{crit} .="Cat Code " if ($i==0);
286                         $cell{crit} .="Zip Code" if ($i==1);
287                         $cell{crit} .="Branchcode" if ($i==2);
288                         $cell{crit} .="Date of Birth" if ($i==3);
289                         $cell{crit} .="Date of Birth" if ($i==4);
290                         $cell{crit} .="Sort1" if ($i==5);
291                         $cell{crit} .="Sort2" if ($i==6);
292                         push @loopfilter, \%cell;
293                 }
294         }
295         if ($status) {
296                 push @loopfilter,{crit=>"Status",filter=>$status}
297         }
298                 
299         if ($activity) {
300                 push @loopfilter,{crit=>"Activity",filter=>$activity};
301         }
302 # year of activity
303         my ( $period_year, $period_month, $period_day )=Add_Delta_YM( Today(),-$period, 0);
304         my $newperioddate=$period_year."-".$period_month."-".$period_day;
305 #       warn "PERIOD".$period;
306 # 1st, loop rows.
307         my $linefield;
308         if (($line =~/zipcode/) and ($digits)) {
309                 $linefield .="left($line,$digits)";
310         } else{
311                 $linefield .= $line;
312         }
313         
314         my $strsth;
315         $strsth .= "select distinctrow $linefield from borrowers where $line is not null ";
316         $linefilter =~ s/\*/%/g;
317         if ( $linefilter ) {
318                 $strsth .= " and $linefield LIKE ? " ;
319         }
320         $strsth .= " and $status='1' " if ($status);
321         $strsth .=" order by $linefield";
322 #       warn "". $strsth;
323         
324         my $sth = $dbh->prepare( $strsth );
325         if ( $linefilter ) {
326                 $sth->execute($linefilter);
327         } else {
328                 $sth->execute;
329         }
330         while ( my ($celvalue) = $sth->fetchrow) {
331                 my %cell;
332                 if ($celvalue) {
333                         $cell{rowtitle} = $celvalue;
334 #               } else {
335 #                       $cell{rowtitle} = "";
336                 }
337                 $cell{totalrow} = 0;
338                 push @loopline, \%cell;
339         }
340
341 # 2nd, loop cols.
342         my $colfield;
343         if (($column =~/zipcode/) and ($digits)) {
344                 $colfield .= "left($column,$digits)";
345         } else{
346                 $colfield .= $column;
347         }
348         my $strsth2;
349         $colfilter =~ s/\*/%/g;
350         $strsth2 .= "select distinctrow $colfield from borrowers where $column is not null";
351         if ( $colfilter ) {
352                 $strsth2 .= " and $colfield LIKE ? ";
353         }
354         $strsth2 .= " and $status='1' " if ($status);
355         $strsth2 .= " order by $colfield";
356 #       warn "". $strsth2;
357         my $sth2 = $dbh->prepare( $strsth2 );
358         if ($colfilter) {
359                 $sth2->execute($colfilter);
360         } else {
361                 $sth2->execute;
362         }
363         while (my ($celvalue) = $sth2->fetchrow) {
364                 my %cell;
365                 my %ft;
366                 if ($celvalue) {
367                         $cell{coltitle} = $celvalue;
368                 }
369                 push @loopcol, \%cell;
370         }
371         
372
373         my $i=0;
374         my @totalcol;
375         my $hilighted=-1;
376         
377         #Initialization of cell values.....
378         my %table;
379 #       warn "init table";
380         foreach my $row ( @loopline ) {
381                 foreach my $col ( @loopcol ) {
382 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
383                         $table{$row->{rowtitle}}->{$col->{coltitle}}=0;
384                 }
385                 $table{$row->{rowtitle}}->{totalrow}=0;
386         }
387
388 # preparing calculation
389         my $strcalc .= "SELECT $linefield, $colfield, count( * ) FROM borrowers WHERE 1 ";
390         @$filters[0]=~ s/\*/%/g if (@$filters[0]);
391         $strcalc .= " AND categorycode like '" . @$filters[0] ."'" if ( @$filters[0] );
392         @$filters[1]=~ s/\*/%/g if (@$filters[1]);
393         $strcalc .= " AND zipcode like '" . @$filters[1] ."'" if ( @$filters[1] );
394         @$filters[2]=~ s/\*/%/g if (@$filters[2]);
395         $strcalc .= " AND branchcode like '" . @$filters[2] ."'" if ( @$filters[2] );
396         @$filters[3]=~ s/\*/%/g if (@$filters[3]);
397         $strcalc .= " AND dateofbirth > '" . @$filters[3] ."'" if ( @$filters[3] );
398         @$filters[4]=~ s/\*/%/g if (@$filters[4]);
399         $strcalc .= " AND dateofbirth < '" . @$filters[4] ."'" if ( @$filters[4] );
400         @$filters[5]=~ s/\*/%/g if (@$filters[5]);
401         $strcalc .= " AND sort1 like '" . @$filters[5] ."'" if ( @$filters[5] );
402         @$filters[6]=~ s/\*/%/g if (@$filters[6]);
403         $strcalc .= " AND sort2 like '" . @$filters[6] ."'" if ( @$filters[6] );
404         $strcalc .= " AND borrowernumber in (select distinct(borrowernumber) from issues where issuedate > '" . $newperioddate . "')" if ($activity eq 'active');
405         $strcalc .= " AND borrowernumber not in (select distinct(borrowernumber) from issues where issuedate > '" . $newperioddate . "')" if ($activity eq 'nonactive');
406         $strcalc .= " AND $status='1' " if ($status);
407         $strcalc .= " group by $linefield, $colfield";
408 #       warn "". $strcalc;
409         my $dbcalc = $dbh->prepare($strcalc);
410         $dbcalc->execute;
411 #       warn "filling table";
412         
413         my $emptycol; 
414         while (my ($row, $col, $value) = $dbcalc->fetchrow) {
415 #               warn "filling table $row / $col / $value ";
416                 $emptycol = 1 if ($col eq undef);
417                 $col = "zzEMPTY" if ($col eq undef);
418                 $row = "zzEMPTY" if ($row eq undef);
419                 
420                 $table{$row}->{$col}+=$value;
421                 $table{$row}->{totalrow}+=$value;
422                 $grantotal += $value;
423         }
424         
425         push @loopcol,{coltitle => "NULL"} if ($emptycol);
426         
427         foreach my $row ( sort keys %table ) {
428                 my @loopcell;
429                 #@loopcol ensures the order for columns is common with column titles
430                 # and the number matches the number of columns
431                 foreach my $col ( @loopcol ) {
432                         my $value =$table{$row}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
433                         push @loopcell, {value => $value  } ;
434                 }
435                 push @looprow,{ 'rowtitle' => ($row eq "zzEMPTY")?"NULL":$row,
436                                                 'loopcell' => \@loopcell,
437                                                 'hilighted' => ($hilighted >0),
438                                                 'totalrow' => $table{$row}->{totalrow}
439                                         };
440                 $hilighted = -$hilighted;
441         }
442         
443         foreach my $col ( @loopcol ) {
444                 my $total=0;
445                 foreach my $row ( @looprow ) {
446                         $total += $table{($row->{rowtitle} eq "NULL")?"zzEMPTY":$row->{rowtitle}}->{($col->{coltitle} eq "NULL")?"zzEMPTY":$col->{coltitle}};
447 #                       warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
448                 }
449 #               warn "summ for column ".$col->{coltitle}."  = ".$total;
450                 push @loopfooter, {'totalcol' => $total};
451         }
452                         
453
454         # the header of the table
455         $globalline{loopfilter}=\@loopfilter;
456         # the core of the table
457         $globalline{looprow} = \@looprow;
458         $globalline{loopcol} = \@loopcol;
459 #       # the foot (totals by borrower type)
460         $globalline{loopfooter} = \@loopfooter;
461         $globalline{total}= $grantotal;
462         $globalline{line} = $line;
463         $globalline{column} = $column;
464         push @mainloop,\%globalline;
465         return \@mainloop;
466 }
467