Bug 29987: (follow-up) Fix missing payment type
[koha.git] / members / mancredit.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 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
15 #
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23
24 use Modern::Perl;
25
26 use C4::Auth qw( get_template_and_user );
27 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
28 use CGI qw ( -utf8 );
29
30 use C4::Members;
31 use C4::Accounts;
32
33 use Koha::Items;
34 use Koha::Patrons;
35 use Koha::Patron::Categories;
36 use Koha::Account::CreditTypes;
37
38 use Koha::Token;
39
40 my $input = CGI->new;
41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
42     {
43         template_name   => "members/mancredit.tt",
44         query           => $input,
45         type            => "intranet",
46         flagsrequired   => {
47             borrowers     => 'edit_borrowers',
48             updatecharges => 'remaining_permissions'
49         }
50     }
51 );
52
53 my $logged_in_user = Koha::Patrons->find($loggedinuser);
54 my $borrowernumber = $input->param('borrowernumber');
55 my $patron         = Koha::Patrons->find($borrowernumber);
56
57 output_and_exit_if_error(
58     $input, $cookie,
59     $template,
60     {
61         module         => 'members',
62         logged_in_user => $logged_in_user,
63         current_patron => $patron
64     }
65 );
66
67 my $library_id =
68   C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
69
70 my $add = $input->param('add');
71 if ($add) {
72     output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
73       unless Koha::Token->new->check_csrf(
74         {
75             session_id => scalar $input->cookie('CGISESSID'),
76             token      => scalar $input->param('csrf_token'),
77         }
78       );
79
80 # Note: If the logged in user is not allowed to see this patron an invoice can be forced
81 # Here we are trusting librarians not to hack the system
82     my $barcode = $input->param('barcode');
83     my $item_id;
84     if ($barcode) {
85         my $item = Koha::Items->find( { barcode => $barcode } );
86         $item_id = $item->itemnumber if $item;
87     }
88     my $description      = $input->param('desc');
89     my $note             = $input->param('note');
90     my $amount           = $input->param('amount') || 0;
91     my $type             = $input->param('type');
92     my $credit_type      = $input->param('credit_type');
93     my $cash_register_id = $input->param('cash_register');
94
95     $patron->account->add_credit(
96         {
97             amount        => $amount,
98             description   => $description,
99             item_id       => $item_id,
100             library_id    => $library_id,
101             note          => $note,
102             type          => $type,
103             user_id       => $logged_in_user->id,
104             interface     => C4::Context->interface,
105             payment_type  => $credit_type,
106             cash_register => $cash_register_id
107         }
108     );
109
110     if ( C4::Context->preference('AccountAutoReconcile') ) {
111         $patron->account->reconcile_balance;
112     }
113
114     print $input->redirect(
115         "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
116     exit;
117 }
118 else {
119
120     my @credit_types = Koha::Account::CreditTypes->search_with_library_limits(
121         { can_be_added_manually => 1, archived => 0 },
122         {}, $library_id )->as_list;
123
124     $template->param(
125         patron       => $patron,
126         credit_types => \@credit_types,
127         finesview    => 1,
128         csrf_token   => Koha::Token->new->generate_csrf(
129             { session_id => scalar $input->cookie('CGISESSID') }
130         ),
131     );
132     output_html_with_http_headers $input, $cookie, $template->output;
133 }