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.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 =head1 members/statistics.pl
21 Generate statistic issues for a member
31 use C4
::Members
::Statistics
;
34 use Koha
::Patron
::Categories
;
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 { template_name
=> "members/statistics.tt",
43 flagsrequired
=> { borrowers
=> 'edit_borrowers' },
48 my $borrowernumber = $input->param('borrowernumber');
50 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
51 my $patron = Koha
::Patrons
->find( $borrowernumber );
52 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
54 my $category = $patron->category;
56 # Construct column names
57 my $fields = C4
::Members
::Statistics
::get_fields
();
58 our @statistic_column_names = split '\|', $fields;
59 our @value_column_names = ( 'count_precedent_state', 'count_total_issues_today', 'count_total_issues_returned_today' );
60 our @column_names = ( @statistic_column_names, @value_column_names );
63 my $precedent_state = GetPrecedentStateByBorrower
( $borrowernumber );
64 my $total_issues_today = GetTotalIssuesTodayByBorrower
( $borrowernumber );
65 my $total_issues_returned_today = GetTotalIssuesReturnedTodayByBorrower
( $borrowernumber );
67 @
$precedent_state, @
$total_issues_today, @
$total_issues_returned_today
70 add_actual_state
( $r );
71 my ( $total, $datas ) = build_array
( $r );
74 my $count_total_precedent_state = $total->{count_precedent_state
} || 0;
75 my $count_total_issues = $total->{count_total_issues_today
} || 0;
76 my $count_total_issues_returned = $total->{count_total_issues_returned_today
} || 0;
77 my $count_total_actual_state = ($count_total_precedent_state - $count_total_issues_returned + $count_total_issues);
83 column_names
=> \
@statistic_column_names,
84 count_total_issues
=> $count_total_issues,
85 count_total_issues_returned
=> $count_total_issues_returned,
86 count_total_precedent_state
=> $count_total_precedent_state,
87 count_total_actual_state
=> $count_total_actual_state,
90 output_html_with_http_headers
$input, $cookie, $template->output;
95 =head2 add_actual_state
97 Add a 'count_actual_state' key in all hashes
98 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 );
111 Build a new array containing values of hashes.
112 It used by template whitch display silly values.
116 'count_total_issues_returned_today' => 1,
118 'count_actual_state' => 1,
119 'count_precedent_state' => 1,
120 'homebranch' => 'homebranch',
121 'count_total_issues_today' => 1,
143 for my $hash ( @
$array) {
145 for my $cn ( ( @column_names, 'count_actual_state') ) {
146 if ( grep /$cn/, ( @value_column_names, 'count_actual_state') ) {
148 if ( exists $total->{$cn} ) {
149 $total->{$cn} += $hash->{$cn} if $hash->{$cn};
151 $total->{$cn} = $hash->{$cn};
154 push @line, $hash->{$cn};
158 return ( $total, \
@r );
163 Merge hashes with the same statistic column names into one
164 param: array, a arrayref of arrayrefs
169 'count_precedent_state' => '1',
170 'homebranch' => 'homebranch',
174 'count_total_issues_returned_today' => '1',
176 'homebranch' => 'homebranch',
183 'count_total_issues_returned_today' => '1',
185 'count_precedent_state' => '1',
186 'homebranch' => 'homebranch',
196 for my $h ( @array ) {
200 for my $cn ( @statistic_column_names ) {
201 if ( ( not defined $ch->{$cn} && defined $h->{$cn} )
202 || ( defined $ch->{$cn} && not defined $h->{$cn} )
203 || ( $ch->{$cn} ne $h->{$cn} ) )
210 for my $cn ( @value_column_names ) {
211 next if not exists $h->{$cn};
212 $ch->{$cn} = $h->{$cn} ?
$h->{$cn} : 0;
218 if ( not $exists ) {push @r, $h;}