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
;
32 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
34 use Koha
::Patron
::Images
;
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 { template_name
=> "members/statistics.tt",
43 flagsrequired
=> { borrowers
=> 1 },
48 my $borrowernumber = $input->param('borrowernumber');
50 # Set informations for the patron
51 my $borrower = GetMember
( borrowernumber
=> $borrowernumber );
52 if ( not defined $borrower ) {
53 $template->param (unknowuser
=> 1);
54 output_html_with_http_headers
$input, $cookie, $template->output;
58 foreach my $key ( keys %$borrower ) {
59 $template->param( $key => $borrower->{$key} );
62 categoryname
=> $borrower->{'description'},
64 # Construct column names
65 my $fields = C4
::Members
::Statistics
::get_fields
();
66 our @statistic_column_names = split '\|', $fields;
67 our @value_column_names = ( 'count_precedent_state', 'count_total_issues_today', 'count_total_issues_returned_today' );
68 our @column_names = ( @statistic_column_names, @value_column_names );
71 my $precedent_state = GetPrecedentStateByBorrower
( $borrowernumber );
72 my $total_issues_today = GetTotalIssuesTodayByBorrower
( $borrowernumber );
73 my $total_issues_returned_today = GetTotalIssuesReturnedTodayByBorrower
( $borrowernumber );
75 @
$precedent_state, @
$total_issues_today, @
$total_issues_returned_today
78 add_actual_state
( $r );
79 my ( $total, $datas ) = build_array
( $r );
82 my $count_total_precedent_state = $total->{count_precedent_state
} || 0;
83 my $count_total_issues = $total->{count_total_issues_today
} || 0;
84 my $count_total_issues_returned = $total->{count_total_issues_returned_today
} || 0;
85 my $count_total_actual_state = ($count_total_precedent_state - $count_total_issues_returned + $count_total_issues);
87 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
88 my $attributes = GetBorrowerAttributes
($borrowernumber);
90 ExtendedPatronAttributes
=> 1,
91 extendedattributes
=> $attributes
95 my $patron_image = Koha
::Patron
::Images
->find($borrower->{borrowernumber
});
96 $template->param( picture
=> 1 ) if $patron_image;
98 $template->param(%$borrower);
100 $template->param( adultborrower
=> 1 ) if ( $borrower->{category_type
} eq 'A' || $borrower->{category_type
} eq 'I' );
105 column_names
=> \
@statistic_column_names,
106 count_total_issues
=> $count_total_issues,
107 count_total_issues_returned
=> $count_total_issues_returned,
108 count_total_precedent_state
=> $count_total_precedent_state,
109 count_total_actual_state
=> $count_total_actual_state,
112 output_html_with_http_headers
$input, $cookie, $template->output;
117 =head2 add_actual_state
119 Add a 'count_actual_state' key in all hashes
120 count_actual_state = count_precedent_state - count_total_issues_returned_today + count_total_issues_today
124 sub add_actual_state
{
126 for my $hash ( @
$array ) {
127 $hash->{count_actual_state
} = ( $hash->{count_precedent_state
} // 0 ) - ( $hash->{count_total_issues_returned_today
} // 0 ) + ( $hash->{count_total_issues_today
} // 0 );
133 Build a new array containing values of hashes.
134 It used by template whitch display silly values.
138 'count_total_issues_returned_today' => 1,
140 'count_actual_state' => 1,
141 'count_precedent_state' => 1,
142 'homebranch' => 'homebranch',
143 'count_total_issues_today' => 1,
165 for my $hash ( @
$array) {
167 for my $cn ( ( @column_names, 'count_actual_state') ) {
168 if ( grep /$cn/, ( @value_column_names, 'count_actual_state') ) {
170 if ( exists $total->{$cn} ) {
171 $total->{$cn} += $hash->{$cn} if $hash->{$cn};
173 $total->{$cn} = $hash->{$cn};
176 push @line, $hash->{$cn};
180 return ( $total, \
@r );
185 Merge hashes with the same statistic column names into one
186 param: array, a arrayref of arrayrefs
191 'count_precedent_state' => '1',
192 'homebranch' => 'homebranch',
196 'count_total_issues_returned_today' => '1',
198 'homebranch' => 'homebranch',
205 'count_total_issues_returned_today' => '1',
207 'count_precedent_state' => '1',
208 'homebranch' => 'homebranch',
218 for my $h ( @array ) {
222 for my $cn ( @statistic_column_names ) {
223 if ( $ch->{$cn} and not $ch->{$cn} eq $h->{$cn} ) {
229 for my $cn ( @value_column_names ) {
230 next if not exists $h->{$cn};
231 $ch->{$cn} = $h->{$cn} ?
$h->{$cn} : 0;
237 if ( not $exists ) {push @r, $h;}