Patrons may pay fines in instalments. Librarian can alter the amount to receive
[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 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 my $input = new CGI;
44 my $do_it=$input->param('do_it');
45 my $fullreportname = "reports/borrowers_out.tmpl";
46 my $limit = $input->param("Limit");
47 my $column = $input->param("Criteria");
48 my @filters = $input->param("Filter");
49 my $output = $input->param("output");
50 my $basename = $input->param("basename");
51 my $mime = $input->param("MIME");
52 my $del = $input->param("sep");
53 #warn "calcul : ".$calc;
54 my ($template, $borrowernumber, $cookie)
55         = get_template_and_user({template_name => $fullreportname,
56                                 query => $input,
57                                 type => "intranet",
58                                 authnotrequired => 0,
59                                 flagsrequired => {editcatalogue => 1},
60                                 debug => 1,
61                                 });
62 $template->param(do_it => $do_it);
63 if ($do_it) {
64 # Displaying results
65         my $results = calculate($limit, $column, \@filters);
66         if ($output eq "screen"){
67 # Printing results to screen
68                 $template->param(mainloop => $results);
69                 output_html_with_http_headers $input, $cookie, $template->output;
70                 exit(1);
71         } else {
72 # Printing to a csv file
73                 print $input->header(-type => 'application/vnd.sun.xml.calc',
74                         -attachment=>"$basename.csv",
75                         -filename=>"$basename.csv" );
76                 my $cols = @$results[0]->{loopcol};
77                 my $lines = @$results[0]->{looprow};
78                 my $sep;
79                 $sep =C4::Context->preference("delimiter");
80 # header top-right
81                 print "num /". @$results[0]->{column} .$sep;
82 # Other header
83                 foreach my $col ( @$cols ) {
84                         print $col->{coltitle}.$sep;
85                 }
86                 print "Total\n";
87 # Table
88                 foreach my $line ( @$lines ) {
89                         my $x = $line->{loopcell};
90                         print $line->{rowtitle}.$sep;
91                         foreach my $cell (@$x) {
92                                 print $cell->{value}.$sep;
93                         }
94                         print $line->{totalrow};
95                         print "\n";
96                 }
97 # footer
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 # Displaying choices
107 } else {
108         my $dbh = C4::Context->dbh;
109         my @values;
110         my %labels;
111         my %select;
112         my $req;
113         
114         my @mime = ( C4::Context->preference("MIME") );
115 #       foreach my $mime (@mime){
116 #               warn "".$mime;
117 #       }
118         
119         my $CGIextChoice=CGI::scrolling_list(
120                                 -name     => 'MIME',
121                                 -id       => 'MIME',
122                                 -values   => \@mime,
123                                 -size     => 1,
124                                 -multiple => 0 );
125         
126         my @dels = ( C4::Context->preference("delimiter") );
127         my $CGIsepChoice=CGI::scrolling_list(
128                                 -name     => 'sep',
129                                 -id       => 'sep',
130                                 -values   => \@dels,
131                                 -size     => 1,
132                                 -multiple => 0 );
133         
134         $template->param(
135                                         CGIextChoice => $CGIextChoice,
136                                         CGIsepChoice => $CGIsepChoice
137                                         );
138 output_html_with_http_headers $input, $cookie, $template->output;
139 }
140
141
142
143
144 sub calculate {
145         my ($line, $column, $filters) = @_;
146         my @mainloop;
147         my @loopfooter;
148         my @loopcol;
149         my @loopline;
150         my @looprow;
151         my %globalline;
152         my $grantotal =0;
153 # extract parameters
154         my $dbh = C4::Context->dbh;
155
156 # Filters
157 # Checking filters
158 #
159         my @loopfilter;
160         for (my $i=0;$i<=6;$i++) {
161                 my %cell;
162                 if ( @$filters[$i] ) {
163                         if (($i==1) and (@$filters[$i-1])) {
164                                 $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
165                         }
166                         $cell{filter} .= @$filters[$i];
167                         $cell{crit} .="Bor Cat" if ($i==0);
168                         push @loopfilter, \%cell;
169                 }
170         }
171         my $colfield;
172         my $colorder;
173         if ($column){
174                 $column = "borrowers.".$column if $column=~/categorycode/;
175                 my @colfilter ;
176                 $colfilter[0] = @$filters[0] if ($column =~ /category/ )  ;
177         #       $colfilter[0] = @$filters[11] if ($column =~ /sort2/ ) ;
178         #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
179                                                                                                 
180         # loop cols.
181                 $colfield .= $column;
182                 $colorder .= $column;
183                 
184                 my $strsth2;
185                 $strsth2 .= "select distinctrow $colfield FROM borrowers LEFT JOIN `issues` ON issues.borrowernumber=borrowers.borrowernumber";
186                 if ($colfilter[0]) {
187                         $colfilter[0] =~ s/\*/%/g;
188                         $strsth2 .= " and $column LIKE '$colfilter[0]' " ;
189                 }
190                 $strsth2 .=" group by $colfield";
191                 $strsth2 .=" order by $colorder";
192                 warn "". $strsth2;
193                 
194                 my $sth2 = $dbh->prepare( $strsth2 );
195                 $sth2->execute;
196
197                 
198         
199                 while (my ($celvalue) = $sth2->fetchrow) {
200                         my %cell;
201         #               my %ft;
202         #               warn "coltitle :".$celvalue;
203                         $cell{coltitle} = $celvalue;
204         #               $ft{totalcol} = 0;
205                         push @loopcol, \%cell;
206                 }
207         #       warn "fin des titres colonnes";
208         }
209         
210         my $i=0;
211 #       my @totalcol;
212         my $hilighted=-1;
213         
214         #Initialization of cell values.....
215         my @table;
216         
217 #       warn "init table";
218         for (my $i=1;$i<=$line;$i++) {
219                 foreach my $col ( @loopcol ) {
220 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
221                         $table[$i]->{($col->{coltitle})?$col->{coltitle}:"Global"}=0;
222                 }
223         }
224
225
226 # preparing calculation
227         my $strcalc ;
228         
229 # Processing average loanperiods
230         $strcalc .= "SELECT CONCAT( borrowers.surname , \"\\t\",borrowers.firstname, \"\\t\", borrowers.cardnumber)";
231         $strcalc .= " , $colfield " if ($colfield);
232         $strcalc .= " FROM borrowers LEFT JOIN issues ON  issues.borrowernumber=borrowers.borrowernumber WHERE issues.borrowernumber is null";
233         @$filters[0]=~ s/\*/%/g if (@$filters[0]);
234         $strcalc .= " AND borrowers.categorycode like '" . @$filters[0] ."'" if ( @$filters[0] );
235         
236         $strcalc .= " group by borrowers.borrowernumber";
237         $strcalc .= ", $colfield" if ($column);
238         $strcalc .= " order by $colfield " if ($colfield);
239         my $max;
240         if (@loopcol) {
241                 $max = $line*@loopcol;
242         } else { $max=$line;}
243         $strcalc .= " LIMIT 0,$max" if ($line);
244         warn "SQL :". $strcalc;
245         
246         my $dbcalc = $dbh->prepare($strcalc);
247         $dbcalc->execute;
248 #       warn "filling table";
249         my $previous_col;
250         my $i=1;
251         while (my  @data = $dbcalc->fetchrow) {
252                 my ($row, $col )=@data;
253                 $col = "zzEMPTY" if ($col eq undef);
254                 $i=1 if (($previous_col) and not($col eq $previous_col));
255                 $table[$i]->{$col}=$row;
256 #               warn " ".$i." ".$col. " ".$row;
257                 $i++;
258                 $previous_col=$col;
259         }
260         
261         push @loopcol,{coltitle => "Global"} if not($column);
262         
263         my $max =(($line)?$line:@table);
264         for ($i=1; $i<=$max;$i++) {
265                 my @loopcell;
266                 #@loopcol ensures the order for columns is common with column titles
267                 # and the number matches the number of columns
268                 my $colcount=0;
269                 foreach my $col ( @loopcol ) {
270                         my $value;
271                         if (@loopcol){
272                                 $value =$table[$i]->{(($col->{coltitle} eq "NULL") or ($col->{coltitle} eq "Global"))?"zzEMPTY":$col->{coltitle}};
273                         } else {
274                                 $value =$table[$i]->{"zzEMPTY"};
275                         }
276                         push @loopcell, {value => $value} ;
277                 }
278                 push @looprow,{ 'rowtitle' => $i ,
279                                                 'loopcell' => \@loopcell,
280                                                 'hilighted' => ($hilighted >0),
281                                         };
282                 $hilighted = -$hilighted;
283         }
284         
285                         
286
287         # the header of the table
288         $globalline{loopfilter}=\@loopfilter;
289         # the core of the table
290         $globalline{looprow} = \@looprow;
291         $globalline{loopcol} = \@loopcol;
292 #       # the foot (totals by borrower type)
293         $globalline{loopfooter} = \@loopfooter;
294         $globalline{total}= $grantotal;
295         $globalline{line} = $line;
296         $globalline{column} = $column;
297         push @mainloop,\%globalline;
298         return \@mainloop;
299 }
300
301 1;