fixing various links to point to *.koha-community.org
[koha.git] / opac / opac-account.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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
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.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 # wrriten 15/10/2002 by finlay@katipo.oc.nz
19 # script to display borrowers account details in the opac
20
21 use strict;
22 use CGI;
23 use C4::Members;
24 use C4::Circulation;
25 use C4::Auth;
26 use C4::Output;
27 use C4::Dates qw/format_date/;
28 use warnings;
29
30 my $query = new CGI;
31 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
32     {
33         template_name   => "opac-account.tmpl",
34         query           => $query,
35         type            => "opac",
36         authnotrequired => 0,
37         flagsrequired   => { borrow => 1 },
38         debug           => 1,
39     }
40 );
41
42 # get borrower information ....
43 my $borr = GetMemberDetails( $borrowernumber );
44 my @bordat;
45 $bordat[0] = $borr;
46
47 $template->param( BORROWER_INFO => \@bordat );
48
49 #get account details
50 my ( $total , $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
51
52 for ( my $i = 0 ; $i < $numaccts ; $i++ ) {
53     $accts->[$i]{'date'} = format_date( $accts->[$i]{'date'} );
54     $accts->[$i]{'amount'} = sprintf( "%.2f", $accts->[$i]{'amount'} || '0.00');
55     if ( $accts->[$i]{'amount'} >= 0 ) {
56         $accts->[$i]{'amountcredit'} = 1;
57     }
58     $accts->[$i]{'amountoutstanding'} =
59       sprintf( "%.2f", $accts->[$i]{'amountoutstanding'} || '0.00' );
60     if ( $accts->[$i]{'amountoutstanding'} >= 0 ) {
61         $accts->[$i]{'amountoutstandingcredit'} = 1;
62     }
63 }
64
65 # add the row parity
66 my $num = 0;
67 foreach my $row (@$accts) {
68     $row->{'even'} = 1 if $num % 2 == 0;
69     $row->{'odd'}  = 1 if $num % 2 == 1;
70     $num++;
71 }
72
73 $template->param (
74     ACCOUNT_LINES => $accts,
75     total => sprintf( "%.2f", $total ),
76         accountview => 1
77 );
78
79 output_html_with_http_headers $query, $cookie, $template->output;
80