HTML & template bugfixes
[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::Auth;
28 use C4::Output;
29 use C4::Interface::CGI::Output;
30 use CGI;
31 use C4::Search;
32 use HTML::Template;
33
34 my $input=new CGI;
35
36 my $theme = $input->param('theme'); # only used if allowthemeoverride is set
37 #my %tmpldata = pathtotemplate ( template => 'boraccount.tmpl', theme => $theme );
38 #my $template = HTML::Template->new(filename => $tmpldata{'path'}, die_on_bad_params => 0);
39 my ($template, $loggedinuser, $cookie)
40     = get_template_and_user({template_name => "boraccount.tmpl",
41                              query => $input,
42                              type => "intranet",
43                              authnotrequired => 0,
44                              flagsrequired => {borrowers => 1},
45                              debug => 1,
46                              });
47
48 my $bornum=$input->param('bornum');
49 #get borrower details
50 my $data=borrdata('',$bornum);
51
52 #get account details
53 my %bor;
54 $bor{'borrowernumber'}=$bornum;
55 my ($numaccts,$accts,$total)=getboracctrecord('',\%bor);
56
57 my @accountrows; # this is for the tmpl-loop
58
59 for (my $i=0;$i<$numaccts;$i++){
60   $accts->[$i]{'amount'}+=0.00;
61   $accts->[$i]{'amountoutstanding'}+=0.00;
62   my %row = (   'date'              => $accts->[$i]{'date'},
63                 'description'       => $accts->[$i]{'description'},
64                 'amount'            => $accts->[$i]{'amount'},
65                 'amountoutstanding' => $accts->[$i]{'amountoutstanding'} );
66
67   if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
68     $row{'printtitle'}=1;
69     $row{'title'} = $accts->[$i]{'title'};
70   }
71
72   push(@accountrows, \%row);
73 }
74
75 $template->param(
76                         firstname       => $data->{'firstname'},
77                         surname         => $data->{'surname'},
78                         bornum          => $bornum,
79                         total           => $total,
80                         accounts        => \@accountrows );
81
82 output_html_with_http_headers $input, $cookie, $template->output;