Bug 23846: Add a check to the data inconsistencies script
[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 Koha::Patrons;
33 use Koha::Patron::Categories;
34
35 my $input=new CGI;
36
37
38 my ($template, $loggedinuser, $cookie) = get_template_and_user(
39     {
40         template_name   => "members/boraccount.tt",
41         query           => $input,
42         type            => "intranet",
43         authnotrequired => 0,
44         flagsrequired   => { borrowers     => 'edit_borrowers',
45                              updatecharges => 'remaining_permissions'},
46         debug           => 1,
47     }
48 );
49
50 my $borrowernumber = $input->param('borrowernumber');
51 my $payment_id     = $input->param('payment_id');
52 my $change_given   = $input->param('change_given');
53 my $action         = $input->param('action') || '';
54
55 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
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 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
63
64 if ( $action eq 'void' ) {
65     my $payment_id = scalar $input->param('accountlines_id');
66     my $payment    = Koha::Account::Lines->find( $payment_id );
67     $payment->void();
68 }
69
70 #get account details
71 my $total = $patron->account->balance;
72
73 my @accountlines = Koha::Account::Lines->search(
74     { borrowernumber => $patron->borrowernumber },
75     { order_by       => { -desc => 'accountlines_id' } }
76 );
77
78 my $totalcredit;
79 if($total <= 0){
80         $totalcredit = 1;
81 }
82
83 $template->param(
84     patron              => $patron,
85     finesview           => 1,
86     total               => sprintf("%.2f",$total),
87     totalcredit         => $totalcredit,
88     accounts            => \@accountlines,
89     payment_id          => $payment_id,
90     change_given        => $change_given,
91 );
92
93 output_html_with_http_headers $input, $cookie, $template->output;