4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
31 use Koha
::Patron
::Categories
;
32 use Date
::Calc
qw(Delta_Days);
36 plugin that shows a stats on borrowers
43 my $do_it=$input->param('do_it');
44 my $fullreportname = "reports/issues_avg_stats.tt";
45 my $line = $input->param("Line");
46 my $column = $input->param("Column");
47 my @filters = $input->multi_param("Filter");
48 $filters[0] = eval { output_pref
( { dt
=> dt_from_string
( $filters[0]), dateonly
=> 1, dateformat
=> 'iso' } ); }
50 $filters[1] = eval { output_pref
( { dt
=> dt_from_string
( $filters[1]), dateonly
=> 1, dateformat
=> 'iso' } ); }
52 $filters[2] = eval { output_pref
( { dt
=> dt_from_string
( $filters[2]), dateonly
=> 1, dateformat
=> 'iso' } ); }
54 $filters[3] = eval { output_pref
( { dt
=> dt_from_string
( $filters[3]), dateonly
=> 1, dateformat
=> 'iso' } ); }
58 my $podsp = $input->param("IssueDisplay");
59 my $rodsp = $input->param("ReturnDisplay");
60 my $calc = $input->param("Cellvalue");
61 my $output = $input->param("output");
62 my $basename = $input->param("basename");
64 #warn "calcul : ".$calc;
65 my ($template, $borrowernumber, $cookie)
66 = get_template_and_user
({template_name
=> $fullreportname,
70 flagsrequired
=> {reports
=> '*'},
73 our $sep = $input->param("sep");
74 $sep = "\t" if ($sep eq 'tabulation');
75 $template->param(do_it
=> $do_it,
79 my $results = calculate
($line, $column, $rodsp, $podsp, $calc, \
@filters);
80 if ($output eq "screen"){
81 # Printing results to screen
82 $template->param(mainloop
=> $results);
83 output_html_with_http_headers
$input, $cookie, $template->output;
86 # Printing to a csv file
87 print $input->header(-type
=> 'application/vnd.sun.xml.calc',
89 -attachment
=>"$basename.csv",
90 -filename
=>"$basename.csv" );
91 my $cols = @
$results[0]->{loopcol
};
92 my $lines = @
$results[0]->{looprow
};
94 print @
$results[0]->{line
} ."/". @
$results[0]->{column
} .$sep;
96 foreach my $col ( @
$cols ) {
97 print $col->{coltitle
}.$sep;
101 foreach my $line ( @
$lines ) {
102 my $x = $line->{loopcell
};
103 print $line->{rowtitle
}.$sep;
104 foreach my $cell (@
$x) {
105 print $cell->{value
}.$sep;
107 print $line->{totalrow
};
112 $cols = @
$results[0]->{loopfooter
};
113 foreach my $col ( @
$cols ) {
114 print $sep.$col->{totalcol
};
116 print $sep.@
$results[0]->{total
};
121 my $patron_categories = Koha
::Patron
::Categories
->search({}, {order_by
=> ['description']});
123 my $itemtypes = Koha
::ItemTypes
->search_with_localization;
125 my $dbh = C4
::Context
->dbh;
126 my $req = $dbh->prepare("select distinctrow sort1 from borrowers where sort1 is not null order by sort1");
130 while (my ($value) =$req->fetchrow) {
131 $hassort1 =1 if ($value);
132 push @selects1, $value;
135 values => \
@selects1,
138 $req = $dbh->prepare("select distinctrow sort2 from borrowers where sort2 is not null order by sort2");
143 while (my ($value) =$req->fetchrow) {
144 $hassort2 =1 if ($value);
145 $hglghtsort2= !($hassort1);
146 push @selects2, $value;
149 values => \
@selects2,
152 my $CGIsepChoice=GetDelimiterChoices
;
155 patron_categories
=> $patron_categories,
156 itemtypes
=> $itemtypes,
157 hassort1
=> $hassort1,
158 hassort2
=> $hassort2,
159 HlghtSort2
=> $hglghtsort2,
162 CGIsepChoice
=> $CGIsepChoice
164 output_html_with_http_headers
$input, $cookie, $template->output;
171 my ($line, $column, $rodsp, $podsp, $process, $filters) = @_;
179 my $itype = C4
::Context
->preference('item-level_itypes') ?
"items.itype" : "biblioitems.itemtype";
181 my $dbh = C4
::Context
->dbh;
187 for (my $i=0;$i<=6;$i++) {
189 if ( @
$filters[$i] ) {
190 if (($i==1) and (@
$filters[$i-1])) {
191 $cell{err
} = 1 if (@
$filters[$i]<@
$filters[$i-1]) ;
193 # format the dates filters, otherwise just fill as is
195 $cell{filter
} .= @
$filters[$i];
197 $cell{filter
} .= eval { output_pref
( { dt
=> dt_from_string
( @
$filters[$i] ), dateonly
=> 1 }); }
198 if ( @
$filters[$i] );
200 $cell{crit
} .="Issue From" if ($i==0);
201 $cell{crit
} .="Issue To" if ($i==1);
202 $cell{crit
} .="Issue Month" if ($i==2);
203 $cell{crit
} .="Issue Day" if ($i==3);
204 $cell{crit
} .="Return From" if ($i==4);
205 $cell{crit
} .="Return To" if ($i==5);
206 $cell{crit
} .="Return Month" if ($i==6);
207 $cell{crit
} .="Return Day" if ($i==7);
208 $cell{crit
} .="Borrower Cat" if ($i==8);
209 $cell{crit
} .="Doc Type" if ($i==9);
210 $cell{crit
} .="Branch" if ($i==10);
211 $cell{crit
} .="Sort1" if ($i==11);
212 $cell{crit
} .="Sort2" if ($i==12);
213 push @loopfilter, \
%cell;
216 push @loopfilter,{crit
=>"Issue Display",filter
=>$rodsp} if ($rodsp);
217 push @loopfilter,{crit
=>"Return Display",filter
=>$podsp} if ($podsp);
222 # warn "filtres ".@filters[0];
223 # warn "filtres ".@filters[1];
224 # warn "filtres ".@filters[2];
225 # warn "filtres ".@filters[3];
226 $line = "old_issues.".$line if ($line=~/branchcode/) or ($line=~/timestamp/);
227 if ( $line=~/itemtype/ ) { $line = $itype; }
228 $linefilter[0] = @
$filters[0] if ($line =~ /timestamp/ ) ;
229 $linefilter[1] = @
$filters[1] if ($line =~ /timestamp/ ) ;
230 $linefilter[2] = @
$filters[2] if ($line =~ /timestamp/ ) ;
231 $linefilter[3] = @
$filters[3] if ($line =~ /timestamp/ ) ;
232 $linefilter[0] = @
$filters[4] if ($line =~ /returndate/ ) ;
233 $linefilter[1] = @
$filters[5] if ($line =~ /returndate/ ) ;
234 $linefilter[2] = @
$filters[6] if ($line =~ /returndate/ ) ;
235 $linefilter[3] = @
$filters[7] if ($line =~ /returndate/ ) ;
236 $linefilter[0] = @
$filters[8] if ($line =~ /category/ ) ;
237 $linefilter[0] = @
$filters[9] if ($line eq $itype);
238 $linefilter[0] = @
$filters[10] if ($line =~ /branch/ ) ;
239 $linefilter[0] = @
$filters[11] if ($line =~ /sort1/ ) ;
240 $linefilter[0] = @
$filters[12] if ($line =~ /sort2/ ) ;
242 $column = "old_issues.".$column if (($column=~/branchcode/) or ($column=~/timestamp/));
243 if ( $column=~/itemtype/ ) { $column = $itype; }
245 $colfilter[0] = @
$filters[0] if ($column =~ /timestamp/ ) ;
246 $colfilter[1] = @
$filters[1] if ($column =~ /timestamp/ ) ;
247 $colfilter[2] = @
$filters[2] if ($column =~ /timestamp/ ) ;
248 $colfilter[3] = @
$filters[3] if ($column =~ /timestamp/ ) ;
249 $colfilter[0] = @
$filters[4] if ($column =~ /returndate/ ) ;
250 $colfilter[1] = @
$filters[5] if ($column =~ /returndate/ ) ;
251 $colfilter[2] = @
$filters[6] if ($column =~ /returndate/ ) ;
252 $colfilter[3] = @
$filters[7] if ($column =~ /returndate/ ) ;
253 $colfilter[0] = @
$filters[8] if ($column =~ /category/ ) ;
254 $colfilter[0] = @
$filters[9] if ($column eq $itype);
255 $colfilter[0] = @
$filters[10] if ($column =~ /branch/ ) ;
256 $colfilter[0] = @
$filters[11] if ($column =~ /sort1/ ) ;
257 $colfilter[0] = @
$filters[12] if ($column =~ /sort2/ ) ;
262 if ((($line =~/timestamp/) and ($podsp == 1)) or (($line =~/returndate/) and ($rodsp == 1))) {
264 $linefield .="dayname($line)";
265 $lineorder .="weekday($line)";
266 } elsif ((($line =~/timestamp/) and ($podsp == 2)) or (($line =~/returndate/) and ($rodsp == 2))) {
268 $linefield .="monthname($line)";
269 $lineorder .="month($line)";
270 } elsif ((($line =~/timestamp/) and ($podsp == 3)) or (($line =~/returndate/) and ($rodsp == 3))) {
272 $linefield .="Year($line)";
274 } elsif (($line=~/timestamp/) or ($line=~/returndate/)){
275 $linefield .= "date_format(\'$line\',\"%Y-%m-%d\")";
283 $strsth .= "select distinctrow $linefield
285 LEFT JOIN borrowers ON borrowers.borrowernumber=old_issues.borrowernumber
286 LEFT JOIN items ON old_issues.itemnumber=items.itemnumber
287 LEFT JOIN biblioitems ON (biblioitems.biblioitemnumber=items.biblioitemnumber)
290 if (($line=~/timestamp/) or ($line=~/returndate/)){
291 if ($linefilter[1] and ($linefilter[0])){
292 $strsth .= " AND $line BETWEEN '$linefilter[0]' AND '$linefilter[1]' " ;
293 } elsif ($linefilter[1]) {
294 $strsth .= " AND $line < \'$linefilter[1]\' " ;
295 } elsif ($linefilter[0]) {
296 $strsth .= " AND $line > \'$linefilter[0]\' " ;
299 $strsth .= " AND dayname($line) = '$linefilter[2]' " ;
302 $strsth .= " AND monthname($line) = '$linefilter[3]' " ;
304 } elsif ($linefilter[0]) {
305 $linefilter[0] =~ s/\*/%/g;
306 $strsth .= " AND $line LIKE '$linefilter[0]' " ;
308 $strsth .=" GROUP BY $linefield";
309 $strsth .=" ORDER BY $lineorder";
311 my $sth = $dbh->prepare( $strsth );
314 while ( my ($celvalue) = $sth->fetchrow) {
317 $cell{rowtitle
} = $celvalue;
319 $cell{rowtitle
} = "";
322 push @loopline, \
%cell;
328 if ((($column =~/timestamp/) and ($podsp == 1)) or (($column =~/returndate/) and ($rodsp == 1))) {
330 $colfield .="dayname($column)";
331 $colorder .="weekday($column)";
332 } elsif ((($column =~/timestamp/) and ($podsp == 2)) or (($column =~/returndate/) and ($rodsp == 2))) {
334 $colfield .="monthname($column)";
335 $colorder .="month($column)";
336 } elsif ((($column =~/timestamp/) and ($podsp == 3)) or (($column =~/returndate/) and ($rodsp == 3))) {
338 $colfield .="Year($column)";
339 $colorder .= $column;
340 } elsif (($column=~/timestamp/) or ($column=~/returndate/)){
341 $colfield .= 'date_format( '."'".$column."'". ', "%Y-%m-%d")';
342 $colorder .= $column;
344 $colfield .= $column;
345 $colorder .= $column;
349 $strsth2 .= "SELECT distinctrow $colfield
351 LEFT JOIN borrowers ON borrowers.borrowernumber=old_issues.borrowernumber
352 LEFT JOIN items ON items.itemnumber=old_issues.itemnumber
353 LEFT JOIN biblioitems ON (biblioitems.biblioitemnumber=items.biblioitemnumber)
356 if (($column=~/timestamp/) or ($column=~/returndate/)){
357 if ($colfilter[1] and ($colfilter[0])){
358 $strsth2 .= " AND $column BETWEEN '$colfilter[0]' AND '$colfilter[1]' " ;
359 } elsif ($colfilter[1]) {
360 $strsth2 .= " AND $column < '$colfilter[1]' " ;
361 } elsif ($colfilter[0]) {
362 $strsth2 .= " AND $column > '$colfilter[0]' " ;
365 $strsth2 .= " AND dayname($column) = '$colfilter[2]' " ;
368 $strsth2 .= " AND monthname($column) = '$colfilter[3]' " ;
370 } elsif ($colfilter[0]) {
371 $colfilter[0] =~ s/\*/%/g;
372 $strsth2 .= " AND $column LIKE '$colfilter[0]' " ;
374 $strsth2 .=" GROUP BY $colfield";
375 $strsth2 .=" ORDER BY $colorder";
377 my $sth2 = $dbh->prepare( $strsth2 );
381 while (my ($celvalue) = $sth2->fetchrow) {
384 # warn "coltitle :".$celvalue;
385 $cell{coltitle
} = $celvalue;
387 push @loopcol, \
%cell;
389 # warn "fin des titres colonnes";
394 #Initialization of cell values.....
400 foreach my $row ( @loopline ) {
401 foreach my $col ( @loopcol ) {
402 # warn " init table : $row->{rowtitle} / $col->{coltitle} ";
403 $table{$row->{rowtitle
}}->{$col->{coltitle
}}=0;
405 $table{$row->{rowtitle
}}->{totalrow
}=0;
408 # preparing calculation
411 # Processing average loanperiods
412 $strcalc .= "SELECT $linefield, $colfield, ";
413 $strcalc .= " issuedate, returndate, COUNT(*) FROM `old_issues`,borrowers,biblioitems LEFT JOIN items ON (biblioitems.biblioitemnumber=items.biblioitemnumber) WHERE old_issues.itemnumber=items.itemnumber AND old_issues.borrowernumber=borrowers.borrowernumber";
415 @
$filters[0]=~ s/\*/%/g if (@
$filters[0]);
416 $strcalc .= " AND old_issues.timestamp > '" . @
$filters[0] ."'" if ( @
$filters[0] );
417 @
$filters[1]=~ s/\*/%/g if (@
$filters[1]);
418 $strcalc .= " AND old_issues.timestamp < '" . @
$filters[1] ."'" if ( @
$filters[1] );
419 @
$filters[4]=~ s/\*/%/g if (@
$filters[4]);
420 $strcalc .= " AND old_issues.returndate > '" . @
$filters[4] ."'" if ( @
$filters[4] );
421 @
$filters[5]=~ s/\*/%/g if (@
$filters[5]);
422 $strcalc .= " AND old_issues.returndate < '" . @
$filters[5] ."'" if ( @
$filters[5] );
423 @
$filters[8]=~ s/\*/%/g if (@
$filters[8]);
424 $strcalc .= " AND borrowers.categorycode like '" . @
$filters[8] ."'" if ( @
$filters[8] );
425 @
$filters[9]=~ s/\*/%/g if (@
$filters[9]);
426 $strcalc .= " AND $itype like '" . @
$filters[9] ."'" if ( @
$filters[9] );
427 @
$filters[10]=~ s/\*/%/g if (@
$filters[10]);
428 $strcalc .= " AND old_issues.branchcode like '" . @
$filters[10] ."'" if ( @
$filters[10] );
429 @
$filters[11]=~ s/\*/%/g if (@
$filters[11]);
430 $strcalc .= " AND borrowers.sort1 like '" . @
$filters[11] ."'" if ( @
$filters[11] );
431 @
$filters[12]=~ s/\*/%/g if (@
$filters[12]);
432 $strcalc .= " AND borrowers.sort2 like '" . @
$filters[12] ."'" if ( @
$filters[12] );
433 $strcalc .= " AND dayname(timestamp) like '" . @
$filters[2]."'" if (@
$filters[2]);
434 $strcalc .= " AND monthname(timestamp) like '" . @
$filters[3] ."'" if ( @
$filters[3] );
435 $strcalc .= " AND dayname(returndate) like '" . @
$filters[5]."'" if (@
$filters[5]);
436 $strcalc .= " AND monthname(returndate) like '" . @
$filters[6] ."'" if ( @
$filters[6] );
438 $strcalc .= " group by $linefield, $colfield, issuedate, returndate order by $linefield, $colfield";
440 my $dbcalc = $dbh->prepare($strcalc);
442 # warn "filling table";
447 while (my @data = $dbcalc->fetchrow) {
448 my ($row, $col, $issuedate, $returndate, $weight)=@data;
449 # warn "filling table $row / $col / $issuedate / $returndate /$weight";
450 $emptycol=1 if (!defined($col));
451 $col = "zzEMPTY" if (!defined($col));
452 $row = "zzEMPTY" if (!defined($row));
453 # fill returndate to avoid an error with date calc (needed for all non returned issues)
454 $returndate= join '-',Date
::Calc
::Today
if $returndate eq '0000-00-00';
455 # DateCalc returns => 0:0:WK:DD:HH:MM:SS the weeks, days, hours, minutes,
456 # and seconds between the two
457 $loanlength = Delta_Days
(split(/-/,$issuedate),split (/-/,$returndate)) ;
458 # warn "512 Same row and col DateCalc returns :$loanlength with return ". $returndate ."issue ". $issuedate ."weight : ". $weight;
459 # warn "513 row :".$row." column :".$col;
460 $table{$row}->{$col}+=$weight*$loanlength;
461 # $table{$row}->{totalrow}+=$weight*$loanlength;
462 $cnttable{$row}->{$col}= 1;
463 $wgttable{$row}->{$col}+=$weight;
466 push @loopcol,{coltitle
=> "NULL"} if ($emptycol);
468 foreach my $row ( sort keys %table ) {
470 #@loopcol ensures the order for columns is common with column titles
471 # and the number matches the number of columns
473 foreach my $col ( @loopcol ) {
476 ( ( $col->{coltitle
} eq 'NULL' )
477 or ( $col->{coltitle
} eq q{} )
478 ) ?
'zzEMPTY' : $col->{coltitle
}
481 $value = $table{$row}->{
482 ( ( $col->{coltitle
} eq 'NULL' )
483 or ( $col->{coltitle
} eq q{} )
484 ) ?
'zzEMPTY' : $col->{coltitle
}
485 } / $wgttable{$row}->{
486 ( ( $col->{coltitle
} eq 'NULL' )
487 or ( $col->{coltitle
} eq q{} )
488 ) ?
'zzEMPTY' : $col->{coltitle
}
491 $table{$row}->{(($col->{coltitle
} eq "NULL")or ($col->{coltitle
} eq ""))?
"zzEMPTY":$col->{coltitle
}} = $value;
492 $table{$row}->{totalrow
}+=$value;
493 #warn "row : $row col:$col $cnttable{$row}->{(($col->{coltitle} eq \"NULL\")or ($col->{coltitle} eq \"\"))?\"zzEMPTY\":$col->{coltitle}}";
494 $colcount+=$cnttable{$row}->{(($col->{coltitle
} eq "NULL")or ($col->{coltitle
} eq ""))?
"zzEMPTY":$col->{coltitle
}};
495 push @loopcell, {value
=> ($value)?
sprintf("%.2f",$value):0 } ;
497 #warn "row : $row colcount:$colcount";
499 if ( $colcount > 0 ) {
500 $total = $table{$row}->{totalrow
} / $colcount;
503 { 'rowtitle' => ( $row eq "zzEMPTY" ) ?
"NULL" : $row,
504 'loopcell' => \
@loopcell,
505 'hilighted' => ( $hilighted > 0 ),
506 'totalrow' => ($total) ?
sprintf( "%.2f", $total ) : 0
508 $hilighted = -$hilighted;
511 # # warn "footer processing";
512 foreach my $col ( @loopcol ) {
515 foreach my $row ( @looprow ) {
516 $total += $cnttable{($row->{rowtitle
} eq "NULL")?
"zzEMPTY":$row->{rowtitle
}}->{($col->{coltitle
} eq "NULL")?
"zzEMPTY":$col->{coltitle
}}*$table{($row->{rowtitle
} eq "NULL")?
"zzEMPTY":$row->{rowtitle
}}->{($col->{coltitle
} eq "NULL")?
"zzEMPTY":$col->{coltitle
}};
517 $nbrow +=$cnttable{($row->{rowtitle
} eq "NULL")?
"zzEMPTY":$row->{rowtitle
}}->{($col->{coltitle
} eq "NULL")?
"zzEMPTY":$col->{coltitle
}};;
518 # warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
520 # warn "summ for column ".$col->{coltitle}." = ".$total;
521 $total = $total/$nbrow if ($nbrow);
522 push @loopfooter, {'totalcol' => ($total)?
sprintf("%.2f",$total):0};
527 # the header of the table
528 $globalline{loopfilter
}=\
@loopfilter;
529 # the core of the table
530 $globalline{looprow
} = \
@looprow;
531 $globalline{loopcol
} = \
@loopcol;
532 # # the foot (totals by borrower type)
533 $globalline{loopfooter
} = \
@loopfooter;
534 $globalline{total
}= $grantotal;
535 $globalline{line
} = $line;
536 $globalline{column
} = $column;
537 push @mainloop,\
%globalline;