Merging from rel-1-2 to trunk
[koha.git] / 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::Output;
28 use CGI;
29 use C4::Search;
30 use HTML::Template;
31
32 my $input=new CGI;
33
34 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
35 my %tmpldata = pathtotemplate ( template => 'boraccount.tmpl', theme => $theme );
36 my $template = HTML::Template->new(filename => $tmpldata{'path'}, die_on_bad_params => 0);
37
38 my $bornum=$input->param('bornum');
39 #get borrower details
40 my $data=borrdata('',$bornum);
41
42 #get account details
43 my %bor;
44 $bor{'borrowernumber'}=$bornum;
45 my ($numaccts,$accts,$total)=getboracctrecord('',\%bor);
46
47 my @accountrows; # this is for the tmpl-loop
48
49 for (my $i=0;$i<$numaccts;$i++){
50   $accts->[$i]{'amount'}+=0.00;
51   $accts->[$i]{'amountoutstanding'}+=0.00;
52   my %row = (   'date'              => $accts->[$i]{'date'},
53                 'description'       => $accts->[$i]{'description'},
54                 'amount'            => $accts->[$i]{'amount'},
55                 'amountoutstanding' => $accts->[$i]{'amountoutstanding'} );
56
57   if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
58     $row{'printtitle'}=1;
59     $row{'title'} = $accts->[$i]{'title'};
60   }
61
62   push(@accountrows, \%row);
63 }
64
65 $template->param( startmenumember => startmenu('member'),
66                         endmenumember   => endmenu('member'),
67                         firstname       => $data->{'firstname'},
68                         surname         => $data->{'surname'},
69                         bornum          => $bornum,
70                         total           => $total,
71                         accounts        => \@accountrows );
72
73 print "Content-Type: text/html\n\n", $template->output;