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