3 # Copyright 2012 BibLibre
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA 02111-1307 USA
20 =head1 members/statistics.pl
21 Generate statistic issues for a member
31 use C4
::Members
::Statistics
;
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
37 { template_name
=> "members/statistics.tmpl",
41 flagsrequired
=> { borrowers
=> 1 },
46 my $borrowernumber = $input->param('borrowernumber');
48 # Set informations for the patron
49 my $borrower = GetMemberDetails
( $borrowernumber, 0 );
50 if ( not defined $borrower ) {
51 $template->param (unknowuser
=> 1);
52 output_html_with_http_headers
$input, $cookie, $template->output;
56 foreach my $key ( keys %$borrower ) {
57 $template->param( $key => $borrower->{$key} );
60 # Construct column names
61 my $fields = C4
::Context
->preference('StatisticsFields') || 'location|itype|ccode';
62 our @statistic_column_names = split '\|', $fields;
63 our @value_column_names = ( 'count_precedent_state', 'count_total_issues_today', 'count_total_issues_returned_today' );
64 our @column_names = ( @statistic_column_names, @value_column_names );
67 my $precedent_state = GetPrecedentStateByBorrower
( $borrowernumber );
68 my $total_issues_today = GetTotalIssuesTodayByBorrower
( $borrowernumber );
69 my $total_issues_returned_today = GetTotalIssuesReturnedTodayByBorrower
( $borrowernumber );
71 @
$precedent_state, @
$total_issues_today, @
$total_issues_returned_today
73 add_actual_state
( $r );
74 my ( $total, $datas ) = build_array
( $r );
77 my $count_total_precedent_state = $total->{count_precedent_state
} || 0;
78 my $count_total_issues = $total->{count_total_issues_today
} || 0;
79 my $count_total_issues_returned = $total->{count_total_issues_returned_today
} || 0;
80 my $count_total_actual_state = ($count_total_precedent_state - $count_total_issues_returned + $count_total_issues);
85 column_names
=> \
@statistic_column_names,
86 length_keys
=> scalar( @statistic_column_names),
87 count_total_issues
=> $count_total_issues,
88 count_total_issues_returned
=> $count_total_issues_returned,
89 count_total_precedent_state
=> $count_total_precedent_state,
90 count_total_actual_state
=> $count_total_actual_state,
93 output_html_with_http_headers
$input, $cookie, $template->output;
98 =head2 add_actual_state
99 Add a 'count_actual_state' key in all hashes
100 count_actual_state = count_precedent_state - count_total_issues_returned_today + count_total_issues_today
102 sub add_actual_state
{
104 for my $hash ( @
$array ) {
105 $hash->{count_actual_state
} = ( $hash->{count_precedent_state
} // 0 ) - ( $hash->{count_total_issues_returned_today
} // 0 ) + ( $hash->{count_total_issues_today
} // 0 );
110 Build a new array containing values of hashes.
111 It used by template whitch display silly values.
115 'count_total_issues_returned_today' => 1,
117 'count_actual_state' => 1,
118 'count_precedent_state' => 1,
119 'homebranch' => 'homebranch',
120 'count_total_issues_today' => 1,
141 for my $hash ( @
$array) {
143 for my $cn ( ( @column_names, 'count_actual_state') ) {
144 if ( grep /$cn/, ( @value_column_names, 'count_actual_state') ) {
146 if ( exists $total->{$cn} ) {
147 $total->{$cn} += $hash->{$cn} if $hash->{$cn};
149 $total->{$cn} = $hash->{$cn};
152 push @line, $hash->{$cn};
156 return ( $total, \
@r );
160 Merge hashes with the same statistic column names into one
161 param: array, a arrayref of arrayrefs
166 'count_precedent_state' => '1',
167 'homebranch' => 'homebranch',
171 'count_total_issues_returned_today' => '1',
173 'homebranch' => 'homebranch',
180 'count_total_issues_returned_today' => '1',
182 'count_precedent_state' => '1',
183 'homebranch' => 'homebranch',
192 for my $h ( @array ) {
196 for my $cn ( @statistic_column_names ) {
197 if ( not $ch->{$cn} eq $h->{$cn} ) {
203 for my $cn ( @value_column_names ) {
204 next if not exists $h->{$cn};
205 $ch->{$cn} = $h->{$cn} ?
$h->{$cn} : 0;
211 if ( not $exists ) {push @r, $h;}