Bug 18423 - Followup - enable Add child button for institutional 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 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::Patron::Images;
35
36 use Koha::Patron::Categories;
37
38 my $input=new CGI;
39
40
41 my ($template, $loggedinuser, $cookie) = get_template_and_user(
42     {
43         template_name   => "members/boraccount.tt",
44         query           => $input,
45         type            => "intranet",
46         authnotrequired => 0,
47         flagsrequired   => { borrowers     => 1,
48                              updatecharges => 'remaining_permissions'},
49         debug           => 1,
50     }
51 );
52
53 my $borrowernumber=$input->param('borrowernumber');
54 my $action = $input->param('action') || '';
55
56 #get borrower details
57 my $data=GetMember('borrowernumber' => $borrowernumber);
58
59 if ( $action eq 'reverse' ) {
60   ReversePayment( $input->param('accountlines_id') );
61 }
62
63 if ( $data->{'category_type'} eq 'C') {
64     my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
65     $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
66     $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
67 }
68
69 #get account details
70 my ($total,$accts,undef)=GetMemberAccountRecords($borrowernumber);
71 my $totalcredit;
72 if($total <= 0){
73         $totalcredit = 1;
74 }
75
76 my $reverse_col = 0; # Flag whether we need to show the reverse column
77 foreach my $accountline ( @{$accts}) {
78     $accountline->{amount} += 0.00;
79     if ($accountline->{amount} <= 0 ) {
80         $accountline->{amountcredit} = 1;
81     }
82     $accountline->{amountoutstanding} += 0.00;
83     if ( $accountline->{amountoutstanding} <= 0 ) {
84         $accountline->{amountoutstandingcredit} = 1;
85     }
86
87     $accountline->{amount} = sprintf '%.2f', $accountline->{amount};
88     $accountline->{amountoutstanding} = sprintf '%.2f', $accountline->{amountoutstanding};
89     if ($accountline->{accounttype} =~ /^Pay/) {
90         $accountline->{payment} = 1;
91         $reverse_col = 1;
92     }
93 }
94
95 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' || $data->{'category_type'} eq 'I' );
96
97 my $patron_image = Koha::Patron::Images->find($data->{borrowernumber});
98 $template->param( picture => 1 ) if $patron_image;
99
100 if (C4::Context->preference('ExtendedPatronAttributes')) {
101     my $attributes = GetBorrowerAttributes($borrowernumber);
102     $template->param(
103         ExtendedPatronAttributes => 1,
104         extendedattributes => $attributes
105     );
106 }
107
108 $template->param(%$data);
109
110 $template->param(
111     finesview           => 1,
112     borrowernumber      => $borrowernumber,
113     total               => sprintf("%.2f",$total),
114     totalcredit         => $totalcredit,
115     is_child            => ($data->{'category_type'} eq 'C'),
116     reverse_col         => $reverse_col,
117     accounts            => $accts,
118     RoutingSerials => C4::Context->preference('RoutingSerials'),
119 );
120
121 output_html_with_http_headers $input, $cookie, $template->output;