Adding stats on acquisitions... First Version
[koha.git] / reports / acquisitions_stats.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
33 =head1 NAME
34
35 plugin that shows a stats on borrowers
36
37 =head1 DESCRIPTION
38
39
40 =over2
41
42 =cut
43
44 my $input = new CGI;
45 my $do_it=$input->param('do_it');
46 my $fullreportname = "reports/acquisitions_stats.tmpl";
47 my $line = $input->param("Line");
48 my $column = $input->param("Column");
49 my @filters = $input->param("Filter");
50 my $podsp = $input->param("PlacedOnDisplay");
51 my $rodsp = $input->param("ReceivedOnDisplay");
52 my $calc = $input->param("Cellvalue");
53 my $output = $input->param("output");
54 my $basename = $input->param("basename");
55 my $mime = $input->param("MIME");
56 my $del = $input->param("sep");
57 #warn "calcul : ".$calc;
58 my ($template, $borrowernumber, $cookie)
59         = get_template_and_user({template_name => $fullreportname,
60                                 query => $input,
61                                 type => "intranet",
62                                 authnotrequired => 0,
63                                 flagsrequired => {editcatalogue => 1},
64                                 debug => 1,
65                                 });
66 $template->param(do_it => $do_it);
67 if ($do_it) {
68         my $results = calculate($line, $column, $podsp, $rodsp, $calc, \@filters);
69         if ($output eq "screen"){
70                 $template->param(mainloop => $results);
71                 output_html_with_http_headers $input, $cookie, $template->output;
72                 exit(1);
73         } else {
74                 print $input->header(-type => 'application/vnd.sun.xml.calc', -name=>"$basename.csv" );
75                 my $cols = @$results[0]->{loopcol};
76                 my $lines = @$results[0]->{looprow};
77                 my $sep;
78                 $sep =C4::Context->preference("delimiter");
79                 print @$results[0]->{line} ."/". @$results[0]->{column} .$sep;
80                 foreach my $col ( @$cols ) {
81                         print $col->{coltitle}.$sep;
82                 }
83                 print "\n";
84                 foreach my $line ( @$lines ) {
85                         my $x = $line->{loopcell};
86                         print $line->{rowtitle}.$sep;
87                         foreach my $cell (@$x) {
88                                 print $cell->{value}.$sep;
89                         }
90                         print $line->{totalrow};
91                         print "\n";
92                 }
93                 print "TOTAL";
94                 $cols = @$results[0]->{loopfooter};
95                 foreach my $col ( @$cols ) {
96                         print $sep.$col->{totalcol};
97                 }
98                 print $sep.@$results[0]->{total};
99                 exit(1);
100         }
101 } else {
102         my $dbh = C4::Context->dbh;
103         my @values;
104         my %labels;
105         my $req;
106         $req = $dbh->prepare("select distinctrow id,name from aqbooksellers order by name");
107         $req->execute;
108         my @select;
109         my %select;
110         push @select,"";
111         $select{""}="";
112         while (my ($value, $desc) =$req->fetchrow) {
113                 push @select, $value;
114                 $select{$value}=$desc;
115         }
116         my $CGIBookSellers=CGI::scrolling_list( -name     => 'Filter',
117                                 -id => 'Filter',
118                                 -values   => \@select,
119                                 -labels   => \%select,
120                                 -size     => 1,
121                                 -multiple => 0 );
122         
123         $req = $dbh->prepare( "select distinctrow bookfundid,bookfundname from aqbookfund order by bookfundname");
124         $req->execute;
125         undef @select;
126         undef %select;
127         push @select,"";
128         $select{""}="";
129         while (my ($value,$desc) =$req->fetchrow) {
130                 push @select, $value;
131                 $select{$value}=$desc;
132         }
133         my $CGIBudget=CGI::scrolling_list( -name     => 'Filter',
134                                 -id => 'Filter',
135                                 -values   => \@select,
136                                 -labels    => \%select,
137                                 -size     => 1,
138                                 -multiple => 0 );
139         
140         $req = $dbh->prepare("select distinctrow sort1 from aqorders where sort1 is not null order by sort1");
141         $req->execute;
142         undef @select;
143         push @select,"";
144         my $hassort1;
145         while (my ($value) =$req->fetchrow) {
146                 $hassort1 =1 if ($value);
147                 push @select, $value;
148         }
149         my $CGISort1=CGI::scrolling_list( -name     => 'Filter',
150                                 -id => 'Filter',
151                                 -values   => \@select,
152                                 -size     => 1,
153                                 -multiple => 0 );
154         
155         $req = $dbh->prepare("select distinctrow sort2 from aqorders where sort2 is not null order by sort2");
156         $req->execute;
157         undef @select;
158         push @select,"";
159         my $hassort2;
160         my $hglghtsort2;
161         while (my ($value) =$req->fetchrow) {
162                 $hassort2 =1 if ($value);
163                 $hglghtsort2= !($hassort1);
164                 push @select, $value;
165         }
166         my $CGISort2=CGI::scrolling_list( -name     => 'Filter',
167                                 -id => 'Filter',
168                                 -values   => \@select,
169                                 -size     => 1,
170                                 -multiple => 0 );
171         
172         my @mime = ( C4::Context->preference("MIME") );
173         foreach my $mime (@mime){
174 #               warn "".$mime;
175         }
176         
177         my $CGIextChoice=CGI::scrolling_list(
178                                 -name     => 'MIME',
179                                 -id       => 'MIME',
180                                 -values   => \@mime,
181                                 -size     => 1,
182                                 -multiple => 0 );
183         
184         my @dels = ( C4::Context->preference("delimiter") );
185         my $CGIsepChoice=CGI::scrolling_list(
186                                 -name     => 'sep',
187                                 -id       => 'sep',
188                                 -values   => \@dels,
189                                 -size     => 1,
190                                 -multiple => 0 );
191         
192         $template->param(
193                                         CGIBookSeller => $CGIBookSellers,
194                                         CGIBudget => $CGIBudget,
195                                         hassort1=> $hassort1,
196                                         hassort2=> $hassort2,
197                                         HlghtSort2 => $hglghtsort2,
198                                         CGISort1 => $CGISort1,
199                                         CGISort2 => $CGISort2,
200                                         CGIextChoice => $CGIextChoice,
201                                         CGIsepChoice => $CGIsepChoice
202                                         );
203
204 }
205 output_html_with_http_headers $input, $cookie, $template->output;
206
207
208
209 sub calculate {
210         my ($line, $column, $podsp, $rodsp, ,$process, $filters) = @_;
211         my @mainloop;
212         my @loopfooter;
213         my @loopcol;
214         my @loopline;
215         my @looprow;
216         my %globalline;
217         my $grantotal =0;
218 # extract parameters
219         my $dbh = C4::Context->dbh;
220
221 # Filters
222 # Checking filters
223 #
224         my @loopfilter;
225         for (my $i=0;$i<=11;$i++) {
226                 my %cell;
227                 if ( @$filters[$i] ) {
228                         if ((($i==1) or ($i==3)) and (@$filters[$i-1])) {
229                                 $cell{err} = 1 if (@$filters[$i]<@$filters[$i-1]) ;
230                         }
231                         $cell{filter} .= @$filters[$i];
232                         $cell{crit} .="Placed On From" if ($i==0);
233                         $cell{crit} .="Placed On To" if ($i==1);
234                         $cell{crit} .="Received On From" if ($i==2);
235                         $cell{crit} .="Received On To" if ($i==3);
236                         $cell{crit} .="BookSeller" if ($i==4);
237                         $cell{crit} .="Budget" if ($i==5);
238                         $cell{crit} .="Sort1" if ($i==6);
239                         $cell{crit} .="Sort2" if ($i==7);
240                         push @loopfilter, \%cell;
241                 }
242         }
243         
244         my @linefilter;
245 #       warn "filtres ".@filters[0];
246 #       warn "filtres ".@filters[1];
247 #       warn "filtres ".@filters[2];
248 #       warn "filtres ".@filters[3];
249         
250         $linefilter[0] = @$filters[0] if ($line =~ /closedate/ )  ;
251         $linefilter[1] = @$filters[1] if ($line =~ /closedate/ )  ;
252         $linefilter[0] = @$filters[2] if ($line =~ /received/ )  ;
253         $linefilter[1] = @$filters[3] if ($line =~ /received/ )  ;
254         $linefilter[0] = @$filters[4] if ($line =~ /bookseller/ )  ;
255         $linefilter[0] = @$filters[5] if ($line =~ /bookfund/ )  ;
256         $linefilter[0] = @$filters[6] if ($line =~ /sort1/ )  ;
257         $linefilter[0] = @$filters[7] if ($line =~ /sort2/ ) ;
258 warn "filtre lignes".$linefilter[0]." ".$linefilter[1];
259
260         my @colfilter ;
261         $colfilter[0] = @$filters[0] if ($column =~ /closedate/ ) ;
262         $colfilter[1] = @$filters[1] if ($column =~ /closedate/ ) ;
263         $colfilter[0] = @$filters[2] if ($column =~ /received/ )  ;
264         $colfilter[1] = @$filters[3] if ($column =~ /received/ )  ;
265         $colfilter[0] = @$filters[4] if ($column =~ /bookseller/ );
266         $colfilter[0] = @$filters[5] if ($column =~ /bookfund/ )  ;
267         $colfilter[0] = @$filters[6] if ($column =~ /sort1/ )     ;
268         $colfilter[0] = @$filters[7] if ($column =~ /sort2/ )     ;
269 #warn "filtre col ".$colfilter[0]." ".$colfilter[1];
270                                               
271 # 1st, loop rows.                             
272         my $linefield;                               
273         if (($line =~/closedate/) and ($podsp == 1)) {
274                 #Display by day
275                 $linefield .="dayname($line)";  
276         } elsif (($line=~/closedate/) and ($podsp == 2)) {
277                 #Display by Month
278                 $linefield .="monthname($line)";  
279         } elsif (($line=~/closedate/) and ($podsp == 3)) {
280                 #Display by Year
281                 $linefield .="Year($line)";
282         } elsif (($line =~/received/) and ($rodsp == 1)) {
283                 #Display by day
284                 $linefield .="dayname($line)";  
285         } elsif (($line=~/received/) and ($rodsp == 2)) {
286                 #Display by Month
287                 $linefield .="monthname($line)";  
288         } elsif (($line=~/received/) and ($rodsp == 3)) {
289                 #Display by Year
290                 $linefield .="Year($line)";
291         } else {
292                 $linefield .= $line;
293         }  
294         
295         my $strsth;
296         $strsth .= "select distinctrow $linefield from aqorders, aqbasket,aqorderbreakdown left join aqorderdelivery on (aqorders.ordernumber =aqorderdelivery.ordernumber ) left join aqbooksellers on (aqbasket.booksellerid=aqbooksellers.id) where (aqorders.basketno=aqbasket.basketno) and (aqorderbreakdown.ordernumber=aqorders.ordernumber) and $line is not null ";
297         
298         if ( @linefilter ) {
299                 if ($linefilter[1]){
300                         if ($linefilter[0]){
301                                 $strsth .= " and $line between ? and ? " ;
302                         } else {
303                                 $strsth .= " and $line < ? " ;
304                         }
305                 } elsif (($linefilter[0]) and (($line=~/closedate/) or ($line=~/received/))){
306                         $strsth .= " and $line > ? " ;
307                 } elsif ($linefilter[0]) {
308                         $linefilter[0] =~ s/\*/%/g;
309                         $strsth .= " and $line LIKE ? " ;
310                 }
311         }
312         $strsth .=" group by $linefield";
313         $strsth .=" order by $linefield";
314         warn "". $strsth;
315         
316         my $sth = $dbh->prepare( $strsth );
317         if (( @linefilter ) and ($linefilter[1])){
318                 $sth->execute($linefilter[0],$linefilter[1]);
319         } elsif ($linefilter[0]) {
320                 $sth->execute($linefilter[0]);
321         } else {
322                 $sth->execute;
323         }
324         
325         while ( my ($celvalue) = $sth->fetchrow) {
326                 my %cell;
327                 if ($celvalue) {
328                         $cell{rowtitle} = $celvalue;
329                 } else {
330                         $cell{rowtitle} = "";
331                 }
332                 $cell{totalrow} = 0;
333                 push @loopline, \%cell;
334         }
335
336 # 2nd, loop cols.
337         my $colfield;
338         if (($column =~/closedate/) and ($podsp == 1)) {
339                 #Display by day
340                 $colfield .="dayname($column)";  
341         } elsif (($column=~/closedate/) and ($podsp == 2)) {
342                 #Display by Month
343                 $colfield .="monthname($column)";  
344         } elsif (($column=~/closedate/) and ($podsp == 3)) {
345                 #Display by Year
346                 $colfield .="Year($column)";
347         } elsif (($column =~/received/) and ($rodsp == 1)) {
348                 #Display by day
349                 $colfield .="dayname($column)";  
350         } elsif (($column=~/received/) and ($rodsp == 2)) {
351                 #Display by Month
352                 $colfield .="monthname($column)";  
353         } elsif (($column=~/received/) and ($rodsp == 3)) {
354                 #Display by Year
355                 $colfield .="Year($column)";
356         } else {
357                 $colfield .= $column;
358         }  
359         
360         my $strsth2;
361         $strsth2 .= "select distinctrow $colfield from aqorders, aqbasket,aqorderbreakdown left join aqorderdelivery on (aqorders.ordernumber =aqorderdelivery.ordernumber ) left join aqbooksellers on (aqbasket.booksellerid=aqbooksellers.id) where (aqorders.basketno=aqbasket.basketno) and (aqorderbreakdown.ordernumber=aqorders.ordernumber) and $column is not null ";
362         
363         if ( @colfilter ) {
364                 if ($colfilter[1]){
365                         if ($colfilter[0]){
366                                 $strsth2 .= " and $column between ? and ? " ;
367                         } else {
368                                 $strsth2 .= " and $column < ? " ;
369                         }
370                 } elsif (($colfilter[0]) and (($column=~/closedate/) or ($column=~/received/))){
371                         $strsth2 .= " and $column > ? " ;
372                 } elsif ($colfilter[0]) {
373                         $colfilter[0] =~ s/\*/%/g;
374                         $strsth2 .= " and $column LIKE ? " ;
375                 }
376         }
377         $strsth2 .=" group by $colfield";
378         $strsth2 .=" order by $colfield";
379         warn "". $strsth2;
380         
381         my $sth2 = $dbh->prepare( $strsth2 );
382         if (( @colfilter ) and ($colfilter[1])){
383                 $sth2->execute($colfilter[0],$colfilter[1]);
384         } elsif ($colfilter[0]) {
385                 $sth2->execute($colfilter[0]);
386         } else {
387                 $sth2->execute;
388         }
389
390         while (my ($celvalue) = $sth2->fetchrow) {
391                 my %cell;
392                 my %ft;
393                 $cell{coltitle} = $celvalue;
394                 $ft{totalcol} = 0;
395                 push @loopcol, \%cell;
396         }
397         
398
399         my $i=0;
400         my @totalcol;
401         my $hilighted=-1;
402         
403         #Initialization of cell values.....
404         my %table;
405 #       warn "init table";
406         foreach my $row ( @loopline ) {
407                 foreach my $col ( @loopcol ) {
408 #                       warn " init table : $row->{rowtitle} / $col->{coltitle} ";
409                         $table{$row->{rowtitle}}->{$col->{coltitle}}=0;
410                 }
411                 $table{$row->{rowtitle}}->{totalrow}=0;
412         }
413
414 # preparing calculation
415         my $strcalc ;
416         $strcalc .= "SELECT $linefield, $colfield, ";
417         $strcalc .= "COUNT( aqorders.ordernumber ) " if ($process ==1);
418         $strcalc .= "SUM( aqorders.quantity * aqorders.listprice ) " if ($process ==2);
419         $strcalc.="FROM aqorders, aqbasket,aqorderbreakdown left join aqorderdelivery on (aqorders.ordernumber =aqorderdelivery.ordernumber ) left join aqbooksellers on (aqbasket.booksellerid=aqbooksellers.id) where (aqorders.basketno=aqbasket.basketno) and (aqorderbreakdown.ordernumber=aqorders.ordernumber) and $column is not null and $line is not null ";
420
421 #       @$filters[0]=~ s/\*/%/g if (@$filters[0]);
422 #       $strcalc .= " AND dewey >" . @$filters[0] ."" if ( @$filters[0] );
423 #       @$filters[1]=~ s/\*/%/g if (@$filters[1]);
424 #       $strcalc .= " AND dewey <" . @$filters[1] ."" if ( @$filters[1] );
425 #       @$filters[2]=~ s/\*/%/g if (@$filters[2]);
426 #       $strcalc .= " AND lccn >" . @$filters[2] ."" if ( @$filters[2] );
427 #       @$filters[3]=~ s/\*/%/g if (@$filters[3]);
428 #       $strcalc .= " AND lccn <" . @$filters[3] ."" if ( @$filters[3] );
429 #       @$filters[4]=~ s/\*/%/g if (@$filters[4]);
430 #       $strcalc .= " AND items.itemcallnumber >" . @$filters[4] ."" if ( @$filters[4] );
431 #       @$filters[5]=~ s/\*/%/g if (@$filters[5]);
432 #       $strcalc .= " AND items.itemcallnumber <" . @$filters[5] ."" if ( @$filters[5] );
433 #       @$filters[6]=~ s/\*/%/g if (@$filters[6]);
434 #       $strcalc .= " AND biblioitems.itemtype like '" . @$filters[6] ."'" if ( @$filters[6] );
435 #       @$filters[7]=~ s/\*/%/g if (@$filters[7]);
436 #       $strcalc .= " AND biblioitems.publishercode like '" . @$filters[7] ."'" if ( @$filters[7] );
437 #       @$filters[8]=~ s/\*/%/g if (@$filters[8]);
438 #       $strcalc .= " AND publicationyear >" . @$filters[8] ."" if ( @$filters[8] );
439 #       @$filters[9]=~ s/\*/%/g if (@$filters[9]);
440 #       $strcalc .= " AND publicationyear <" . @$filters[9] ."" if ( @$filters[9] );
441 #       @$filters[10]=~ s/\*/%/g if (@$filters[10]);
442 #       $strcalc .= " AND items.homebranch like '" . @$filters[10] ."'" if ( @$filters[10] );
443 #       @$filters[11]=~ s/\*/%/g if (@$filters[11]);
444 #       $strcalc .= " AND items.location like '" . @$filters[11] ."'" if ( @$filters[11] );
445         $strcalc .= " group by $linefield, $colfield order by $linefield,$colfield";
446         warn "". $strcalc;
447         my $dbcalc = $dbh->prepare($strcalc);
448         $dbcalc->execute;
449 #       warn "filling table";
450         while (my ($row, $col, $value) = $dbcalc->fetchrow) {
451 #               warn "filling table $row / $col / $value ";
452                 $table{$row}->{$col}=$value;
453                 $table{$row}->{totalrow}+=$value;
454                 $grantotal += $value;
455         }
456         
457         foreach my $row ( sort keys %table ) {
458                 my @loopcell;
459                 #@loopcol ensures the order for columns is common with column titles
460                 foreach my $col ( @loopcol ) {
461                         push @loopcell, {value => $table{$row}->{$col->{coltitle}}} ;
462                 }
463                 push @looprow,{ 'rowtitle' => $row,
464                                                 'loopcell' => \@loopcell,
465                                                 'hilighted' => 1 ,
466                                                 'totalrow' => $table{$row}->{totalrow}
467                                         };
468                 $hilighted = -$hilighted;
469         }
470         
471 #       warn "footer processing";
472         foreach my $col ( @loopcol ) {
473                 my $total=0;
474                 foreach my $row ( @looprow ) {
475                         $total += $table{$row->{rowtitle}}->{$col->{coltitle}};
476 #                       warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
477                 }
478 #               warn "summ for column ".$col->{coltitle}."  = ".$total;
479                 push @loopfooter, {'totalcol' => $total};
480         }
481                         
482
483         # the header of the table
484         $globalline{loopfilter}=\@loopfilter;
485         # the core of the table
486         $globalline{looprow} = \@looprow;
487         $globalline{loopcol} = \@loopcol;
488 #       # the foot (totals by borrower type)
489         $globalline{loopfooter} = \@loopfooter;
490         $globalline{total}= $grantotal;
491         $globalline{line} = $line;
492         $globalline{column} = $column;
493         push @mainloop,\%globalline;
494         return \@mainloop;
495 }
496
497 1;