Bug 18403: Update permissions - borrowers => 1|* becomes borrowers => 'edit_borrowers'
[koha.git] / members / boraccount.pl
1 #!/usr/bin/perl
2
3
4 #written 11/1/2000 by chris@katipo.oc.nz
5 #script to display borrowers account details
6
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25 use Modern::Perl;
26
27 use C4::Auth;
28 use C4::Output;
29 use CGI qw ( -utf8 );
30 use C4::Members;
31 use C4::Accounts;
32 use C4::Members::Attributes qw(GetBorrowerAttributes);
33 use Koha::Patrons;
34 use Koha::Patron::Categories;
35
36 my $input=new CGI;
37
38
39 my ($template, $loggedinuser, $cookie) = get_template_and_user(
40     {
41         template_name   => "members/boraccount.tt",
42         query           => $input,
43         type            => "intranet",
44         authnotrequired => 0,
45         flagsrequired   => { borrowers     => 'edit_borrowers',
46                              updatecharges => 'remaining_permissions'},
47         debug           => 1,
48     }
49 );
50
51 my $borrowernumber=$input->param('borrowernumber');
52 my $action = $input->param('action') || '';
53
54 #get patron details
55 my $patron = Koha::Patrons->find( $borrowernumber );
56 unless ( $patron ) {
57     print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
58     exit;
59 }
60
61 if ( $action eq 'reverse' ) {
62   ReversePayment( scalar $input->param('accountlines_id') );
63 }
64
65 if ( $patron->category->category_type eq 'C') {
66     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
67     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
68     $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
69 }
70
71 #get account details
72 my ($total,$accts,undef)=GetMemberAccountRecords($borrowernumber);
73 my $totalcredit;
74 if($total <= 0){
75         $totalcredit = 1;
76 }
77
78 my $reverse_col = 0; # Flag whether we need to show the reverse column
79 foreach my $accountline ( @{$accts}) {
80     $accountline->{amount} += 0.00;
81     if ($accountline->{amount} <= 0 ) {
82         $accountline->{amountcredit} = 1;
83     }
84     $accountline->{amountoutstanding} += 0.00;
85     if ( $accountline->{amountoutstanding} <= 0 ) {
86         $accountline->{amountoutstandingcredit} = 1;
87     }
88
89     $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
90     $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
91     if ($accountline->{accounttype} =~ /^Pay/) {
92         $accountline->{payment} = 1;
93         $reverse_col = 1;
94     }
95 }
96
97 $template->param( adultborrower => 1 ) if ( $patron->category->category_type =~ /^(A|I)$/ );
98
99 $template->param( picture => 1 ) if $patron->image;
100
101 if (C4::Context->preference('ExtendedPatronAttributes')) {
102     my $attributes = GetBorrowerAttributes($borrowernumber);
103     $template->param(
104         ExtendedPatronAttributes => 1,
105         extendedattributes => $attributes
106     );
107 }
108
109 $template->param(%{ $patron->unblessed });
110
111 $template->param(
112     finesview           => 1,
113     borrowernumber      => $borrowernumber,
114     total               => sprintf("%.2f",$total),
115     totalcredit         => $totalcredit,
116     is_child            => ($patron->category->category_type eq 'C'),
117     reverse_col         => $reverse_col,
118     accounts            => $accts,
119 );
120
121 output_html_with_http_headers $input, $cookie, $template->output;