quell warning if format parameter isn't passed to opac-search.pl
[koha.git] / reserve / placerequest.pl
1 #!/usr/bin/perl
2
3 #script to place reserves/requests
4 #writen 2/1/00 by chris@katipo.oc.nz
5
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use warnings;
26 use C4::Biblio;
27 use C4::Items;
28 use CGI;
29 use C4::Output;
30 use C4::Reserves;
31 use C4::Circulation;
32 use C4::Members;
33
34 my $input = new CGI;
35 #print $input->header;
36
37
38 my @bibitems=$input->param('biblioitem');
39 # FIXME I think reqbib does not exist anymore, it's used in line 82, to AddReserve of contraint type 'o'
40 #       I bet it's a 2.x feature, reserving a given biblioitem, that is useless in Koha 3.0
41 #       we can remove this line, the AddReserve of constrainttype 'o',
42 #       and probably remove the reserveconstraint table as well, I never could fill anything in this table.
43 my @reqbib=$input->param('reqbib'); 
44 my $biblionumber=$input->param('biblionumber');
45 my $borrower=$input->param('member');
46 my $notes=$input->param('notes');
47 my $branch=$input->param('pickup');
48 my @rank=$input->param('rank-request');
49 my $type=$input->param('type');
50 my $title=$input->param('title');
51 my $borrowernumber=GetMember($borrower,'cardnumber');
52 my $checkitem=$input->param('checkitem');
53
54 my $multi_hold = $input->param('multi_hold');
55 my $biblionumbers = $multi_hold ? $input->param('biblionumbers') : ($biblionumber . '/');
56 my $bad_bibs = $input->param('bad_bibs');
57
58 my %bibinfos = ();
59 my @biblionumbers = split '/', $biblionumbers;
60 foreach my $bibnum (@biblionumbers) {
61     my %bibinfo = ();
62     $bibinfo{title} = $input->param("title_$bibnum");
63     $bibinfo{rank} = $input->param("rank_$bibnum");
64     $bibinfos{$bibnum} = \%bibinfo;
65 }
66
67 my $found;
68
69 # if we have an item selectionned, and the pickup branch is the same as the holdingbranch
70 # of the document, we force the value $rank and $found .
71 if ($checkitem ne ''){
72     $rank[0] = '0' unless C4::Context->preference('ReservesNeedReturns');
73     my $item = $checkitem;
74     $item = GetItem($item);
75     if ( $item->{'holdingbranch'} eq $branch ){
76         $found = 'W' unless C4::Context->preference('ReservesNeedReturns');
77     }
78 }
79
80 if ($type eq 'str8' && $borrowernumber ne ''){
81
82     foreach my $biblionumber (keys %bibinfos) {
83         my $count=@bibitems;
84         @bibitems=sort @bibitems;
85         my $i2=1;
86         my @realbi;
87         $realbi[0]=$bibitems[0];
88         for (my $i=1;$i<$count;$i++) {
89             my $i3=$i2-1;
90             if ($realbi[$i3] ne $bibitems[$i]) {
91                 $realbi[$i2]=$bibitems[$i];
92                 $i2++;
93             }
94         }
95         my $const;
96
97         if ($multi_hold) {
98             my $bibinfo = $bibinfos{$biblionumber};
99             AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,'a',[$biblionumber],
100                        $bibinfo->{rank},$notes,$bibinfo->{title},$checkitem,$found);
101         } else {
102             if ($input->param('request') eq 'any'){
103                 # place a request on 1st available
104                 AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,'a',\@realbi,$rank[0],$notes,$title,$checkitem,$found);
105             } elsif ($reqbib[0] ne ''){
106                 # FIXME : elsif probably never reached, (see top of the script)
107                 # place a request on a given item
108                 AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,'o',\@reqbib,$rank[0],$notes,$title,$checkitem, $found);
109             } else {
110                 AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,'a',\@realbi,$rank[0],$notes,$title,$checkitem, $found);
111             }
112         }
113     }
114
115     if ($multi_hold) {
116         if ($bad_bibs) {
117             $biblionumbers .= $bad_bibs;
118         }
119         print $input->redirect("request.pl?biblionumbers=$biblionumbers&multi_hold=1");
120     } else {
121         print $input->redirect("request.pl?biblionumber=$biblionumber");
122     }
123 } elsif ($borrowernumber eq ''){
124         print $input->header();
125         print "Invalid card number please try again";
126         print $input->Dump;
127 }