Bug 7924 - Fix handling of command line arguments in koha-remove
[koha.git] / members / setstatus.pl
blob31a62e63108a687ee7d511b70818d9487c583c3c
1 #!/usr/bin/perl
3 #script to set or lift debarred status
4 #written 2/8/04
5 #by oleonard@athenscounty.lib.oh.us
8 # Copyright 2000-2002 Katipo Communications
9 # Parts copyright 2010 BibLibre
11 # This file is part of Koha.
13 # Koha is free software; you can redistribute it and/or modify it under the
14 # terms of the GNU General Public License as published by the Free Software
15 # Foundation; either version 2 of the License, or (at your option) any later
16 # version.
18 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
19 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
20 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License along
23 # with Koha; if not, write to the Free Software Foundation, Inc.,
24 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 use strict;
27 use warnings;
29 use CGI;
30 use C4::Context;
31 use C4::Members;
32 use C4::Auth;
35 my $input = new CGI;
37 my $flagsrequired;
38 $flagsrequired->{borrowers}=1;
39 checkauth($input, 0, $flagsrequired);
41 my $destination = $input->param("destination") || '';
42 my $cardnumber = $input->param("cardnumber");
43 my $borrowernumber=$input->param('borrowernumber');
44 my $status = $input->param('status');
45 my $reregistration = $input->param('reregistration') || '';
47 my $dbh = C4::Context->dbh;
48 my $dateexpiry;
50 if ( $reregistration eq 'y' ) {
51 # re-reregistration function to automatic calcul of date expiry
52 $dateexpiry = ExtendMemberSubscriptionTo( $borrowernumber );
53 } else {
54 my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?");
55 $sth->execute( $status, $borrowernumber );
56 $sth->finish;
59 if($destination eq "circ"){
60 if($dateexpiry){
61 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber&dateexpiry=$dateexpiry");
62 } else {
63 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber");
65 } else {
66 if($dateexpiry){
67 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber&dateexpiry=$dateexpiry");
68 } else {
69 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber");