fines management (bugfixes & minor improvement)
[koha_ffzg] / members / boraccount.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 #writen 11/1/2000 by chris@katipo.oc.nz
6 #script to display borrowers account details
7
8
9 # Copyright 2000-2002 Katipo Communications
10 #
11 # This file is part of Koha.
12 #
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
17 #
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License along with
23 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
24 # Suite 330, Boston, MA  02111-1307 USA
25
26 use strict;
27 use C4::Auth;
28 use C4::Output;
29 use C4::Date;
30 use CGI;
31 use C4::Members;
32
33
34 my $input=new CGI;
35
36
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => "members/boraccount.tmpl",
39                             query => $input,
40                             type => "intranet",
41                             authnotrequired => 0,
42                             flagsrequired => {borrowers => 1},
43                             debug => 1,
44                             });
45
46 my $borrowernumber=$input->param('borrowernumber');
47 #get borrower details
48 my $data=GetMember($borrowernumber,'borrowernumber');
49
50 #get account details
51 my ($total,$accts,$numaccts)=GetMemberAccountRecords($borrowernumber);
52 my $totalcredit;
53 if($total <= 0){
54         $totalcredit = 1;
55 }
56 my @accountrows; # this is for the tmpl-loop
57
58 my $toggle;
59 for (my $i=0;$i<$numaccts;$i++){
60     if($i%2){
61             $toggle = 0;
62     } else {
63             $toggle = 1;
64     }
65     $accts->[$i]{'toggle'} = $toggle;
66     $accts->[$i]{'amount'}+=0.00;
67     if($accts->[$i]{'amount'} <= 0){
68         $accts->[$i]{'amountcredit'} = 1;
69     }
70     $accts->[$i]{'amountoutstanding'}+=0.00;
71     if($accts->[$i]{'amountoutstanding'} <= 0){
72         $accts->[$i]{'amountoutstandingcredit'} = 1;
73     }
74     my %row = ( 'date'              => format_date($accts->[$i]{'date'}),
75                 'amountcredit' => $accts->[$i]{'amountcredit'},
76                 'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
77                 'toggle' => $accts->[$i]{'toggle'},
78                 'description'       => $accts->[$i]{'description'},
79                 'amount'            => sprintf("%.2f",$accts->[$i]{'amount'}),
80                 'amountoutstanding' => sprintf("%.2f",$accts->[$i]{'amountoutstanding'}) );
81     
82     if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
83         $row{'printtitle'}=1;
84         $row{'title'} = $accts->[$i]{'title'};
85     }
86     
87     push(@accountrows, \%row);
88 }
89
90 $template->param(
91                 firstname       => $data->{'firstname'},
92                 surname         => $data->{'surname'},
93                 borrowernumber          => $borrowernumber,
94                 total           => sprintf("%.2f",$total),
95                 totalcredit => $totalcredit,
96                 accounts        => \@accountrows );
97
98 output_html_with_http_headers $input, $cookie, $template->output;