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.
37 checkauth
($input, 0, { borrowers
=> 1 }, 'intranet');
39 my $destination = $input->param("destination") || '';
40 my $cardnumber = $input->param("cardnumber");
41 my $borrowernumber=$input->param('borrowernumber');
42 my $status = $input->param('status');
43 my $reregistration = $input->param('reregistration') || '';
45 my $dbh = C4
::Context
->dbh;
48 if ( $reregistration eq 'y' ) {
49 # re-reregistration function to automatic calcul of date expiry
50 $dateexpiry = ExtendMemberSubscriptionTo
( $borrowernumber );
52 my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?");
53 $sth->execute( $status, $borrowernumber );
57 if($destination eq "circ"){
59 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber&was_renewed=1");
61 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?findborrower=$cardnumber");
65 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber&was_renewed=1");
67 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");