replacing SUPER with NO_LIBRARY_SET for login information
[koha.git] / 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 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 => "members/boraccount.tmpl",
41                              query => $input,
42                              type => "intranet",
43                              authnotrequired => 0,
44                              flagsrequired => {borrowers => 1},
45                              debug => 1,
46                              });
47
48 my $borrowernumber=$input->param('borrowernumber');
49 #get borrower details
50 my $data=GetMember($borrowernumber,'borrowernumber');
51
52 #get account details
53 my ($numaccts,$accts,$total)=GetMemberAccountRecords($borrowernumber);
54 my $totalcredit;
55 if($total <= 0){
56         $totalcredit = 1;
57 }
58 my @accountrows; # this is for the tmpl-loop
59
60 my $toggle;
61 for (my $i=0;$i<$numaccts;$i++){
62         if($i%2){
63                 $toggle = 0;
64         } else {
65                 $toggle = 1;
66         }
67   $accts->[$i]{'toggle'} = $toggle;
68   $accts->[$i]{'amount'}+=0.00;
69   if($accts->[$i]{'amount'} <= 0){
70         $accts->[$i]{'amountcredit'} = 1;
71   }
72   $accts->[$i]{'amountoutstanding'}+=0.00;
73   if($accts->[$i]{'amountoutstanding'} <= 0){
74         $accts->[$i]{'amountoutstandingcredit'} = 1;
75   }
76   my %row = (   'date'              => format_date($accts->[$i]{'date'}),
77                 'amountcredit' => $accts->[$i]{'amountcredit'},
78                 'amountoutstandingcredit' => $accts->[$i]{'amountoutstandingcredit'},
79                 'toggle' => $accts->[$i]{'toggle'},
80                 'description'       => $accts->[$i]{'description'},
81                 'amount'            => sprintf("%.2f",$accts->[$i]{'amount'}),
82                 'amountoutstanding' => sprintf("%.2f",$accts->[$i]{'amountoutstanding'}) );
83
84   if ($accts->[$i]{'accounttype'} ne 'F' && $accts->[$i]{'accounttype'} ne 'FU'){
85     $row{'printtitle'}=1;
86     $row{'title'} = $accts->[$i]{'title'};
87   }
88
89   push(@accountrows, \%row);
90 }
91
92 $template->param(
93                         firstname       => $data->{'firstname'},
94                         surname         => $data->{'surname'},
95                         borrowernumber          => $borrowernumber,
96                         total           => sprintf("%.2f",$total),
97                         totalcredit => $totalcredit,
98                         accounts        => \@accountrows );
99
100 output_html_with_http_headers $input, $cookie, $template->output;