Added POD.
[koha.git] / boraccount.pl
1 #!/usr/bin/perl
2
3 #writen 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use C4::Output;
26 use CGI;
27 use C4::Search;
28 use HTML::Template;
29
30 my $input=new CGI;
31
32 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
33 my %tmpldata = pathtotemplate ( template => 'boraccount.tmpl', theme => $theme );
34 my $template = HTML::Template->new(filename => $tmpldata{'path'}, die_on_bad_params => 0);
35
36 my $bornum=$input->param('bornum');
37 #get borrower details
38 my $data=borrdata('',$bornum);
39
40 #get account details
41 my %bor;
42 $bor{'borrowernumber'}=$bornum;                            
43 my ($numaccts,$accts,$total)=getboracctrecord('',\%bor);   
44
45 my @accountrows; # this is for the tmpl-loop
46
47 for (my $i=0;$i<$numaccts;$i++){
48   $accts->[$i]{'amount'}+=0.00;
49   $accts->[$i]{'amountoutstanding'}+=0.00;
50   my %row = (   'date'              => $accts->[$i]{'date'},
51                 'description'       => $accts->[$i]{'description'},
52                 'amount'            => $accts->[$i]{'amount'},
53                 'amountoutstanding' => $accts->[$i]{'amountoutstanding'} );
54
55   if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
56     $row{'printtitle'}=1;
57     $row{'title'} = $accts->[$i]{'title'};
58   }
59
60   push(@accountrows, \%row);
61 }
62
63 $template->param( startmenumember => startmenu('member'),
64                         endmenumember   => endmenu('member'),
65                         firstname       => $data->{'firstname'},
66                         surname         => $data->{'surname'},
67                         bornum          => $bornum,
68                         total           => $total,
69                         accounts        => \@accountrows ); 
70
71 print "Content-Type: text/html\n\n", $template->output;