moving cataloguing scripts to a cataloguing directory (more logic than acqui.simple...
[koha.git] / reports / borrowers_out.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 HTML::Template;
27 use C4::Search;
28 use C4::Output;
29 use C4::Koha;
30 use C4::Interface::CGI::Output;
31 use C4::Circulation::Circ2;
32 use Date::Manip;
33
34 =head1 NAME
35
36 plugin that shows a stats on borrowers
37
38 =head1 DESCRIPTION
39
40
41 =over2
42
43 =cut
44
45 my $input = new CGI;
46 my $do_it=$input->param('do_it');
47 my $fullreportname = "reports/borrowers_out.tmpl";
48 my $limit = $input->param("Limit");
49 my $column = $input->param("Criteria");
50 my @filters = $input->param("Filter");
51 my $output = $input->param("output");
52 my $basename = $input->param("basename");
53 my $mime = $input->param("MIME");
54 my $del = $input->param("sep");
55 #warn "calcul : ".$calc;
56 my ($template, $borrowernumber, $cookie)
57         = get_template_and_user({template_name => $fullreportname,
58                                 query => $input,
59                                 type => "intranet",
60                                 authnotrequired => 0,
61                                 flagsrequired => {editcatalogue => 1},
62                                 debug => 1,
63                                 });
64 $template->param(do_it => $do_it);
65 if ($do_it) {
66 # Displaying results
67         my $results = calculate($limit, $column, \@filters);
68         if ($output eq "screen"){
69 # Printing results to screen
70                 $template->param(mainloop => $results);
71                 output_html_with_http_headers $input, $cookie, $template->output;
72                 exit(1);
73         } else {
74 # Printing to a csv file
75                 print $input->header(-type => 'application/vnd.sun.xml.calc',
76                         -attachment=>"$basename.csv",
77                         -filename=>"$basename.csv" );
78                 my $cols = @$results[0]->{loopcol};
79                 my $lines = @$results[0]->{looprow};
80                 my $sep;
81                 $sep =C4::Context->preference("delimiter");
82 # header top-right
83                 print "num /". @$results[0]->{column} .$sep;
84 # Other header
85                 foreach my $col ( @$cols ) {
86                         print $col->{coltitle}.$sep;
87                 }
88                 print "Total\n";
89 # Table
90                 foreach my $line ( @$lines ) {
91                         my $x = $line->{loopcell};
92                         print $line->{rowtitle}.$sep;
93                         foreach my $cell (@$x) {
94                                 print $cell->{value}.$sep;
95                         }
96                         print $line->{totalrow};
97                         print "\n";
98                 }
99 # footer
100                 print "TOTAL";
101                 $cols = @$results[0]->{loopfooter};
102                 foreach my $col ( @$cols ) {
103                         print $sep.$col->{totalcol};
104                 }
105                 print $sep.@$results[0]->{total};
106                 exit(1);
107         }
108 # Displaying choices
109 } else {
110         my $dbh = C4::Context->dbh;
111         my @values;
112         my %labels;
113         my %select;
114         my $req;
115         
116         my @mime = ( C4::Context->preference("MIME") );
117 #       foreach my $mime (@mime){
118 #               warn "".$mime;
119 #       }
120         
121         my $CGIextChoice=CGI::scrolling_list(
122                                 -name     => 'MIME',
123                                 -id       => 'MIME',
124                                 -values   => \@mime,
125                                 -size     => 1,
126                                 -multiple => 0 );
127         
128         my @dels = ( C4::Context->preference("delimiter") );
129         my $CGIsepChoice=CGI::scrolling_list(
130                                 -name     => 'sep',
131                                 -id       => 'sep',
132                                 -values   => \@dels,
133                                 -size     => 1,
134                                 -multiple => 0 );
135         
136         my ($codes,$labels) = borrowercategories;
137         my @borcatloop;
138         foreach my $thisborcat (sort keys %$labels) {
139  #                      my $selected = 1 if $thisbranch eq $branch;
140                         my %row =(value => $thisborcat,
141  #                                                                      selected => $selected,
142                                                                         description => $labels->{$thisborcat},
143                                                         );
144                         push @borcatloop, \%row;
145         }
146         
147         
148         $template->param(
149                                         CGIextChoice => $CGIextChoice,
150                                         CGIsepChoice => $CGIsepChoice,
151                                         borcatloop =>\@borcatloop,
152                                         );
153 output_html_with_http_headers $input, $cookie, $template->output;
154 }
155
156
157
158
159 sub calculate {
160         my ($line, $column, $filters) = @_;
161         my @mainloop;
162         my @loopfooter;
163         my @loopcol;
164         my @loopline;
165         my @looprow;
166         my %globalline;
167         my $grantotal =0;
168 # extract parameters
169         my $dbh = C4::Context->dbh;
170
171 # Filters
172 # Checking filters
173 #
174         my @loopfilter;
175         for (my $i=0;$i<=2;$i++) {
176                 my %cell;
177                 if ( @$filters[$i] ) {
178                         if (($i==1) and (@$filters[$i-1])) {
179                                 $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
180                         }
181                         $cell{filter} .= @$filters[$i];
182                         $cell{crit} .="Bor Cat" if ($i==0);
183                         $cell{crit} .="Without issues since" if ($i==1);
184                         push @loopfilter, \%cell;
185                 }
186         }
187         my $colfield;
188         my $colorder;
189         if ($column){
190                 $column = "borrowers.".$column if $column=~/categorycode/;
191                 my @colfilter ;
192                 $colfilter[0] = @$filters[0] if ($column =~ /category/ )  ;
193         #       $colfilter[0] = @$filters[11] if ($column =~ /sort2/ ) ;
194         #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
195                                                                                                 
196         # loop cols.
197                 $colfield .= $column;
198                 $colorder .= $column;
199                 
200                 my $strsth2;
201                 $strsth2 .= "select distinctrow $colfield FROM borrowers LEFT JOIN `issues` ON issues.borrowernumber=borrowers.borrowernumber";
202                 if ($colfilter[0]) {
203                         $colfilter[0] =~ s/\*/%/g;
204                         $strsth2 .= " and $column LIKE '$colfilter[0]' " ;
205                 }
206                 $strsth2 .=" group by $colfield";
207                 $strsth2 .=" order by $colorder";
208                 warn "". $strsth2;
209                 
210                 my $sth2 = $dbh->prepare( $strsth2 );
211                 $sth2->execute;
212
213                 
214         
215                 while (my ($celvalue) = $sth2->fetchrow) {
216                         my %cell;
217         #               my %ft;
218         #               warn "coltitle :".$celvalue;
219                         $cell{coltitle} = $celvalue;
220         #               $ft{totalcol} = 0;
221                         push @loopcol, \%cell;
222                 }
223         #       warn "fin des titres colonnes";
224         }
225         
226         my $i=0;
227 #       my @totalcol;
228         my $hilighted=-1;
229         
230         #Initialization of cell values.....
231         my @table;
232         
233 #       warn "init table";
234         for (my $i=1;$i<=$line;$i++) {
235                 foreach my $col ( @loopcol ) {
236 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
237                         $table[$i]->{($col->{coltitle})?$col->{coltitle}:"Global"}=0;
238                 }
239         }
240
241
242 # preparing calculation
243         my $strcalc ;
244         
245 # Processing calculation
246         $strcalc .= "SELECT CONCAT( borrowers.surname , \"\\t\",borrowers.firstname, \"\\t\", borrowers.cardnumber)";
247         $strcalc .= " , $colfield " if ($colfield);
248         $strcalc .= " FROM borrowers ";
249         $strcalc .= "WHERE 1 ";
250         @$filters[0]=~ s/\*/%/g if (@$filters[0]);
251         $strcalc .= " AND borrowers.categorycode like '" . @$filters[0] ."'" if ( @$filters[0] );
252         if (@$filters[1]){
253                 my $strqueryfilter="SELECT DISTINCT borrowernumber FROM issues where issues.timestamp> @$filters[1] ";
254                 my $queryfilter = $dbh->prepare("SELECT DISTINCT borrowernumber FROM issues where issues.timestamp> @$filters[1] ");
255                 $strcalc .= " AND borrowers.borrowernumber not in ($strqueryfilter)";
256                 
257 #               $queryfilter->execute(@$filters[1]);
258 #               while (my ($bornum)=$queryfilter->fetchrow){
259 #                       $strcalc .= " AND borrowers.borrowernumber <> $bornum ";
260 #               }
261         } else {
262                 my $strqueryfilter="SELECT DISTINCT borrowernumber FROM issues ";
263                 my $queryfilter = $dbh->prepare("SELECT DISTINCT borrowernumber FROM issues ");
264                 $queryfilter->execute;
265                 $strcalc .= " AND borrowers.borrowernumber not in ($strqueryfilter)";
266 #               while (my ($bornum)=$queryfilter->fetchrow){
267 #                       $strcalc .= " AND borrowers.borrowernumber <> $bornum ";
268 #               }
269         }
270         $strcalc .= " group by borrowers.borrowernumber";
271         $strcalc .= ", $colfield" if ($column);
272         $strcalc .= " order by $colfield " if ($colfield);
273         my $max;
274         if (@loopcol) {
275                 $max = $line*@loopcol;
276         } else { $max=$line;}
277         $strcalc .= " LIMIT 0,$max" if ($line);
278         warn "SQL :". $strcalc;
279         
280         my $dbcalc = $dbh->prepare($strcalc);
281         $dbcalc->execute;
282 #       warn "filling table";
283         my $previous_col;
284         my $i=1;
285         while (my  @data = $dbcalc->fetchrow) {
286                 my ($row, $col )=@data;
287                 $col = "zzEMPTY" if ($col eq undef);
288                 $i=1 if (($previous_col) and not($col eq $previous_col));
289                 $table[$i]->{$col}=$row;
290 #               warn " ".$i." ".$col. " ".$row;
291                 $i++;
292                 $previous_col=$col;
293         }
294         
295         push @loopcol,{coltitle => "Global"} if not($column);
296         
297         my $max =(($line)?$line:@table -1);
298         for ($i=1; $i<=$max;$i++) {
299                 my @loopcell;
300                 #@loopcol ensures the order for columns is common with column titles
301                 # and the number matches the number of columns
302                 my $colcount=0;
303                 foreach my $col ( @loopcol ) {
304                         my $value;
305                         if (@loopcol){
306                                 $value =$table[$i]->{(($col->{coltitle} eq "NULL") or ($col->{coltitle} eq "Global"))?"zzEMPTY":$col->{coltitle}};
307                         } else {
308                                 $value =$table[$i]->{"zzEMPTY"};
309                         }
310                         push @loopcell, {value => $value} ;
311                 }
312                 push @looprow,{ 'rowtitle' => $i ,
313                                                 'loopcell' => \@loopcell,
314                                                 'hilighted' => ($hilighted >0),
315                                         };
316                 $hilighted = -$hilighted;
317         }
318         
319                         
320
321         # the header of the table
322         $globalline{loopfilter}=\@loopfilter;
323         # the core of the table
324         $globalline{looprow} = \@looprow;
325         $globalline{loopcol} = \@loopcol;
326 #       # the foot (totals by borrower type)
327         $globalline{loopfooter} = \@loopfooter;
328         $globalline{total}= $grantotal;
329         $globalline{line} = $line;
330         $globalline{column} = $column;
331         push @mainloop,\%globalline;
332         return \@mainloop;
333 }
334
335 1;