Bug 25729: Prevent Charges/Fees.t to fail on slow server
[koha.git] / reserve / modrequest.pl
1 #!/usr/bin/perl
2
3 #script to modify reserves/requests
4 #written 2/1/00 by chris@katipo.oc.nz
5 #last update 27/1/2000 by chris@katipo.co.nz
6
7
8 # Copyright 2000-2002 Katipo Communications
9 #
10 # This file is part of Koha.
11 #
12 # Koha is free software; you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 3 of the License, or
15 # (at your option) any later version.
16 #
17 # Koha is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24
25 use Modern::Perl;
26 use CGI qw ( -utf8 );
27 use C4::Output;
28 use C4::Reserves;
29 use C4::Auth;
30
31 my $query = new CGI;
32 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
33     {   
34         template_name   => "about.tt",
35         query           => $query,
36         type            => "intranet",
37         flagsrequired   => { catalogue => 1 },
38         debug           => 1,
39     }
40 );
41
42 my @reserve_id = $query->multi_param('reserve_id');
43 my @rank = $query->multi_param('rank-request');
44 my @biblionumber = $query->multi_param('biblionumber');
45 my @borrower = $query->multi_param('borrowernumber');
46 my @branch = $query->multi_param('pickup');
47 my @itemnumber = $query->multi_param('itemnumber');
48 my @suspend_until=$query->multi_param('suspend_until');
49 my $multi_hold = $query->param('multi_hold');
50 my $biblionumbers = $query->param('biblionumbers');
51 my $count=@rank;
52
53 my $CancelBiblioNumber = $query->param('CancelBiblioNumber');
54 my $CancelBorrowerNumber = $query->param('CancelBorrowerNumber');
55 my $CancelItemnumber = $query->param('CancelItemnumber');
56
57 # 2 possibilitys : cancel an item reservation, or modify or cancel the queded list
58
59 # 1) cancel an item reservation by function ModReserveCancelAll (in reserves.pm)
60 if ($CancelBorrowerNumber) {
61     ModReserveCancelAll($CancelItemnumber, $CancelBorrowerNumber);
62     $biblionumber[0] = $CancelBiblioNumber,
63 }
64
65 # 2) Cancel or modify the queue list of reserves (without item linked)
66 else {
67     for (my $i=0;$i<$count;$i++){
68         undef $itemnumber[$i] if !$itemnumber[$i];
69         ModReserve({
70             rank => $rank[$i],
71             reserve_id => $reserve_id[$i],
72             branchcode => $branch[$i],
73             itemnumber => $itemnumber[$i],
74             suspend_until => $suspend_until[$i]
75         });
76     }
77 }
78
79 my $from=$query->param('from');
80 $from ||= q{};
81 if ( $from eq 'borrower'){
82     print $query->redirect("/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrower[0]");
83 } elsif ( $from eq 'circ'){
84     print $query->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrower[0]");
85 } else {
86      my $url = "/cgi-bin/koha/reserve/request.pl?";
87      if ($multi_hold) {
88          $url .= "multi_hold=1&biblionumbers=$biblionumbers";
89      } else {
90          $url .= "biblionumber=$biblionumber[0]";
91      }
92      print $query->redirect($url);
93 }