Bug 23846: Add a check to the data inconsistencies script
[koha.git] / members / maninvoice.pl
1 #!/usr/bin/perl
2
3 #written 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
5
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2010 BibLibre
8 # Copyright 2019 PTFS Europe
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::Items;
33 use Koha::Token;
34
35 use Koha::Items;
36 use Koha::Patrons;
37
38 use Koha::Patron::Categories;
39 use Koha::Account::DebitTypes;
40
41 my $input = new CGI;
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43     {
44         template_name   => "members/maninvoice.tt",
45         query           => $input,
46         type            => "intranet",
47         authnotrequired => 0,
48         flagsrequired   => {
49             borrowers     => 'edit_borrowers',
50             updatecharges => 'remaining_permissions'
51         }
52     }
53 );
54
55 my $borrowernumber = $input->param('borrowernumber');
56 my $patron         = Koha::Patrons->find($borrowernumber);
57 unless ($patron) {
58     print $input->redirect(
59         "/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
60     exit;
61 }
62
63 my $library_id = C4::Context->userenv->{'branch'};
64
65 my $add = $input->param('add');
66 if ($add) {
67     output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
68       unless Koha::Token->new->check_csrf(
69         {
70             session_id => scalar $input->cookie('CGISESSID'),
71             token      => scalar $input->param('csrf_token'),
72         }
73       );
74
75 # Note: If the logged in user is not allowed to see this patron an invoice can be forced
76 # Here we are trusting librarians not to hack the system
77     my $barcode = $input->param('barcode');
78     my $itemnum;
79     if ($barcode) {
80         my $item = Koha::Items->find( { barcode => $barcode } );
81         $itemnum = $item->itemnumber if $item;
82     }
83     my $desc   = $input->param('desc');
84     my $amount = $input->param('amount');
85     my $type   = $input->param('type');
86     my $note   = $input->param('note');
87     my $error =
88       C4::Accounts::manualinvoice( $borrowernumber, $itemnum, $desc, $type,
89         $amount, $note );
90     if ($error) {
91         if ( $error =~ /FOREIGN KEY/ && $error =~ /itemnumber/ ) {
92             $template->param( 'ITEMNUMBER' => 1 );
93         }
94         $template->param(
95             csrf_token => Koha::Token->new->generate_csrf(
96                 { session_id => scalar $input->cookie('CGISESSID') }
97             )
98         );
99         $template->param( 'ERROR' => $error );
100         output_html_with_http_headers $input, $cookie, $template->output;
101     }
102     else {
103
104         if ( C4::Context->preference('AccountAutoReconcile') ) {
105             $patron->account->reconcile_balance;
106         }
107
108         print $input->redirect(
109             "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
110         );
111         exit;
112     }
113 }
114 else {
115
116     my $logged_in_user = Koha::Patrons->find($loggedinuser)
117       or die "Not logged in";
118     output_and_exit_if_error(
119         $input, $cookie,
120         $template,
121         {
122             module         => 'members',
123             logged_in_user => $logged_in_user,
124             current_patron => $patron
125         }
126     );
127
128     my @debit_types = Koha::Account::DebitTypes->search_with_library_limits(
129         { can_be_added_manually => 1, archived => 0 },
130         {}, $library_id );
131     $template->param( debit_types => \@debit_types );
132     $template->param(
133         csrf_token => Koha::Token->new->generate_csrf(
134             { session_id => scalar $input->cookie('CGISESSID') }
135         ),
136         patron    => $patron,
137         finesview => 1,
138     );
139     output_html_with_http_headers $input, $cookie, $template->output;
140 }