[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-devel] CVS: koha/maint shiftbib.pl,NONE,1.1
From: |
Chris Cormack |
Subject: |
[Koha-devel] CVS: koha/maint shiftbib.pl,NONE,1.1 |
Date: |
Thu, 15 Mar 2001 02:11:36 -0800 |
Update of /cvsroot/koha/koha/maint
In directory usw-pr-cvs1:/tmp/cvs-serv6288/maint
Added Files:
shiftbib.pl
Log Message:
Script to shift a group to another biblio, called as part of catalogue
maintenance
--- NEW FILE ---
#!/usr/bin/perl
#script to do some serious catalogue maintainance
#written 22/11/00
# by address@hidden
use strict;
use CGI;
use C4::Output;
use C4::Database;
use C4::Maintainance;
my $input = new CGI;
print $input->header;
my $type=$input->param('type');
my $bi=$input->param('bi');
my $bib=$input->param('bib');
my $type=$input->param('type');
print startpage();
print startmenu('catalog');
if ($type eq 'change'){
my $biblionumber=$input->param('biblionumber');
my $dbh=C4Connect;
my $query="Select * from biblio where biblionumber=$biblionumber";
my $sth=$dbh->prepare($query);
$sth->execute;
my $data=$sth->fetchrow_hashref;
print "Shifting group $bi to biblio $biblionumber<br>
Title:$data->{'title'}<br>
Author:$data->{'author'}<p>
Are you sure?
<p>
";
print "<a
href=/cgi-bin/koha/maint/shiftbib.pl?type=update&bi=$bi&bib=$biblionumber>Yes</a>";
} elsif ($type eq 'update'){
shiftgroup($bib,$bi);
print "Shifted";
} else {
print "Shifting Group $bi from biblio $bib to <p>";
print "<form action=/cgi-bin/koha/maint/shiftbib.pl method=post>";
print "<input name=bi type=hidden value=$bi>";
print "<input type=hidden name=type value=change>";
print "<input type=text name=biblionumber><br>";
print "<input type=submit value=change></form>";
}
print endmenu('catalog');
print endpage();
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-devel] CVS: koha/maint shiftbib.pl,NONE,1.1,
Chris Cormack <=