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>.
22 #use warnings; FIXME - Bug 2505
36 plugin that shows a stats on borrowers
43 my $do_it=$input->param('do_it');
44 my $fullreportname = "reports/cat_issues_top.tt";
45 my $limit = $input->param("Limit");
46 my $column = $input->param("Criteria");
47 my @filters = $input->multi_param("Filter");
48 foreach ( @filters[0..3] ) {
49 $_ and $_ = eval { output_pref
( { dt
=> dt_from_string
( $_ ), dateonly
=> 1, dateformat
=> 'iso' } ); };
52 my $output = $input->param("output");
53 my $basename = $input->param("basename");
54 #warn "calcul : ".$calc;
55 my ($template, $borrowernumber, $cookie)
56 = get_template_and_user
({template_name
=> $fullreportname,
60 flagsrequired
=> { reports
=> '*'},
63 our $sep = $input->param("sep");
64 $sep = "\t" if ($sep eq 'tabulation');
65 $template->param(do_it
=> $do_it,
69 my $results = calculate
($limit, $column, \
@filters);
70 if ($output eq "screen"){
71 # Printing results to screen
72 $template->param(mainloop
=> $results,
74 output_html_with_http_headers
$input, $cookie, $template->output;
77 # Printing to a csv file
78 print $input->header(-type
=> 'application/vnd.sun.xml.calc',
80 -attachment
=>"$basename.csv",
81 -filename
=>"$basename.csv" );
82 my $cols = @
$results[0]->{loopcol
};
83 my $lines = @
$results[0]->{looprow
};
85 print @
$results[0]->{line
} ."/". @
$results[0]->{column
} .$sep;
87 foreach my $col ( @
$cols ) {
88 print $col->{coltitle
}.$sep;
92 foreach my $line ( @
$lines ) {
93 my $x = $line->{loopcell
};
94 print $line->{rowtitle
}.$sep;
95 foreach my $cell (@
$x) {
96 print $cell->{value
}.$sep;
98 print $line->{totalrow
};
103 $cols = @
$results[0]->{loopfooter
};
104 foreach my $col ( @
$cols ) {
105 print $sep.$col->{totalcol
};
107 print $sep.@
$results[0]->{total
};
112 my $dbh = C4
::Context
->dbh;
118 my $CGIextChoice = ( 'CSV' ); # FIXME translation
119 my $CGIsepChoice=GetDelimiterChoices
;
122 my $itemtypes = Koha
::ItemTypes
->search_with_localization;
125 my $ccodes = GetAuthorisedValues
('CCODE');
127 for my $thisccode (@
$ccodes) {
128 my %row = (value
=> $thisccode->{authorised_value
},
129 description
=> $thisccode->{lib
},
131 push @ccodeloop, \
%row;
134 @ccodeloop = sort {$a->{value
} cmp $b->{value
}} @ccodeloop;
137 my $shelvinglocs = GetAuthorisedValues
('LOC');
139 for my $thisloc (@
$shelvinglocs) {
140 my %row = (value
=> $thisloc->{authorised_value
},
141 description
=> $thisloc->{lib
},
143 push @shelvinglocloop, \
%row;
146 @shelvinglocloop = sort {$a->{value
} cmp $b->{value
}} @shelvinglocloop;
148 my $patron_categories = Koha
::Patron
::Categories
->search_limited({}, {order_by
=> ['categorycode']});
151 CGIextChoice
=> $CGIextChoice,
152 CGIsepChoice
=> $CGIsepChoice,
153 itemtypes
=> $itemtypes,
154 ccodeloop
=>\
@ccodeloop,
155 shelvinglocloop
=>\
@shelvinglocloop,
156 patron_categories
=> $patron_categories,
158 output_html_with_http_headers
$input, $cookie, $template->output;
165 my ($line, $column, $filters) = @_;
174 my $dbh = C4
::Context
->dbh;
180 for (my $i=0;$i<=12;$i++) {
182 if ( @
$filters[$i] ) {
183 if (($i==1) and (@
$filters[$i-1])) {
184 $cell{err
} = 1 if (@
$filters[$i]<@
$filters[$i-1]) ;
186 # format the dates filters, otherwise just fill as is
188 $cell{filter
} .= @
$filters[$i];
190 $cell{filter
} .= eval { output_pref
( { dt
=> dt_from_string
( @
$filters[$i] ), dateonly
=> 1 }); }
191 if ( @
$filters[$i] );
193 $cell{crit
} .="Issue From" if ($i==0);
194 $cell{crit
} .="Issue To" if ($i==1);
195 $cell{crit
} .="Return From" if ($i==2);
196 $cell{crit
} .="Return To" if ($i==3);
197 $cell{crit
} .="Branch" if ($i==4);
198 $cell{crit
} .="Doc Type" if ($i==5);
199 $cell{crit
} .="Call number" if ($i==6);
200 $cell{crit
} .="Collection code" if ($i==7);
201 $cell{crit
} .="Shelving location" if ($i==8);
202 $cell{crit
} .="Bor Cat" if ($i==9);
203 $cell{crit
} .="Day" if ($i==10);
204 $cell{crit
} .="Month" if ($i==11);
205 $cell{crit
} .="Year" if ($i==12);
206 push @loopfilter, \
%cell;
212 $column = "old_issues.".$column if (($column=~/branchcode/) or ($column=~/timestamp/));
213 if($column=~/itemtype/){
214 $column = C4
::Context
->preference('item-level_itypes') ?
"items.itype": "biblioitems.itemtype";
216 $column = "borrowers.".$column if $column=~/categorycode/;
218 $colfilter[0] = @
$filters[0] if ($column =~ /timestamp/ ) ;
219 $colfilter[1] = @
$filters[1] if ($column =~ /timestamp/ ) ;
220 $colfilter[0] = @
$filters[2] if ($column =~ /returndate/ ) ;
221 $colfilter[1] = @
$filters[3] if ($column =~ /returndate/ ) ;
222 $colfilter[0] = @
$filters[4] if ($column =~ /branch/ ) ;
223 $colfilter[0] = @
$filters[5] if ($column =~ /itemtype/ ) ;
224 # These limits does not currently exist, maybe later?
225 # $colfilter[0] = @$filters[6] if ($column =~ /ccode/ ) ;
226 # $colfilter[0] = @$filters[7] if ($column =~ /location/ ) ;
227 $colfilter[0] = @
$filters[8] if ($column =~ /category/ ) ;
228 # This commented out row (sort2) was not removed when adding new filters for ccode, shelving location and call number
229 # $colfilter[0] = @$filters[11] if ($column =~ /sort2/ ) ;
230 $colfilter[0] = @
$filters[9] if ($column =~ /timestamp/ ) ;
231 $colfilter[0] = @
$filters[10] if ($column =~ /timestamp/ ) ;
232 $colfilter[0] = @
$filters[11] if ($column =~ /timestamp/ ) ;
233 #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
236 if ($column eq "Day") {
238 $column = "old_issues.timestamp";
239 $colfield .="dayname($column)";
240 $colorder .="weekday($column)";
241 } elsif ($column eq "Month") {
243 $column = "old_issues.timestamp";
244 $colfield .="monthname($column)";
245 $colorder .="month($column)";
246 } elsif ($column eq "Year") {
248 $column = "old_issues.timestamp";
249 $colfield .="Year($column)";
250 $colorder .= $column;
252 $colfield .= $column;
253 $colorder .= $column;
257 $strsth2 .= "SELECT distinctrow $colfield
259 LEFT JOIN borrowers ON borrowers.borrowernumber=old_issues.borrowernumber
260 LEFT JOIN items ON old_issues.itemnumber=items.itemnumber
261 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber=items.biblioitemnumber
263 if (($column=~/timestamp/) or ($column=~/returndate/)){
264 if ($colfilter[1] and ($colfilter[0])){
265 $strsth2 .= " and $column between '$colfilter[0]' and '$colfilter[1]' " ;
266 } elsif ($colfilter[1]) {
267 $strsth2 .= " and $column < '$colfilter[1]' " ;
268 } elsif ($colfilter[0]) {
269 $strsth2 .= " and $column > '$colfilter[0]' " ;
271 } elsif ($colfilter[0]) {
272 $colfilter[0] =~ s/\*/%/g;
273 $strsth2 .= " and $column LIKE '$colfilter[0]' " ;
275 $strsth2 .=" group by $colfield";
276 $strsth2 .=" order by $colorder";
278 my $sth2 = $dbh->prepare( $strsth2 );
279 if (( @colfilter ) and ($colfilter[1])){
280 $sth2->execute("'".$colfilter[0]."'","'".$colfilter[1]."'");
281 } elsif ($colfilter[0]) {
282 $sth2->execute($colfilter[0]);
288 while (my ($celvalue) = $sth2->fetchrow) {
290 $cell{coltitle
} = ($celvalue?
$celvalue:"NULL");
291 push @loopcol, \
%cell;
293 # warn "fin des titres colonnes";
300 #Initialization of cell values.....
304 for (my $i=1;$i<=$line;$i++) {
305 foreach my $col ( @loopcol ) {
306 # warn " init table : $row->{rowtitle} / $col->{coltitle} ";
307 $table[$i]->{($col->{coltitle
})?
$col->{coltitle
}:"total"}->{'name'}=0;
312 # preparing calculation
315 # Processing average loanperiods
316 $strcalc .= "SELECT DISTINCT biblio.title, COUNT(biblio.biblionumber) AS RANK, biblio.biblionumber AS ID";
317 $strcalc .= ", itemcallnumber as CALLNUM";
318 $strcalc .= ", ccode as CCODE";
319 $strcalc .= ", location as LOC";
320 $strcalc .= " , $colfield " if ($colfield);
321 $strcalc .= " FROM `old_issues`
322 LEFT JOIN items USING(itemnumber)
323 LEFT JOIN biblio USING(biblionumber)
324 LEFT JOIN biblioitems USING(biblionumber)
325 LEFT JOIN borrowers USING(borrowernumber)
328 @
$filters[0]=~ s/\*/%/g if (@
$filters[0]);
329 $strcalc .= " AND old_issues.timestamp > '" . @
$filters[0] ."'" if ( @
$filters[0] );
330 @
$filters[1]=~ s/\*/%/g if (@
$filters[1]);
331 $strcalc .= " AND old_issues.timestamp < '" . @
$filters[1] ."'" if ( @
$filters[1] );
332 @
$filters[2]=~ s/\*/%/g if (@
$filters[2]);
333 $strcalc .= " AND old_issues.returndate > '" . @
$filters[2] ."'" if ( @
$filters[2] );
334 @
$filters[3]=~ s/\*/%/g if (@
$filters[3]);
335 $strcalc .= " AND old_issues.returndate < '" . @
$filters[3] ."'" if ( @
$filters[3] );
336 @
$filters[4]=~ s/\*/%/g if (@
$filters[4]);
337 $strcalc .= " AND old_issues.branchcode like '" . @
$filters[4] ."'" if ( @
$filters[4] );
338 @
$filters[5]=~ s/\*/%/g if (@
$filters[5]);
340 if(C4
::Context
->preference('item-level_itypes') ){
341 $strcalc .= " AND items.itype like "
343 $strcalc .= " AND biblioitems.itemtype like "
345 $strcalc .= "'" . @
$filters[5] ."'" ;
347 @
$filters[6]=~ s/\*/%/g if (@
$filters[6]);
348 $strcalc .= " AND itemcallnumber like '" . @
$filters[6] ."'" if ( @
$filters[6] );
349 @
$filters[7]=~ s/\*/%/g if (@
$filters[7]);
350 $strcalc .= " AND ccode like '" . @
$filters[7] ."'" if ( @
$filters[7] );
351 @
$filters[8]=~ s/\*/%/g if (@
$filters[8]);
352 $strcalc .= " AND location like '" . @
$filters[8] ."'" if ( @
$filters[8] );
353 @
$filters[9]=~ s/\*/%/g if (@
$filters[9]);
354 $strcalc .= " AND borrowers.categorycode like '" . @
$filters[9] ."'" if ( @
$filters[9] );
355 @
$filters[10]=~ s/\*/%/g if (@
$filters[10]);
356 $strcalc .= " AND dayname(old_issues.timestamp) like '" . @
$filters[10]."'" if (@
$filters[10]);
357 @
$filters[11]=~ s/\*/%/g if (@
$filters[11]);
358 $strcalc .= " AND monthname(old_issues.timestamp) like '" . @
$filters[11]."'" if (@
$filters[11]);
359 @
$filters[12]=~ s/\*/%/g if (@
$filters[12]);
360 $strcalc .= " AND year(old_issues.timestamp) like '" . @
$filters[12] ."'" if ( @
$filters[12] );
362 $strcalc .= " group by biblio.biblionumber";
363 $strcalc .= ", $colfield" if ($column);
364 $strcalc .= " order by RANK DESC";
365 $strcalc .= ", $colfield " if ($colfield);
367 my $dbcalc = $dbh->prepare($strcalc);
371 while (my @data = $dbcalc->fetchrow) {
372 my ($row, $rank, $id, $callnum, $ccode, $loc, $col )=@data;
373 $col = "zzEMPTY" if (!defined($col));
374 $indice{$col}=1 if (not($indice{$col}));
375 $table[$indice{$col}]->{$col}->{'name'}=$row;
376 $table[$indice{$col}]->{$col}->{'count'}=$rank;
377 $table[$indice{$col}]->{$col}->{'link'}=$id;
381 push @loopcol,{coltitle
=> "Global"} if not($column);
383 for ($i=1; $i<=$line;$i++) {
385 #@loopcol ensures the order for columns is common with column titles
386 # and the number matches the number of columns
388 foreach my $col ( @loopcol ) {
393 $value =$table[$i]->{(($col->{coltitle
} eq "NULL") or ($col->{coltitle
} eq "Global"))?
"zzEMPTY":$col->{coltitle
}}->{'name'};
394 $count =$table[$i]->{(($col->{coltitle
} eq "NULL") or ($col->{coltitle
} eq "Global"))?
"zzEMPTY":$col->{coltitle
}}->{'count'};
395 $link =$table[$i]->{(($col->{coltitle
} eq "NULL") or ($col->{coltitle
} eq "Global"))?
"zzEMPTY":$col->{coltitle
}}->{'link'};
397 $value =$table[$i]->{"zzEMPTY"}->{'name'};
398 $count =$table[$i]->{"zzEMPTY"}->{'count'};
399 $link =$table[$i]->{"zzEMPTY"}->{'link'};
401 push @loopcell, {value
=> $value, count
=>$count, reference
=> $link} ;
403 #my $total = $table[$i]->{totalrow}/$colcount if ($colcount>0);
404 push @looprow,{ 'rowtitle' => $i ,
405 'loopcell' => \
@loopcell,
406 'hilighted' => ($hilighted >0),
408 $hilighted = -$hilighted;
413 # the header of the table
414 $globalline{loopfilter
}=\
@loopfilter;
415 # the core of the table
416 $globalline{looprow
} = \
@looprow;
417 $globalline{loopcol
} = \
@loopcol;
418 # # the foot (totals by borrower type)
419 $globalline{loopfooter
} = \
@loopfooter;
420 $globalline{total
}= $grantotal;
421 $globalline{line
} = $line;
422 $globalline{column
} = $column;
423 push @mainloop,\
%globalline;