Bug 24545: Fix license statements
[koha.git] / members / summary-print.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use CGI;
21
22 use C4::Auth;
23 use C4::Output;
24 use C4::Members;
25 use C4::Circulation qw( GetIssuingCharges );
26 use C4::Reserves;
27 use C4::Items;
28 use Koha::Holds;
29 use Koha::ItemTypes;
30 use Koha::Patrons;
31
32 my $input          = CGI->new;
33 my $borrowernumber = $input->param('borrowernumber');
34
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36     {
37         template_name   => "members/moremember-print.tt",
38         query           => $input,
39         type            => "intranet",
40         authnotrequired => 0,
41         flagsrequired   => { circulate => "circulate_remaining_permissions" },
42         debug           => 1,
43     }
44 );
45
46 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
47 my $patron         = Koha::Patrons->find( $borrowernumber );
48 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
49
50 my $total = $patron->account->balance;
51 my $accts = Koha::Account::Lines->search(
52     { borrowernumber => $patron->borrowernumber, amountoutstanding => { '!=' => 0 } },
53     { order_by       => { -desc => 'accountlines_id' } }
54 );
55
56 our $totalprice = 0;
57
58 my $holds_rs = Koha::Holds->search(
59     { borrowernumber => $borrowernumber },
60 );
61
62 $template->param(
63     patron => $patron,
64
65     accounts => $accts,
66     totaldue => $total,
67
68     issues     => build_issue_data( $borrowernumber ),
69     totalprice => $totalprice,
70
71     reserves => build_reserve_data( $holds_rs ),
72 );
73
74 output_html_with_http_headers $input, $cookie, $template->output;
75
76 sub build_issue_data {
77     my ( $borrowernumber ) = @_;
78     my $patron = Koha::Patrons->find( $borrowernumber );
79     return unless $patron;
80
81     my $pending_checkouts = $patron->pending_checkouts->search( {},
82         { order_by => [ { -desc => 'date_due' }, { -asc => 'issue_id' } ] } );
83
84     my @checkouts;
85
86     while ( my $c = $pending_checkouts->next ) {
87         my $checkout = $c->unblessed_all_relateds;
88
89         $totalprice += $checkout->{replacementprice}
90             if $checkout->{replacementprice};
91
92         #find the charge for an item
93         my ( $charge, $itemtype ) =
94           GetIssuingCharges( $checkout->{itemnumber}, $borrowernumber );
95
96         $checkout->{charge} = $charge;
97
98         $checkout->{overdue} = $c->is_overdue;
99
100         push @checkouts, $checkout;
101     }
102
103     return \@checkouts;
104
105 }
106
107 sub build_reserve_data {
108     my $reserves = shift;
109
110     my $return = [];
111
112     my $today = DateTime->now( time_zone => C4::Context->tz );
113     $today->truncate( to => 'day' );
114
115     while ( my $reserve = $reserves->next() ) {
116
117         my $row = {
118             title          => $reserve->biblio()->title(),
119             author         => $reserve->biblio()->author(),
120             reservedate    => $reserve->reservedate(),
121             expirationdate => $reserve->expirationdate(),
122             waiting_at     => $reserve->branch()->branchname(),
123         };
124
125         push( @{$return}, $row );
126     }
127
128     @{$return} = sort { $a->{reservedate} <=> $b->{reservedate} } @{$return};
129
130     return $return;
131 }