minor template changes
[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 C4::Biblio;
26 use CGI;
27 use C4::Output;
28 use C4::Reserves;
29 use C4::Circulation;
30 use C4::Members;
31
32 my $input = new CGI;
33 #print $input->header;
34
35 my @bibitems=$input->param('biblioitem');
36 my @reqbib=$input->param('reqbib');
37 my $biblionumber=$input->param('biblionumber');
38 my $borrower=$input->param('member');
39 my $notes=$input->param('notes');
40 my $branch=$input->param('pickup');
41 my @rank=$input->param('rank-request');
42 my $type=$input->param('type');
43 my $title=$input->param('title');
44 my $borrowernumber=GetMember($borrower,'cardnumber');
45 my $checkitem=$input->param('checkitem');
46 my $found;
47
48 #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 .
49 if ($checkitem ne ''){
50                 $rank[0] = '0';
51                 my $item = $checkitem;
52                 $item = GetItem($item);
53                 if ( $item->{'holdingbranch'} eq $branch ){
54                 $found = 'W';   
55                 }
56
57
58 }
59
60 # END of new op .
61
62 if ($type eq 'str8' && $borrowernumber ne ''){
63         my $count=@bibitems;
64         @bibitems=sort @bibitems;
65         my $i2=1;
66         my @realbi;
67         $realbi[0]=$bibitems[0];
68         for (my $i=1;$i<$count;$i++) {
69                 my $i3=$i2-1;
70                 if ($realbi[$i3] ne $bibitems[$i]) {
71                         $realbi[$i2]=$bibitems[$i];
72                         $i2++;
73                 }
74         }
75         my $const;
76         if ($input->param('request') eq 'any'){
77         $const='a';
78   AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,$const,\@realbi,$rank[0],$notes,$title,$checkitem,$found);
79         } elsif ($reqbib[0] ne ''){
80         $const='o';
81   AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,$const,\@reqbib,$rank[0],$notes,$title,$checkitem, $found);
82         } else {
83   AddReserve($branch,$borrowernumber->{'borrowernumber'},$biblionumber,'a',\@realbi,$rank[0],$notes,$title,$checkitem, $found);
84         }
85         
86 print $input->redirect("request.pl?biblionumber=$biblionumber");
87 } elsif ($borrowernumber eq ''){
88         print $input->header();
89         print "Invalid card number please try again";
90         print $input->Dump;
91 }