3 #script to set or lift debarred status
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
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.
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;
50 if ( $reregistration eq 'y' ) {
51 # re-reregistration function to automatic calcul of date expiry
52 $dateexpiry = ExtendMemberSubscriptionTo
( $borrowernumber );
54 my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?");
55 $sth->execute( $status, $borrowernumber );
59 if($destination eq "circ"){
61 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber&dateexpiry=$dateexpiry");
63 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber");
67 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber&dateexpiry=$dateexpiry");
69 print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$borrowernumber");