#!/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->{borrower}=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,''); 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 => {circulate => 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 "
Items on Issue | $i |
Charges | $flags->{'CHARGES'}->{'message'} |
Guarantees |