Koha/members/deletemem.pl
tipaul b38997925f big commit, still breaking things...
* synch with rel_2_2. Probably the last non manual synch, as rel_2_2 should not be modified deeply.
* code cleaning (cleaning warnings from perl -w) continued
2005-10-26 09:11:02 +00:00

128 lines
3.5 KiB
Perl
Executable file

#!/usr/bin/perl
# $Id$
#script to delete items
#written 2/5/00
#by chris@katipo.co.nz
# Copyright 2000-2002 Katipo Communications
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along with
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA 02111-1307 USA
use strict;
use CGI;
use C4::Context;
use C4::Search;
use C4::Interface::CGI::Output;
use C4::Output;
use C4::Circulation::Circ2;
use C4::Auth;
my $input = new CGI;
my $flagsrequired;
$flagsrequired->{borrowers}=1;
my ($loggedinuser, $cookie, $sessionID) = checkauth($input, 0, $flagsrequired);
#print $input->header;
my $member=$input->param('member');
my %env;
$env{'nottodayissues'}=1;
my %member2;
$member2{'borrowernumber'}=$member;
my $issues=currentissues(\%env,\%member2);
my $i=0;
foreach (sort keys %$issues) {
$i++;
}
my ($bor,$flags)=getpatroninformation(\%env, $member,'');
if (C4::Context->preference("IndependantBranches")) {
my $userenv = C4::Context->userenv;
unless ($userenv->{flags} == 1){
unless ($userenv->{'branch'} eq $bor->{'branchcode'}){
# warn "user ".$userenv->{'branch'} ."borrower :". $bor->{'branchcode'};
print $input->redirect("/cgi-bin/koha/members/moremember.pl?bornum=$member");
exit 1;
}
}
}
my $dbh = C4::Context->dbh;
my $sth=$dbh->prepare("Select * from borrowers where guarantor=?");
$sth->execute($member);
my $data=$sth->fetchrow_hashref;
$sth->finish;
if ($i > 0 || $flags->{'CHARGES'} ne '' || $data ne ''){
my ($template, $borrowernumber, $cookie)
= get_template_and_user({template_name => "members/deletemem.tmpl",
query => $input,
type => "intranet",
authnotrequired => 0,
flagsrequired => {borrower => 1},
debug => 1,
});
# print $input->header;
$template->param(bornum => $member);
if ($i >0) {
$template->param(ItemsOnIssues => $i);
}
if ($flags->{'CHARGES'} ne '') {
$template->param(charges => $flags->{'CHARGES'}->{'message'});
}
if ($data ne '') {
$template->param(guarantees => 1);
}
# print "<table border=1>";
# if ($i > 0){
# print "<TR><TD>Items on Issue</td><td align=right>$i</td></tr>";
# }
# if ($flags->{'CHARGES'} ne ''){
# print "<TR><TD>Charges</td><td>$flags->{'CHARGES'}->{'message'}</tr>";
# }
# if ($data ne ''){
# print "<TR><TD>Guarantees</td></tr>";
# }
# print "</table>";
output_html_with_http_headers $input, $cookie, $template->output;
} else {
delmember($member);
print $input->redirect("/cgi-bin/koha/members/members-home.pl");
}
sub delmember{
my ($member)=@_;
my $dbh = C4::Context->dbh;
my $sth=$dbh->prepare("Select * from borrowers where borrowernumber=?");
$sth->execute($member);
my @data=$sth->fetchrow_array;
$sth->finish;
$sth=$dbh->prepare("Insert into deletedborrowers values (".("?,"x(scalar(@data)-1))."?)");
$sth->execute(@data);
$sth->finish;
$sth=$dbh->prepare("Delete from borrowers where borrowernumber=?");
$sth->execute($member);
$sth->finish;
$sth=$dbh->prepare("Delete from reserves where borrowernumber=?");
$sth->execute($member);
$sth->finish;
}