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
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.
25 use C4
::Koha
qw( getitemtypeinfo );
26 use C4
::Circulation
qw( GetIssuingCharges );
29 my $borrowernumber = $input->param('borrowernumber');
31 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
33 template_name
=> "members/moremember-print.tt",
37 flagsrequired
=> { circulate
=> "circulate_remaining_permissions" },
42 my $data = GetMember
( 'borrowernumber' => $borrowernumber );
44 my ( $total, $accts, $numaccts ) = GetMemberAccountRecords
($borrowernumber);
45 foreach my $accountline (@
$accts) {
46 $accountline->{amount
} = sprintf( '%.2f', $accountline->{amount
} )
47 if ( $accountline->{amount
} ) ;
48 $accountline->{amountoutstanding
} = sprintf( '%.2f', $accountline->{amountoutstanding
} )
49 if ( $accountline->{amountoutstanding
} );
51 if ( $accountline->{accounttype
} ne 'F'
52 && $accountline->{accounttype
} ne 'FU' )
54 $accountline->{printtitle
} = 1;
59 C4
::Koha
::GetAuthorisedValueByCode
( 'ROADTYPE', $data->{streettype
} );
60 $roadtype = '' if ( ! $roadtype );
63 my $total_format = '';
64 $total_format = sprintf( "%.2f", $total ) if ($total);
69 borrowernumber
=> $borrowernumber,
70 address
=> $data->{'streetnumber'} . " $roadtype " . $data->{'address'},
73 totaldue
=> $total_format,
75 issues
=> build_issue_data
( GetPendingIssues
($borrowernumber) ),
76 totalprice
=> $totalprice,
79 output_html_with_http_headers
$input, $cookie, $template->output;
81 sub build_issue_data
{
86 my $today = DateTime
->now( time_zone
=> C4
::Context
->tz );
87 $today->truncate( to
=> 'day' );
89 foreach my $issue ( @
{$issues} ) {
92 $totalprice += $issue->{replacementprice
}
93 if ( $issue->{replacementprice
} );
95 #find the charge for an item
96 my ( $charge, $itemtype ) =
97 GetIssuingCharges
( $issue->{itemnumber
}, $borrowernumber );
99 my $itemtypeinfo = getitemtypeinfo
($itemtype);
100 $row{'itemtype_description'} = $itemtypeinfo->{description
};
102 $row{'charge'} = sprintf( "%.2f", $charge );
104 $row{date_due
} = $row{date_due_sql
};
106 push( @
{$return}, \
%row );
109 @
{$return} = sort { $a->{date_due
} eq $b->{date_due
} } @
{$return};