Bug 15172: (follow-up)Serial enumchron/sequence not visible when returning/checking...
[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
14 # under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 3 of the License, or
16 # (at your option) any later version.
17 #
18 # Koha is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25
26 use strict;
27 use warnings;
28
29 use CGI qw ( -utf8 );
30 use C4::Context;
31 use C4::Members;
32 use C4::Auth;
33
34
35 my $input = new CGI;
36
37 checkauth($input, 0, { borrowers => 1 }, 'intranet');
38
39 my $destination = $input->param("destination") || '';
40 my $borrowernumber=$input->param('borrowernumber');
41 my $status = $input->param('status');
42 my $reregistration = $input->param('reregistration') || '';
43
44 my $dbh = C4::Context->dbh;
45 my $dateexpiry;
46
47 if ( $reregistration eq 'y' ) {
48         # re-reregistration function to automatic calcul of date expiry
49         $dateexpiry = ExtendMemberSubscriptionTo( $borrowernumber );
50 } else {
51     my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?");
52     $sth->execute( $status, $borrowernumber );
53         $sth->finish;
54         }
55
56 if($destination eq "circ"){
57     if($dateexpiry){
58         print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber&was_renewed=1");
59     } else {
60         print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
61     }
62 } else {
63     if($dateexpiry){
64         print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber&was_renewed=1");
65     } else {
66         print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");
67     }
68 }