Bug 7607: (follow-up) Address OPAC and limits
[koha.git] / members / setstatus.pl
blob66ae8b586c6bfb9fd424784b768b8079427423a6
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
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.
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.
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>.
26 use Modern::Perl;
28 use CGI qw ( -utf8 );
29 use C4::Context;
30 use C4::Members;
31 use C4::Auth;
32 use Koha::Patrons;
35 my $input = CGI->new;
37 my ( $loggedinuserid ) = checkauth($input, 0, { borrowers => 'edit_borrowers' }, 'intranet');
39 my $destination = $input->param("destination") || '';
40 my $borrowernumber=$input->param('borrowernumber');
41 my $status = $input->param('status');
42 my $reregistration = $input->param('reregistration') || '';
44 my $dbh = C4::Context->dbh;
45 my $dateexpiry;
47 my $logged_in_user = Koha::Patrons->find( { userid => $loggedinuserid } );
48 my $patron = Koha::Patrons->find( $borrowernumber );
50 # Ideally we should display a warning on the interface if the logged in user is
51 # not allowed to modify this patron.
52 # But a librarian is not supposed to hack the system
53 if ( $logged_in_user->can_see_patron_infos($patron) ) {
54 if ( $reregistration eq 'y' ) {
55 # re-reregistration function to automatic calcul of date expiry
56 $dateexpiry = $patron->renew_account;
57 } else {
58 my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?");
59 $sth->execute( $status, $borrowernumber );
60 $sth->finish;
64 if($destination eq "circ"){
65 if($dateexpiry){
66 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber&was_renewed=1");
67 } else {
68 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
70 } else {
71 if($dateexpiry){
72 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber&was_renewed=1");
73 } else {
74 print $input->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");