Bug 32401: Remove x-koha-query support
[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 use Koha::AdditionalFields;
38
39 use Koha::Token;
40
41 my $input = CGI->new;
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43     {
44         template_name   => "members/mancredit.tt",
45         query           => $input,
46         type            => "intranet",
47         flagsrequired   => {
48             borrowers     => 'edit_borrowers',
49             updatecharges => 'manual_credit'
50         }
51     }
52 );
53
54 my $logged_in_user = Koha::Patrons->find($loggedinuser);
55 my $borrowernumber = $input->param('borrowernumber');
56 my $patron         = Koha::Patrons->find($borrowernumber);
57
58 output_and_exit_if_error(
59     $input, $cookie,
60     $template,
61     {
62         module         => 'members',
63         logged_in_user => $logged_in_user,
64         current_patron => $patron
65     }
66 );
67
68 my $library_id =
69   C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
70
71 my $add = $input->param('add');
72 if ($add) {
73     output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
74       unless Koha::Token->new->check_csrf(
75         {
76             session_id => scalar $input->cookie('CGISESSID'),
77             token      => scalar $input->param('csrf_token'),
78         }
79       );
80
81 # Note: If the logged in user is not allowed to see this patron an invoice can be forced
82 # Here we are trusting librarians not to hack the system
83     my $barcode = $input->param('barcode');
84     my $item_id;
85     if ($barcode) {
86         my $item = Koha::Items->find( { barcode => $barcode } );
87         $item_id = $item->itemnumber if $item;
88     }
89     my $description      = $input->param('desc');
90     my $note             = $input->param('note');
91     my $amount           = $input->param('amount') || 0;
92     my $type             = $input->param('type');
93     my $credit_type      = $input->param('credit_type');
94     my $cash_register_id = $input->param('cash_register');
95
96     my $line = $patron->account->add_credit(
97         {
98             amount        => $amount,
99             description   => $description,
100             item_id       => $item_id,
101             library_id    => $library_id,
102             note          => $note,
103             type          => $type,
104             user_id       => $logged_in_user->id,
105             interface     => C4::Context->interface,
106             payment_type  => $credit_type,
107             cash_register => $cash_register_id
108         }
109     );
110
111     my @additional_fields;
112     my $accountline_fields = Koha::AdditionalFields->search({ tablename => 'accountlines:credit' });
113     while ( my $field = $accountline_fields->next ) {
114         my $value = $input->param('additional_field_' . $field->id);
115         if (defined $value) {
116             push @additional_fields, {
117                 id => $field->id,
118                 value => $value,
119             };
120         }
121     }
122     if (@additional_fields) {
123         $line->set_additional_fields(\@additional_fields);
124     }
125
126     if ( C4::Context->preference('AccountAutoReconcile') ) {
127         $patron->account->reconcile_balance;
128     }
129
130     print $input->redirect(
131         "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
132     exit;
133 }
134 else {
135
136     my @credit_types = Koha::Account::CreditTypes->search_with_library_limits(
137         { can_be_added_manually => 1, archived => 0 },
138         {}, $library_id )->as_list;
139
140     $template->param(
141         patron       => $patron,
142         credit_types => \@credit_types,
143         finesview    => 1,
144         csrf_token   => Koha::Token->new->generate_csrf(
145             { session_id => scalar $input->cookie('CGISESSID') }
146         ),
147         available_additional_fields => [ Koha::AdditionalFields->search({ tablename => 'accountlines:credit' })->as_list ],
148     );
149     output_html_with_http_headers $input, $cookie, $template->output;
150 }