4 #written 11/1/2000 by chris@katipo.oc.nz
5 #script to display borrowers account details
8 # Copyright 2000-2002 Katipo Communications
10 # This file is part of Koha.
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
32 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
34 use Koha
::Patron
::Categories
;
39 my ($template, $loggedinuser, $cookie) = get_template_and_user
(
41 template_name
=> "members/boraccount.tt",
45 flagsrequired
=> { borrowers
=> 'edit_borrowers',
46 updatecharges
=> 'remaining_permissions'},
51 my $borrowernumber = $input->param('borrowernumber');
52 my $action = $input->param('action') || '';
54 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
55 my $patron = Koha
::Patrons
->find( $borrowernumber );
57 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
61 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
63 if ( $action eq 'reverse' ) {
64 ReversePayment
( scalar $input->param('accountlines_id') );
66 elsif ( $action eq 'void' ) {
67 my $payment_id = scalar $input->param('accountlines_id');
68 my $payment = Koha
::Account
::Lines
->find( $payment_id );
73 my $total = $patron->account->balance;
75 my $accts = Koha
::Account
::Lines
->search(
76 { borrowernumber
=> $patron->borrowernumber },
77 { order_by
=> { -desc
=> 'accountlines_id' } }
85 my $reverse_col = 0; # Flag whether we need to show the reverse column
87 while ( my $line = $accts->next ) {
88 # FIXME We should pass the $accts iterator to the template and do this formatting part there
89 my $accountline = $line->unblessed;
90 $accountline->{amount
} += 0.00;
91 if ($accountline->{amount
} <= 0 ) {
92 $accountline->{amountcredit
} = 1;
94 $accountline->{amountoutstanding
} += 0.00;
95 if ( $accountline->{amountoutstanding
} <= 0 ) {
96 $accountline->{amountoutstandingcredit
} = 1;
99 $accountline->{amount
} = sprintf '%.2f', $accountline->{amount
};
100 $accountline->{amountoutstanding
} = sprintf '%.2f', $accountline->{amountoutstanding
};
101 if ($accountline->{amount
} < 0) {
102 $accountline->{payment
} = 1
103 if ( $accountline->{accounttype
} =~ /^Pay/ );
108 if ( $accountline->{itemnumber
} ) {
109 # Because we will not have access to the object from the template
110 $accountline->{item
} = $line->item;
112 push @accountlines, $accountline;
115 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
116 my $attributes = GetBorrowerAttributes
($borrowernumber);
118 ExtendedPatronAttributes
=> 1,
119 extendedattributes
=> $attributes
126 total
=> sprintf("%.2f",$total),
127 totalcredit
=> $totalcredit,
128 reverse_col
=> $reverse_col,
129 accounts
=> \
@accountlines,
132 output_html_with_http_headers
$input, $cookie, $template->output;