Merge branch 'bug_2832' into 3.12-master
[koha.git] / members / setstatus.pl
1 #!/usr/bin/perl
2
3 #script to set or lift debarred status
4 #written 2/8/04
5 #by oleonard@athenscounty.lib.oh.us
6
7
8 # Copyright 2000-2002 Katipo Communications
9 # Parts copyright 2010 BibLibre
10 #
11 # This file is part of Koha.
12 #
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.
17 #
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.
21 #
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.
25
26 use strict;
27 use warnings;
28
29 use CGI;
30 use C4::Context;
31 use C4::Members;
32 use C4::Auth;
33
34
35 my $input = new CGI;
36
37 my $flagsrequired;
38 $flagsrequired->{borrowers}=1;
39 checkauth($input, 0, $flagsrequired);
40
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') || '';
46
47 my $dbh = C4::Context->dbh;
48 my $dateexpiry;
49
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;
57         }
58
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");
64         }
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");
70         }
71 }