Bug 24902: Join different mc- limits with AND (elasticsearch)
[koha.git] / members / mancredit.pl
blob8ed7ffd72cb178a8f8f01af4000bffa9c6cfe81d
1 #!/usr/bin/perl
3 #written 11/1/2000 by chris@katipo.oc.nz
4 #script to display borrowers account details
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2010 BibLibre
9 # This file is part of Koha.
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.
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.
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>.
24 use Modern::Perl;
26 use C4::Auth;
27 use C4::Output;
28 use CGI qw ( -utf8 );
30 use C4::Members;
31 use C4::Accounts;
32 use C4::Items;
34 use Koha::Items;
35 use Koha::Patrons;
36 use Koha::Patron::Categories;
37 use Koha::Account::CreditTypes;
39 use Koha::Token;
41 my $input = new CGI;
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44 template_name => "members/mancredit.tt",
45 query => $input,
46 type => "intranet",
47 authnotrequired => 0,
48 flagsrequired => {
49 borrowers => 'edit_borrowers',
50 updatecharges => 'remaining_permissions'
55 my $logged_in_user = Koha::Patrons->find($loggedinuser);
56 my $borrowernumber = $input->param('borrowernumber');
57 my $patron = Koha::Patrons->find($borrowernumber);
59 output_and_exit_if_error(
60 $input, $cookie,
61 $template,
63 module => 'members',
64 logged_in_user => $logged_in_user,
65 current_patron => $patron
69 my $library_id =
70 C4::Context->userenv ? C4::Context->userenv->{'branch'} : undef;
72 my $add = $input->param('add');
73 if ($add) {
74 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
75 unless Koha::Token->new->check_csrf(
77 session_id => scalar $input->cookie('CGISESSID'),
78 token => scalar $input->param('csrf_token'),
82 # Note: If the logged in user is not allowed to see this patron an invoice can be forced
83 # Here we are trusting librarians not to hack the system
84 my $barcode = $input->param('barcode');
85 my $item_id;
86 if ($barcode) {
87 my $item = Koha::Items->find( { barcode => $barcode } );
88 $item_id = $item->itemnumber if $item;
90 my $description = $input->param('desc');
91 my $note = $input->param('note');
92 my $amount = $input->param('amount') || 0;
93 my $type = $input->param('type');
95 $patron->account->add_credit(
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
108 if ( C4::Context->preference('AccountAutoReconcile') ) {
109 $patron->account->reconcile_balance;
112 print $input->redirect(
113 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
114 exit;
116 else {
118 my @credit_types = Koha::Account::CreditTypes->search_with_library_limits(
119 { can_be_added_manually => 1, archived => 0 },
120 {}, $library_id );
122 $template->param(
123 patron => $patron,
124 credit_types => \@credit_types,
125 finesview => 1,
126 csrf_token => Koha::Token->new->generate_csrf(
127 { session_id => scalar $input->cookie('CGISESSID') }
130 output_html_with_http_headers $input, $cookie, $template->output;