Bug 34478: Rename action with op - members/boraccount
[koha.git] / members / cancel-charge.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use CGI;
21
22 use C4::Auth qw( checkauth );
23
24 my $cgi = CGI->new;
25
26 my $authnotrequired = 0;
27 my $flags = {
28     borrowers     => 'edit_borrowers',
29     updatecharges => 'remaining_permissions'
30 };
31
32 my $type = 'intranet';
33 my ($user, $cookie) = C4::Auth::checkauth($cgi, $authnotrequired, $flags, $type);
34
35 my $borrowernumber = $cgi->param('borrowernumber');
36 my $accountlines_id = $cgi->param('accountlines_id');
37
38 my $charge = Koha::Account::Lines->find($accountlines_id);
39 $charge->cancel(
40     {
41         branch   => C4::Context->userenv->{'branch'},
42         staff_id => C4::Context->userenv->{'number'}
43     }
44 );
45
46 print $cgi->redirect('/cgi-bin/koha/members/boraccount.pl?borrowernumber=' . $borrowernumber);