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>.
22 use List
::MoreUtils qw
/uniq/;
31 use C4
::Members
::AttributeTypes
;
33 use Koha
::AuthorisedValues
;
36 use Koha
::Patron
::Categories
;
45 plugin that shows a stats on borrowers
52 my $do_it=$input->param('do_it');
53 my $fullreportname = "reports/borrowers_stats.tt";
54 my $line = $input->param("Line");
55 my $column = $input->param("Column");
56 my @filters = $input->multi_param("Filter");
57 $filters[3] = eval { output_pref
( { dt
=> dt_from_string
( $filters[3]), dateonly
=> 1, dateformat
=> 'iso' } ); }
59 $filters[4] = eval { output_pref
({ dt
=> dt_from_string
( $filters[4]), dateonly
=> 1, dateformat
=> 'iso' } ); }
61 my $digits = $input->param("digits");
62 our $period = $input->param("period");
63 my $borstat = $input->param("status");
64 my $borstat1 = $input->param("activity");
65 my $output = $input->param("output");
66 my $basename = $input->param("basename");
67 our $sep = $input->param("sep");
68 $sep = "\t" if ($sep and $sep eq 'tabulation');
70 my ($template, $borrowernumber, $cookie)
71 = get_template_and_user
({template_name
=> $fullreportname,
75 flagsrequired
=> {reports
=> '*'},
78 $template->param(do_it
=> $do_it);
81 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
82 $attributes = parse_extended_patron_attributes
($input);
84 my $results = calculate
($line, $column, $digits, $borstat,$borstat1 ,\
@filters, $attributes);
85 if ($output eq "screen"){
86 $template->param(mainloop
=> $results);
87 output_html_with_http_headers
$input, $cookie, $template->output;
89 print $input->header(-type
=> 'application/vnd.sun.xml.calc',
91 -name
=> "$basename.csv",
92 -attachment
=> "$basename.csv");
93 my $cols = @
$results[0]->{loopcol
};
94 my $lines = @
$results[0]->{looprow
};
95 print @
$results[0]->{line
} ."/". @
$results[0]->{column
} .$sep;
96 foreach my $col ( @
$cols ) {
97 print $col->{coltitle
}.$sep;
100 foreach my $line ( @
$lines ) {
101 my $x = $line->{loopcell
};
102 print $line->{rowtitle
}.$sep;
103 foreach my $cell (@
$x) {
104 print $cell->{value
}.$sep;
106 print $line->{totalrow
};
110 $cols = @
$results[0]->{loopfooter
};
111 foreach my $col ( @
$cols ) {
112 print $sep.$col->{totalcol
};
114 print $sep.@
$results[0]->{total
};
116 exit; # exit after do_it, regardless
118 my $dbh = C4
::Context
->dbh;
120 my $patron_categories = Koha
::Patron
::Categories
->search({}, {order_by
=> ['description']});
121 $template->param( patron_categories
=> $patron_categories );
122 $req = $dbh->prepare("SELECT DISTINCTROW zipcode FROM borrowers WHERE zipcode IS NOT NULL AND zipcode <> '' ORDER BY zipcode");
124 $template->param( ZIP_LOOP
=> $req->fetchall_arrayref({}));
125 $req = $dbh->prepare("SELECT authorised_value,lib FROM authorised_values WHERE category='Bsort1' ORDER BY lib");
127 $template->param( SORT1_LOOP
=> $req->fetchall_arrayref({}));
128 $req = $dbh->prepare("SELECT DISTINCTROW sort2 AS value FROM borrowers WHERE sort2 IS NOT NULL AND sort2 <> '' ORDER BY sort2 LIMIT 200");
129 # More than 200 items in a dropdown is not going to be useful anyway, and w/ 50,000 patrons we can destroy DB performance.
131 $template->param( SORT2_LOOP
=> $req->fetchall_arrayref({}));
133 my $CGIextChoice = ( 'CSV' ); # FIXME translation
134 my $CGIsepChoice=GetDelimiterChoices
;
136 CGIextChoice
=> $CGIextChoice,
137 CGIsepChoice
=> $CGIsepChoice,
139 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
140 $template->param(ExtendedPatronAttributes
=> 1);
141 patron_attributes_form
($template);
144 output_html_with_http_headers
$input, $cookie, $template->output;
147 my ($line, $column, $digits, $status, $activity, $filters, $attr_filters) = @_;
157 my $dbh = C4
::Context
->dbh;
160 my @valid_names = qw(categorycode zipcode branchcode sex sort1 sort2);
161 my @attribute_types = C4
::Members
::AttributeTypes
::GetAttributeTypes
;
162 if ($line =~ /^patron_attr\.(.*)/) {
163 my $attribute_type = $1;
164 return unless (grep {$attribute_type eq $_->{code
}} @attribute_types);
166 return unless (grep /^$line$/, @valid_names);
168 if ($column =~ /^patron_attr\.(.*)/) {
169 my $attribute_type = $1;
170 return unless (grep {$attribute_type eq $_->{code
}} @attribute_types);
172 return unless (grep /^$column$/, @valid_names);
174 return if ($digits and $digits !~ /^\d+$/);
175 return if ($status and (grep /^$status$/, qw(debarred gonenoaddress lost)) == 0);
176 return if ($activity and (grep /^$activity$/, qw(active nonactive)) == 0);
180 if ( $line =~ /categorycode/ ) { $linefilter = @
$filters[0]; }
181 elsif ( $line =~ /zipcode/ ) { $linefilter = @
$filters[1]; }
182 elsif ( $line =~ /branchcode/ ) { $linefilter = @
$filters[2]; }
183 elsif ( $line =~ /sex/ ) { $linefilter = @
$filters[5]; }
184 elsif ( $line =~ /sort1/ ) { $linefilter = @
$filters[6]; }
185 elsif ( $line =~ /sort2/ ) { $linefilter = @
$filters[7]; }
186 elsif ( $line =~ /^patron_attr\.(.*)$/ ) { $linefilter = $attr_filters->{$1}; }
187 else { $linefilter = ''; }
190 if ( $column =~ /categorycode/ ) { $colfilter = @
$filters[0]; }
191 elsif ( $column =~ /zipcode/ ) { $colfilter = @
$filters[1]; }
192 elsif ( $column =~ /branchcode/) { $colfilter = @
$filters[2]; }
193 elsif ( $column =~ /sex/) { $colfilter = @
$filters[5]; }
194 elsif ( $column =~ /sort1/) { $colfilter = @
$filters[6]; }
195 elsif ( $column =~ /sort2/) { $colfilter = @
$filters[7]; }
196 elsif ( $column =~ /^patron_attr\.(.*)$/) { $colfilter = $attr_filters->{$1}; }
197 else { $colfilter = ''; }
200 foreach my $i (0 .. scalar @
$filters) {
202 if ( @
$filters[$i] ) {
203 if ($i == 3 or $i == 4) {
204 $cell{filter
} = eval { output_pref
( { dt
=> dt_from_string
( @
$filters[$i] ), dateonly
=> 1 }); }
205 if ( @
$filters[$i] );
207 $cell{filter
} = @
$filters[$i];
210 if ( $i == 0) { $cell{crit
} = "Cat code"; }
211 elsif ( $i == 1 ) { $cell{crit
} = "ZIP/Postal code"; }
212 elsif ( $i == 2 ) { $cell{crit
} = "Branch code"; }
214 $i == 4 ) { $cell{crit
} = "Date of birth"; }
215 elsif ( $i == 5 ) { $cell{crit
} = "Sex"; }
216 elsif ( $i == 6 ) { $cell{crit
} = "Sort1"; }
217 elsif ( $i == 7 ) { $cell{crit
} = "Sort2"; }
218 else { $cell{crit
} = "Unknown"; }
220 push @loopfilter, \
%cell;
223 foreach my $type (keys %$attr_filters) {
224 if($attr_filters->{$type}) {
226 crit
=> "Attribute $type",
227 filter
=> $attr_filters->{$type}
232 my @branchcodes = map { $_->branchcode } Koha
::Libraries
->search;
233 ($status ) and push @loopfilter,{crit
=>"Status", filter
=>$status };
234 ($activity) and push @loopfilter,{crit
=>"Activity",filter
=>$activity};
236 my ( $period_year, $period_month, $period_day )=Add_Delta_YM
( Today
(),-$period, 0);
237 my $newperioddate=$period_year."-".$period_month."-".$period_day;
241 my $line_attribute_type;
242 if ($line =~/^patron_attr\.(.*)$/) {
243 $line_attribute_type = $1;
244 $line = 'borrower_attributes.attribute';
247 if (($line =~/zipcode/) and ($digits)) {
248 $linefield = "left($line,$digits)";
252 my $patron_categories = Koha
::Patron
::Categories
->search({}, {order_by
=> ['categorycode']});
255 my @strparams; # bind parameters for the query
256 if ($line_attribute_type) {
257 $strsth = "SELECT distinct attribute FROM borrower_attributes
258 WHERE attribute IS NOT NULL AND code=?";
259 push @strparams, $line_attribute_type;
261 $strsth = "SELECT distinctrow $linefield FROM borrowers
262 WHERE $line IS NOT NULL ";
265 $linefilter =~ s/\*/%/g;
267 $strsth .= " AND $linefield LIKE ? " ;
268 push @strparams, $linefilter;
270 $strsth .= " AND $status='1' " if ($status);
271 $strsth .=" order by $linefield";
273 my $sth = $dbh->prepare($strsth);
274 $sth->execute(@strparams);
275 while (my ($celvalue) = $sth->fetchrow) {
278 $cell{rowtitle
} = $celvalue;
279 $cell{rowtitle_display
} = ($patron_categories->find($celvalue)->description || "$celvalue\*") if ($line eq 'categorycode');
282 push @loopline, \
%cell;
288 my $column_attribute_type;
289 if ($column =~/^patron_attr.(.*)$/) {
290 $column_attribute_type = $1;
291 $column = 'borrower_attributes.attribute';
294 if (($column =~/zipcode/) and ($digits)) {
295 $colfield = "left($column,$digits)";
301 my @strparams2; # bind parameters for the query
302 if ($column_attribute_type) {
303 $strsth2 = "SELECT DISTINCT attribute FROM borrower_attributes
304 WHERE attribute IS NOT NULL AND code=?";
305 push @strparams2, $column_attribute_type;
307 $strsth2 = "SELECT DISTINCTROW $colfield FROM borrowers
308 WHERE $column IS NOT NULL";
312 $colfilter =~ s/\*/%/g;
313 $strsth2 .= " AND $colfield LIKE ? ";
314 push @strparams2, $colfield;
316 $strsth2 .= " AND $status='1' " if ($status);
318 $strsth2 .= " order by $colfield";
319 my $sth2 = $dbh->prepare($strsth2);
320 $sth2->execute(@strparams2);
321 while (my ($celvalue) = $sth2->fetchrow) {
323 if (defined $celvalue) {
324 $cell{coltitle
} = $celvalue;
325 # $cell{coltitle_display} = ($colfield eq 'branchcode') ? $branches->{$celvalue}->{branchname} : $celvalue;
326 $cell{coltitle_display
} = $patron_categories->find($celvalue)->description if ($column eq 'categorycode');
328 push @loopcol, \
%cell;
332 #Initialization of cell values.....
335 foreach my $row (@loopline) {
336 foreach my $col ( @loopcol ) {
337 my $rowtitle = $row->{rowtitle
} // '';
338 my $coltitle = $row->{coltitle
} // '';
339 $table{$rowtitle}->{$coltitle} = 0;
341 $row->{rowtitle
} ||= '';
342 $table{$row->{rowtitle
}}->{totalrow
}=0;
343 $table{$row->{rowtitle
}}->{rowtitle_display
} = $row->{rowtitle_display
};
346 # preparing calculation
349 $strcalc = "SELECT ";
350 if ($line_attribute_type) {
351 $strcalc .= " attribute_$line_attribute_type.attribute AS line_attribute, ";
353 $strcalc .= " $linefield, ";
355 if ($column_attribute_type) {
356 $strcalc .= " attribute_$column_attribute_type.attribute AS column_attribute, ";
358 $strcalc .= " $colfield, ";
361 $strcalc .= " COUNT(*) FROM borrowers ";
362 foreach my $type (keys %$attr_filters) {
364 ($line_attribute_type and $line_attribute_type eq $type)
365 or ($column_attribute_type and $column_attribute_type eq $type)
366 or ($attr_filters->{$type})
368 $strcalc .= " LEFT JOIN borrower_attributes AS attribute_$type
369 ON (borrowers.borrowernumber = attribute_$type.borrowernumber
370 AND attribute_$type.code = " . $dbh->quote($type) . ") ";
373 $strcalc .= " WHERE 1 ";
375 @
$filters[0]=~ s/\*/%/g if (@
$filters[0]);
376 $strcalc .= " AND categorycode like '" . @
$filters[0] ."'" if ( @
$filters[0] );
377 @
$filters[1]=~ s/\*/%/g if (@
$filters[1]);
378 $strcalc .= " AND zipcode like '" . @
$filters[1] ."'" if ( @
$filters[1] );
379 @
$filters[2]=~ s/\*/%/g if (@
$filters[2]);
380 $strcalc .= " AND branchcode like '" . @
$filters[2] ."'" if ( @
$filters[2] );
381 @
$filters[3]=~ s/\*/%/g if (@
$filters[3]);
382 $strcalc .= " AND dateofbirth > '" . @
$filters[3] ."'" if ( @
$filters[3] );
383 @
$filters[4]=~ s/\*/%/g if (@
$filters[4]);
384 $strcalc .= " AND dateofbirth < '" . @
$filters[4] ."'" if ( @
$filters[4] );
385 @
$filters[5]=~ s/\*/%/g if (@
$filters[5]);
386 $strcalc .= " AND sex like '" . @
$filters[5] ."'" if ( @
$filters[5] );
387 @
$filters[6]=~ s/\*/%/g if (@
$filters[6]);
388 $strcalc .= " AND sort1 like '" . @
$filters[6] ."'" if ( @
$filters[6] );
389 @
$filters[7]=~ s/\*/%/g if (@
$filters[7]);
390 $strcalc .= " AND sort2 like '" . @
$filters[7] ."'" if ( @
$filters[7] );
392 foreach my $type (keys %$attr_filters) {
393 if($attr_filters->{$type}) {
394 my $filter = $attr_filters->{$type};
396 $strcalc .= " AND attribute_$type.attribute LIKE '" . $filter . "' ";
399 $strcalc .= " AND borrowers.borrowernumber in (select distinct(borrowernumber) from old_issues where issuedate > '" . $newperioddate . "')" if ($activity eq 'active');
400 $strcalc .= " AND borrowers.borrowernumber not in (select distinct(borrowernumber) from old_issues where issuedate > '" . $newperioddate . "' AND borrowernumber IS NOT NULL)" if ($activity eq 'nonactive');
401 $strcalc .= " AND $status='1' " if ($status);
403 $strcalc .= " GROUP BY ";
404 if ($line_attribute_type) {
405 $strcalc .= " line_attribute, ";
407 $strcalc .= " $linefield, ";
409 if ($column_attribute_type) {
410 $strcalc .= " column_attribute ";
412 $strcalc .= " $colfield ";
415 my $dbcalc = $dbh->prepare($strcalc);
416 (scalar(@calcparams)) ?
$dbcalc->execute(@calcparams) : $dbcalc->execute();
419 while (my ($row, $col, $value) = $dbcalc->fetchrow) {
420 # warn "filling table $row / $col / $value ";
421 $emptycol = 1 if (!defined($col));
422 $col = "zzEMPTY" if (!defined($col));
423 $row = "zzEMPTY" if (!defined($row));
425 $table{$row}->{$col}+=$value;
426 $table{$row}->{totalrow
}+=$value;
427 $grantotal += $value;
430 push @loopcol,{coltitle
=> "NULL"} if ($emptycol);
432 foreach my $row (sort keys %table) {
434 #@loopcol ensures the order for columns is common with column titles
435 # and the number matches the number of columns
436 foreach my $col ( @loopcol ) {
437 my $coltitle = $col->{coltitle
} // '';
438 $coltitle = $coltitle eq "NULL" ?
"zzEMPTY" : $coltitle;
439 my $value =$table{$row}->{$coltitle};
440 push @loopcell, {value
=> $value};
443 'rowtitle' => ($row eq "zzEMPTY")?
"NULL":$row,
444 'rowtitle_display' => $table{$row}->{rowtitle_display
} || ($row eq "zzEMPTY" ?
"NULL" : $row),
445 'loopcell' => \
@loopcell,
446 'totalrow' => $table{$row}->{totalrow
}
450 foreach my $col ( @loopcol ) {
452 foreach my $row ( @looprow ) {
453 my $rowtitle = $row->{rowtitle
} // '';
454 $rowtitle = ($rowtitle eq "NULL") ?
"zzEMPTY" : $rowtitle;
455 my $coltitle = $col->{coltitle
} // '';
456 $coltitle = ($coltitle eq "NULL") ?
"zzEMPTY" : $coltitle;
458 $total += $table{$rowtitle}->{$coltitle} || 0;
459 # warn "value added ".$table{$row->{rowtitle}}->{$col->{coltitle}}. "for line ".$row->{rowtitle};
461 # warn "summ for column ".$col->{coltitle}." = ".$total;
462 push @loopfooter, {'totalcol' => $total};
466 # the header of the table
467 $globalline{loopfilter
}=\
@loopfilter;
468 # the core of the table
469 $globalline{looprow
} = \
@looprow;
470 $globalline{loopcol
} = \
@loopcol;
471 # # the foot (totals by borrower type)
472 $globalline{loopfooter
} = \
@loopfooter;
473 $globalline{total
}= $grantotal;
474 $globalline{line
} = ($line_attribute_type) ?
$line_attribute_type : $line;
475 $globalline{column
} = ($column_attribute_type) ?
$column_attribute_type : $column;
476 push @mainloop,\
%globalline;
480 sub parse_extended_patron_attributes
{
483 my @params_names = $input->param;
485 foreach my $name (@params_names) {
486 if ($name =~ /^Filter_patron_attr\.(.*)$/) {
488 my $value = $input->param($name);
489 $attr{$code} = $value;
497 sub patron_attributes_form
{
498 my $template = shift;
500 my @types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
503 foreach my $type (@types) {
504 my $attr_type = C4
::Members
::AttributeTypes
->fetch($type->{code
});
506 class => $attr_type->class(),
507 code
=> $attr_type->code(),
508 description
=> $attr_type->description(),
509 repeatable
=> $attr_type->repeatable(),
510 category
=> $attr_type->authorised_value_category(),
511 category_code
=> $attr_type->category_code(),
514 my $newentry = { %$entry };
515 if ($attr_type->authorised_value_category()) {
516 $newentry->{use_dropdown
} = 1;
517 $newentry->{auth_val_loop
} = GetAuthorisedValues
(
518 $attr_type->authorised_value_category()
521 push @
{ $items_by_class{ $attr_type->class() } }, $newentry;
525 foreach my $class ( sort keys %items_by_class ) {
526 my $av = Koha
::AuthorisedValues
->search({ category
=> 'PA_CLASS', authorised_value
=> $class });
527 my $lib = $av->count ?
$av->next->lib : $class;
528 push @attribute_loop, {
530 items
=> $items_by_class{$class},
535 $template->param(patron_attributes
=> \
@attribute_loop);