c596d55374
some stuff to do, i'll write a mail on koha-devel NOW !
92 lines
2.7 KiB
Perl
Executable file
92 lines
2.7 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
#script to place reserves/requests
|
|
#writen 2/1/00 by chris@katipo.oc.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 C4::Biblio;
|
|
use CGI;
|
|
use C4::Output;
|
|
use C4::Reserves2;
|
|
use C4::Circulation;
|
|
use C4::Members;
|
|
|
|
my $input = new CGI;
|
|
#print $input->header;
|
|
|
|
my @bibitems=$input->param('biblioitem');
|
|
my @reqbib=$input->param('reqbib');
|
|
my $biblionumber=$input->param('biblionumber');
|
|
my $borrower=$input->param('member');
|
|
my $notes=$input->param('notes');
|
|
my $branch=$input->param('pickup');
|
|
my @rank=$input->param('rank-request');
|
|
my $type=$input->param('type');
|
|
my $title=$input->param('title');
|
|
my $borrowernumber=borrdata($borrower,'');
|
|
my $checkitem=$input->param('checkitem');
|
|
my $found;
|
|
|
|
#new op : if we have an item selectionned, and the pickup branch is the same as the holdingbranch of the document, we force the value $rank and $found .
|
|
if ($checkitem ne ''){
|
|
$rank[0] = '0';
|
|
my $item = $checkitem;
|
|
$item = GetItem($item);
|
|
if ( $item->{'holdingbranch'} eq $branch ){
|
|
$found = 'W';
|
|
}
|
|
|
|
|
|
}
|
|
|
|
# END of new op .
|
|
|
|
if ($type eq 'str8' && $borrowernumber ne ''){
|
|
my $count=@bibitems;
|
|
@bibitems=sort @bibitems;
|
|
my $i2=1;
|
|
my @realbi;
|
|
$realbi[0]=$bibitems[0];
|
|
for (my $i=1;$i<$count;$i++) {
|
|
my $i3=$i2-1;
|
|
if ($realbi[$i3] ne $bibitems[$i]) {
|
|
$realbi[$i2]=$bibitems[$i];
|
|
$i2++;
|
|
}
|
|
}
|
|
my $env;
|
|
my $const;
|
|
if ($input->param('request') eq 'any'){
|
|
$const='a';
|
|
CreateReserve(\$env,$branch,$borrowernumber->{'borrowernumber'},$biblionumber,$const,\@realbi,$rank[0],$notes,$title,$checkitem,$found);
|
|
} elsif ($reqbib[0] ne ''){
|
|
$const='o';
|
|
CreateReserve(\$env,$branch,$borrowernumber->{'borrowernumber'},$biblionumber,$const,\@reqbib,$rank[0],$notes,$title,$checkitem, $found);
|
|
} else {
|
|
CreateReserve(\$env,$branch,$borrowernumber->{'borrowernumber'},$biblionumber,'a',\@realbi,$rank[0],$notes,$title,$checkitem, $found);
|
|
}
|
|
|
|
print $input->redirect("request.pl?biblionumber=$biblionumber");
|
|
} elsif ($borrowernumber eq ''){
|
|
print $input->header();
|
|
print "Invalid card number please try again";
|
|
print $input->Dump;
|
|
}
|