3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
36 reports/acquisitions_stats.pl
40 Plugin that shows a stats on borrowers
45 my $do_it = $input->param('do_it');
46 my $fullreportname = "reports/acquisitions_stats.tt";
47 my $line = $input->param("Line");
48 my $column = $input->param("Column");
49 my @filters = $input->multi_param("Filter");
50 $filters[0] = eval { output_pref
( { dt
=> dt_from_string
( $filters[0]), dateonly
=> 1, dateformat
=> 'iso' } ); }
52 $filters[1] = eval { output_pref
( { dt
=> dt_from_string
( $filters[1]), dateonly
=> 1, dateformat
=> 'iso' } ); }
54 $filters[2] = eval { output_pref
( { dt
=> dt_from_string
( $filters[2]), dateonly
=> 1, dateformat
=> 'iso' } ); }
56 $filters[3] = eval { output_pref
( { dt
=> dt_from_string
( $filters[3]), dateonly
=> 1, dateformat
=> 'iso' } ); }
58 my $podsp = $input->param("PlacedOnDisplay");
59 my $rodsp = $input->param("ReceivedOnDisplay");
60 my $calc = $input->param("Cellvalue");
61 my $output = $input->param("output");
62 my $basename = $input->param("basename");
64 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
66 template_name
=> $fullreportname,
70 flagsrequired
=> { reports
=> '*' },
75 our $sep = $input->param("sep") // '';
76 $sep = "\t" if ($sep eq 'tabulation');
84 calculate
( $line, $column, $podsp, $rodsp, $calc, \
@filters );
85 if ( $output eq "screen" ) {
86 $template->param( mainloop
=> $results );
87 output_html_with_http_headers
$input, $cookie, $template->output;
91 -type
=> 'application/vnd.sun.xml.calc',
93 -attachment
=> "$basename.csv",
94 -name
=> "$basename.csv"
96 my $cols = @
$results[0]->{loopcol
};
97 my $lines = @
$results[0]->{looprow
};
98 print @
$results[0]->{line
} . "/" . @
$results[0]->{column
} . $sep;
99 foreach my $col (@
$cols) {
100 print $col->{coltitle
} . $sep;
103 foreach my $line (@
$lines) {
104 my $x = $line->{loopcell
};
105 print $line->{rowtitle
} . $sep;
106 foreach my $cell (@
$x) {
107 print $cell->{value
} . $sep;
109 print $line->{totalrow
};
113 $cols = @
$results[0]->{loopfooter
};
114 foreach my $col (@
$cols) {
115 print $sep. $col->{totalcol
};
117 print $sep. @
$results[0]->{total
};
122 my $dbh = C4
::Context
->dbh;
124 $req = $dbh->prepare("SELECT distinctrow id,name FROM aqbooksellers ORDER BY name");
126 my $booksellers = $req->fetchall_arrayref({});
128 $req = $dbh->prepare("SELECT DISTINCTROW budget_code, budget_name FROM aqbudgets ORDER BY budget_name");
133 while ( my ( $value, $desc ) = $req->fetchrow ) {
134 push @bselect, $value;
135 $bselect{$value} = $desc;
144 "SELECT DISTINCTROW sort1 FROM aqorders WHERE sort1 IS NOT NULL ORDER BY sort1"
150 while ( my ($value) = $req->fetchrow ) {
153 push @s1select, $value;
154 $s1select{$value} = $value;
158 values => \
@s1select,
159 labels
=> \
%s1select,
164 "SELECT DISTINCTROW sort2 FROM aqorders WHERE sort2 IS NOT NULL ORDER BY sort2"
172 while ( my ($value) = $req->fetchrow ) {
175 $hglghtsort2 = !($hassort1);
176 push @s2select, $value;
177 $s2select{$value} = $value;
181 values => \
@s2select,
182 labels
=> \
%s2select,
185 my $CGIsepChoice = GetDelimiterChoices
;
187 my @branches = Koha
::Libraries
->search({}, { order_by
=> 'branchname' });
189 my $ccode_subfield_structure = GetMarcSubfieldStructureFromKohaField
('items.ccode');
192 if($ccode_subfield_structure) {
193 $ccode_label = $ccode_subfield_structure->{liblibrarian
};
194 $ccode_avlist = GetAuthorisedValues
($ccode_subfield_structure->{authorised_value
});
197 my $itemtypes = Koha
::ItemTypes
->search_with_localization;
199 booksellers
=> $booksellers,
200 itemtypes
=> $itemtypes, # FIXME Should use the TT plugin instead
202 hassort1
=> $hassort1,
203 hassort2
=> $hassort2,
206 CGIsepChoice
=> $CGIsepChoice,
207 branches
=> \
@branches,
208 ccode_label
=> $ccode_label,
209 ccode_avlist
=> $ccode_avlist,
213 output_html_with_http_headers
$input, $cookie, $template->output;
216 my ( $line, $column, $podsp, $rodsp, $process, $filters ) = @_;
229 my $dbh = C4
::Context
->dbh;
235 for ( my $i = 0 ; $i <= @
$filters ; $i++ ) {
236 if( defined @
$filters[$i] and @
$filters[$i] ne '' ) {
238 if ( ( ( $i == 1 ) or ( $i == 3 ) ) and ( @
$filters[ $i - 1 ] ) ) {
239 $cell{err
} = 1 if ( @
$filters[$i] lt @
$filters[ $i - 1 ] );
241 # format the dates filters, otherwise just fill as is
243 $cell{filter
} = @
$filters[$i];
245 $cell{filter
} = eval { output_pref
( { dt
=> dt_from_string
( @
$filters[$i] ), dateonly
=> 1 }); }
246 if ( @
$filters[$i] );
249 push @loopfilter, \
%cell;
255 foreach ($line, $column) {
258 if ( $_ =~ /closedate/ ) {
259 $filter{$_}->[0] = @
$filters[0];
260 $filter{$_}->[1] = @
$filters[1];
263 $field{$a} = "concat(hex(weekday($a)+1),'-',dayname($a))";
264 } elsif ( $podsp == 2 ) {
265 $field{$a} = "concat(hex(month($a)),'-',monthname($a))";
266 } elsif ( $podsp == 3 ) {
267 $field{$a} = "Year($a)";
272 elsif ( $_ =~ /received/ ) {
273 $filter{$_}->[0] = @
$filters[2];
274 $filter{$_}->[1] = @
$filters[3];
277 $field{$a} = "concat(hex(weekday($a)+1),'-',dayname($a))";
278 } elsif ( $rodsp == 2 ) {
279 $field{$a} = "concat(hex(month($a)),'-',monthname($a))";
280 } elsif ( $rodsp == 3 ) {
281 $field{$a} = "Year($a)";
286 elsif ( $_ =~ /bookseller/ ) {
287 $filter{$_}->[0] = @
$filters[4];
289 elsif ( $_ =~ /homebranch/ ) {
290 $filter{$_}->[0] = @
$filters[5];
292 elsif ( $_ =~ /ccode/ ) {
293 $filter{$_}->[0] = @
$filters[6];
295 elsif ( $_ =~ /itemtype/ ) {
296 $filter{$_}->[0] = @
$filters[7];
298 elsif ( $_ =~ /budget/ ) {
299 $filter{$_}->[0] = @
$filters[8];
301 elsif ( $_ =~ /sort1/ ) {
302 $filter{$_}->[0] = @
$filters[9];
304 elsif ( $_ =~ /sort2/ ) {
305 $filter{$_}->[0] = @
$filters[10];
309 my @linefilter = @
{ $filter{$line} };
310 my $linefield = $field{$line};
311 my @colfilter = @
{ $filter{$column} };
312 my $colfield = $field{$column};
316 SELECT DISTINCTROW $linefield
318 LEFT JOIN aqbasket ON (aqorders.basketno = aqbasket.basketno)
319 LEFT JOIN aqorders_items ON (aqorders.ordernumber = aqorders_items.ordernumber)
320 LEFT JOIN items ON (aqorders_items.itemnumber = items.itemnumber)
321 LEFT JOIN biblioitems ON (aqorders.biblionumber = biblioitems.biblionumber)
322 LEFT JOIN aqbudgets ON (aqorders.budget_id = aqbudgets.budget_id )
323 LEFT JOIN aqbooksellers ON (aqbasket.booksellerid = aqbooksellers.id)
324 WHERE $line IS NOT NULL AND $line <> '' ";
327 if ( $linefilter[1] ) {
328 if ( $linefilter[0] ) {
329 $strsth .= " AND $line BETWEEN ? AND ? ";
332 $strsth .= " AND $line <= ? ";
337 and ( ( $line =~ /closedate/ )
338 or ( $line =~ /received/ ))
341 $strsth .= " AND $line >= ? ";
343 elsif ( $linefilter[0] ) {
344 $linefilter[0] =~ s/\*/%/g;
345 $strsth .= " AND $line LIKE ? ";
348 $strsth .= " GROUP BY $linefield";
349 $strsth .= " ORDER BY $line";
351 my $sth = $dbh->prepare($strsth);
352 if ( (@linefilter) and ( $linefilter[1] ) ) {
353 $sth->execute( $linefilter[0], $linefilter[1] );
355 elsif ( $linefilter[0] ) {
356 $sth->execute( $linefilter[0] );
361 while ( my ($celvalue) = $sth->fetchrow ) {
364 $cell{rowtitle
} = $celvalue;
365 push @loopline, \
%cell;
372 SELECT DISTINCTROW $colfield
374 LEFT JOIN aqbasket ON (aqorders.basketno = aqbasket.basketno)
375 LEFT JOIN aqorders_items ON (aqorders.ordernumber = aqorders_items.ordernumber)
376 LEFT JOIN items ON (aqorders_items.itemnumber = items.itemnumber)
377 LEFT JOIN biblioitems ON (aqorders.biblionumber = biblioitems.biblionumber)
378 LEFT JOIN aqbudgets ON (aqorders.budget_id = aqbudgets.budget_id )
379 LEFT JOIN aqbooksellers ON (aqbasket.booksellerid = aqbooksellers.id)
380 WHERE $column IS NOT NULL AND $column <> ''
384 if ( $colfilter[1] ) {
385 if ( $colfilter[0] ) {
386 $strsth2 .= " AND $column BETWEEN ? AND ? ";
389 $strsth2 .= " AND $column <= ? ";
394 and ( ( $column =~ /closedate/ )
395 or ( $line =~ /received/ ))
398 $strsth2 .= " AND $column >= ? ";
400 elsif ( $colfilter[0] ) {
401 $colfilter[0] =~ s/\*/%/g;
402 $strsth2 .= " AND $column LIKE ? ";
406 $strsth2 .= " GROUP BY $colfield";
407 $strsth2 .= " ORDER BY $colfield";
409 my $sth2 = $dbh->prepare($strsth2);
411 if ( (@colfilter) and ($colfilter[1]) ) {
412 $sth2->execute( $colfilter[0], $colfilter[1] );
414 elsif ( $colfilter[0] ) {
415 $sth2->execute( $colfilter[0] );
420 while ( my $celvalue = $sth2->fetchrow ) {
423 $cell{coltitle
} = $celvalue;
424 push @loopcol, \
%cell;
431 #Initialization of cell values.....
434 foreach my $row (@loopline) {
435 foreach my $col (@loopcol) {
436 $table{ $row->{rowtitle
} }->{ $col->{coltitle
} } = 0;
438 $table{ $row->{rowtitle
} }->{totalrow
} = 0;
441 # preparing calculation
443 $strcalc .= "SELECT $linefield, $colfield, ";
444 if ( $process == 1 ) {
445 $strcalc .= "COUNT(*) ";
446 } elsif ( $process == 2 ) {
447 $strcalc .= "COUNT(DISTINCT(aqorders.biblionumber)) ";
448 } elsif ( $process == 3 || $process == 4 || $process == 5 ) {
449 $strcalc .= "SUM(aqorders.listprice) ";
455 LEFT JOIN aqbasket ON (aqorders.basketno = aqbasket.basketno)
456 LEFT JOIN aqorders_items ON (aqorders.ordernumber = aqorders_items.ordernumber)
457 LEFT JOIN items ON (aqorders_items.itemnumber = items.itemnumber)
458 LEFT JOIN biblioitems ON (aqorders.biblionumber = biblioitems.biblionumber)
459 LEFT JOIN aqbudgets ON (aqorders.budget_id = aqbudgets.budget_id )
460 LEFT JOIN aqbooksellers ON (aqbasket.booksellerid = aqbooksellers.id)
461 WHERE aqorders.datecancellationprinted IS NULL ";
462 $strcalc .= " AND (aqorders.datereceived IS NULL OR aqorders.datereceived = '') "
463 if ( $process == 4 );
464 $strcalc .= " AND aqorders.datereceived IS NOT NULL AND aqorders.datereceived <> '' "
465 if ( $process == 5 );
466 @
$filters[0] =~ s/\*/%/g if ( @
$filters[0] );
467 $strcalc .= " AND aqbasket.closedate >= '" . @
$filters[0] . "'"
469 @
$filters[1] =~ s/\*/%/g if ( @
$filters[1] );
470 $strcalc .= " AND aqbasket.closedate <= '" . @
$filters[1] . "'"
472 @
$filters[2] =~ s/\*/%/g if ( @
$filters[2] );
473 $strcalc .= " AND aqorders.datereceived >= '" . @
$filters[2] . "'"
475 @
$filters[3] =~ s/\*/%/g if ( @
$filters[3] );
476 $strcalc .= " AND aqorders.datereceived <= '" . @
$filters[3] . "'"
478 @
$filters[4] =~ s/\*/%/g if ( @
$filters[4] );
479 $strcalc .= " AND aqbooksellers.name LIKE '" . @
$filters[4] . "'"
481 $strcalc .= " AND items.homebranch = '" . @
$filters[5] . "'"
483 @
$filters[6] =~ s/\*/%/g if ( @
$filters[6] );
484 $strcalc .= " AND items.ccode = '" . @
$filters[6] . "'"
486 @
$filters[7] =~ s/\*/%/g if ( @
$filters[7] );
487 $strcalc .= " AND biblioitems.itemtype LIKE '" . @
$filters[7] . "'"
489 @
$filters[8] =~ s/\*/%/g if ( @
$filters[8] );
490 $strcalc .= " AND aqbudgets.budget_code LIKE '" . @
$filters[8] . "'"
492 @
$filters[9] =~ s/\*/%/g if ( @
$filters[9] );
493 $strcalc .= " AND aqorders.sort1 LIKE '" . @
$filters[9] . "'"
495 @
$filters[10] =~ s/\*/%/g if ( @
$filters[10] );
496 $strcalc .= " AND aqorders.sort2 LIKE '" . @
$filters[10] . "'"
497 if ( @
$filters[10] );
499 $strcalc .= " GROUP BY $linefield, $colfield ORDER BY $linefield,$colfield";
500 my $dbcalc = $dbh->prepare($strcalc);
504 while ( my ( $row, $col, $value ) = $dbcalc->fetchrow ) {
505 $emptycol = 1 if ( !defined($col) );
506 $col = "zzEMPTY" if ( !defined($col) );
507 $row = "zzEMPTY" if ( !defined($row) );
509 $table{$row}->{$col} += $value;
510 $table{$row}->{totalrow
} += $value;
511 $grantotal += $value;
514 push @loopcol, { coltitle
=> "NULL" } if ($emptycol);
516 foreach my $row ( sort keys %table ) {
518 #@loopcol ensures the order for columns is common with column titles
519 # and the number matches the number of columns
520 foreach my $col (@loopcol) {
521 my $value = $table{$row}->{ ( $col->{coltitle
} eq "NULL" ) ?
"zzEMPTY" : $col->{coltitle
} };
522 $value = sprintf("%.2f", $value) if($value and grep /$process/, (3,4,5));
523 push @loopcell, { value
=> $value };
526 rowtitle
=> ( $row eq "zzEMPTY" ) ?
"NULL" : $row,
527 loopcell
=> \
@loopcell,
528 hilighted
=> ( $hilighted > 0 ),
529 totalrow
=> $table{$row}->{totalrow
}
531 $r->{totalrow
} = sprintf("%.2f", $r->{totalrow
}) if($r->{totalrow
} and grep /$process/, (3,4,5));
533 $hilighted = -$hilighted;
536 foreach my $col (@loopcol) {
538 foreach my $row (@looprow) {
540 ( $row->{rowtitle
} eq "NULL" ) ?
"zzEMPTY"
543 ( $col->{coltitle
} eq "NULL" ) ?
"zzEMPTY"
547 $total = sprintf("%.2f", $total) if($total and grep /$process/, (3,4,5));
549 push @loopfooter, { 'totalcol' => $total };
552 # the header of the table
553 $globalline{loopfilter
} = \
@loopfilter;
554 # the core of the table
555 $globalline{looprow
} = \
@looprow;
556 $globalline{loopcol
} = \
@loopcol;
558 # # the foot (totals by borrower type)
559 $grantotal = sprintf("%.2f", $grantotal) if ($grantotal and grep /$process/, (3,4,5));
560 $globalline{loopfooter
} = \
@loopfooter;
561 $globalline{total
} = $grantotal;
562 $globalline{line
} = $line;
563 $globalline{column
} = $column;
564 push @mainloop, \
%globalline;