Bug 20074: (follow-up) Remove another remainder of biblio hidden logic
[koha.git] / members / summary-print.pl
blob03e9d89f9fc73240205749881aea86a566881a36
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, write to the Free Software Foundation, Inc.,
16 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 use Modern::Perl;
20 use CGI;
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;
32 my $input = CGI->new;
33 my $borrowernumber = $input->param('borrowernumber');
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
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,
46 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
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 } );
50 my $total = $patron->account->balance;
51 my $accts = Koha::Account::Lines->search(
52 { borrowernumber => $patron->borrowernumber },
53 { order_by => { -desc => 'accountlines_id' } }
56 our $totalprice = 0;
58 my $holds_rs = Koha::Holds->search(
59 { borrowernumber => $borrowernumber },
62 $template->param(
63 patron => $patron,
65 accounts => $accts,
66 totaldue => $total,
68 issues => build_issue_data( $borrowernumber ),
69 totalprice => $totalprice,
71 reserves => build_reserve_data( $holds_rs ),
74 output_html_with_http_headers $input, $cookie, $template->output;
76 sub build_issue_data {
77 my ( $borrowernumber ) = @_;
78 my $issues = GetPendingIssues( $borrowernumber );
80 my $return = [];
82 my $today = DateTime->now( time_zone => C4::Context->tz );
83 $today->truncate( to => 'day' );
85 foreach my $issue ( @{$issues} ) {
87 my %row = %{$issue};
88 $totalprice += $issue->{replacementprice}
89 if ( $issue->{replacementprice} );
91 #find the charge for an item
92 my ( $charge, $itemtype ) =
93 GetIssuingCharges( $issue->{itemnumber}, $borrowernumber );
95 $itemtype = Koha::ItemTypes->find( $itemtype );
96 $row{'itemtype_description'} = $itemtype->description; #FIXME Should not it be translated_description
98 $row{'charge'} = sprintf( "%.2f", $charge );
100 $row{date_due} = $row{date_due_sql};
102 push( @{$return}, \%row );
105 @{$return} = sort { $a->{date_due} eq $b->{date_due} } @{$return};
107 return $return;
111 sub build_reserve_data {
112 my $reserves = shift;
114 my $return = [];
116 my $today = DateTime->now( time_zone => C4::Context->tz );
117 $today->truncate( to => 'day' );
119 while ( my $reserve = $reserves->next() ) {
121 my $row = {
122 title => $reserve->biblio()->title(),
123 author => $reserve->biblio()->author(),
124 reservedate => $reserve->reservedate(),
125 expirationdate => $reserve->expirationdate(),
126 waiting_at => $reserve->branch()->branchname(),
129 push( @{$return}, $row );
132 @{$return} = sort { $a->{reservedate} <=> $b->{reservedate} } @{$return};
134 return $return;