Bug 19921: Fix update child when only one adult patron category exist
[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 strict;
26 use warnings;
27
28 use C4::Auth;
29 use C4::Output;
30 use CGI qw ( -utf8 );
31 use C4::Members;
32 use C4::Accounts;
33 use C4::Members::Attributes qw(GetBorrowerAttributes);
34 use Koha::Patrons;
35 use Koha::Patron::Categories;
36
37 my $input=new CGI;
38
39
40 my ($template, $loggedinuser, $cookie) = get_template_and_user(
41     {
42         template_name   => "members/boraccount.tt",
43         query           => $input,
44         type            => "intranet",
45         authnotrequired => 0,
46         flagsrequired   => { borrowers     => 1,
47                              updatecharges => 'remaining_permissions'},
48         debug           => 1,
49     }
50 );
51
52 my $borrowernumber=$input->param('borrowernumber');
53 my $action = $input->param('action') || '';
54
55 #get patron details
56 my $patron = Koha::Patrons->find( $borrowernumber );
57 unless ( $patron ) {
58     print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
59     exit;
60 }
61
62 if ( $action eq 'reverse' ) {
63   ReversePayment( scalar $input->param('accountlines_id') );
64 }
65
66 if ( $patron->category->category_type eq 'C') {
67     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
68     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
69     $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
70 }
71
72 #get account details
73 my ($total,$accts,undef)=GetMemberAccountRecords($borrowernumber);
74 my $totalcredit;
75 if($total <= 0){
76         $totalcredit = 1;
77 }
78
79 my $reverse_col = 0; # Flag whether we need to show the reverse column
80 foreach my $accountline ( @{$accts}) {
81     $accountline->{amount} += 0.00;
82     if ($accountline->{amount} <= 0 ) {
83         $accountline->{amountcredit} = 1;
84     }
85     $accountline->{amountoutstanding} += 0.00;
86     if ( $accountline->{amountoutstanding} <= 0 ) {
87         $accountline->{amountoutstandingcredit} = 1;
88     }
89
90     $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
91     $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
92     if ($accountline->{accounttype} =~ /^Pay/) {
93         $accountline->{payment} = 1;
94         $reverse_col = 1;
95     }
96 }
97
98 $template->param( adultborrower => 1 ) if ( $patron->category->category_type =~ /^(A|I)$/ );
99
100 $template->param( picture => 1 ) if $patron->image;
101
102 if (C4::Context->preference('ExtendedPatronAttributes')) {
103     my $attributes = GetBorrowerAttributes($borrowernumber);
104     $template->param(
105         ExtendedPatronAttributes => 1,
106         extendedattributes => $attributes
107     );
108 }
109
110 $template->param(%{ $patron->unblessed });
111
112 $template->param(
113     finesview           => 1,
114     borrowernumber      => $borrowernumber,
115     total               => sprintf("%.2f",$total),
116     totalcredit         => $totalcredit,
117     is_child            => ($patron->category->category_type eq 'C'),
118     reverse_col         => $reverse_col,
119     accounts            => $accts,
120 );
121
122 output_html_with_http_headers $input, $cookie, $template->output;