Bug 11944: use CGI( -utf8 ) everywhere
[koha.git] / circ / waitingreserves.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # parts copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 use strict;
22 use warnings;
23 use CGI qw ( -utf8 );
24 use C4::Context;
25 use C4::Output;
26 use C4::Branch; # GetBranchName
27 use C4::Auth;
28 use C4::Dates qw/format_date/;
29 use C4::Circulation;
30 use C4::Members;
31 use C4::Biblio;
32 use C4::Items;
33
34 use Date::Calc qw(
35   Today
36   Add_Delta_Days
37   Date_to_Days
38 );
39 use C4::Reserves;
40 use C4::Koha;
41
42 my $input = new CGI;
43
44 my $item           = $input->param('itemnumber');
45 my $borrowernumber = $input->param('borrowernumber');
46 my $fbr            = $input->param('fbr') || '';
47 my $tbr            = $input->param('tbr') || '';
48 my $all_branches   = $input->param('allbranches') || '';
49 my $cancelall      = $input->param('cancelall');
50
51 my $cancel;
52
53 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
54     {
55         template_name   => "circ/waitingreserves.tt",
56         query           => $input,
57         type            => "intranet",
58         authnotrequired => 0,
59         flagsrequired   => { circulate => "circulate_remaining_permissions" },
60         debug           => 1,
61     }
62 );
63
64 my $default = C4::Context->userenv->{'branch'};
65
66 my $transfer_when_cancel_all = C4::Context->preference('TransferWhenCancelAllWaitingHolds');
67 $template->param( TransferWhenCancelAllWaitingHolds => 1 ) if $transfer_when_cancel_all;
68
69 my @cancel_result;
70 # if we have a return from the form we launch the subroutine CancelReserve
71 if ($item) {
72     my $res = cancel( $item, $borrowernumber, $fbr, $tbr );
73     push @cancel_result, $res if $res;
74 }
75
76 if ( C4::Context->preference('IndependentBranches') ) {
77     undef $all_branches;
78 } else {
79     $template->param( all_branches_link => $input->url . '?allbranches=1' )
80       unless $all_branches;
81 }
82 $template->param( all_branches => 1 ) if $all_branches;
83
84 my (@reservloop, @overloop);
85 my ($reservcount, $overcount);
86 my @getreserves = $all_branches ? GetReservesForBranch() : GetReservesForBranch($default);
87 # get reserves for the branch we are logged into, or for all branches
88
89 my $today = Date_to_Days(&Today);
90 foreach my $num (@getreserves) {
91     next unless ($num->{'waitingdate'} && $num->{'waitingdate'} ne '0000-00-00');
92
93     my $itemnumber = $num->{'itemnumber'};
94     my $gettitle     = GetBiblioFromItemNumber( $itemnumber );
95     my $borrowernum = $num->{'borrowernumber'};
96     my $holdingbranch = $gettitle->{'holdingbranch'};
97     my $homebranch = $gettitle->{'homebranch'};
98
99     my %getreserv = (
100         itemnumber => $itemnumber,
101         borrowernum => $borrowernum,
102     );
103
104     # fix up item type for display
105     $gettitle->{'itemtype'} = C4::Context->preference('item-level_itypes') ? $gettitle->{'itype'} : $gettitle->{'itemtype'};
106     my $getborrower = GetMember(borrowernumber => $num->{'borrowernumber'});
107     my $itemtypeinfo = getitemtypeinfo( $gettitle->{'itemtype'} );  # using the fixed up itype/itemtype
108     $getreserv{'waitingdate'} = $num->{'waitingdate'};
109     my ( $waiting_year, $waiting_month, $waiting_day ) = split (/-/, $num->{'waitingdate'});
110     ( $waiting_year, $waiting_month, $waiting_day ) =
111       Add_Delta_Days( $waiting_year, $waiting_month, $waiting_day,
112         C4::Context->preference('ReservesMaxPickUpDelay'));
113     my $calcDate = Date_to_Days( $waiting_year, $waiting_month, $waiting_day );
114
115     $getreserv{'itemtype'}       = $itemtypeinfo->{'description'};
116     $getreserv{'title'}          = $gettitle->{'title'};
117     $getreserv{'subtitle'}       = GetRecordValue('subtitle', GetMarcBiblio($gettitle->{'biblionumber'}), GetFrameworkCode($gettitle->{'biblionumber'}));
118     $getreserv{'biblionumber'}   = $gettitle->{'biblionumber'};
119     $getreserv{'barcode'}        = $gettitle->{'barcode'};
120     $getreserv{'branchname'}     = GetBranchName($gettitle->{'homebranch'});
121     $getreserv{'homebranch'}     = $gettitle->{'homebranch'};
122     $getreserv{'holdingbranch'}  = $gettitle->{'holdingbranch'};
123     $getreserv{'itemcallnumber'} = $gettitle->{'itemcallnumber'};
124     $getreserv{'enumchron'}      = $gettitle->{'enumchron'};
125     $getreserv{'copynumber'}     = $gettitle->{'copynumber'};
126     if ( $homebranch ne $holdingbranch ) {
127         $getreserv{'dotransfer'} = 1;
128     }
129     $getreserv{'borrowername'}      = $getborrower->{'surname'};
130     $getreserv{'borrowerfirstname'} = $getborrower->{'firstname'};
131     $getreserv{'borrowerphone'}     = $getborrower->{'phone'};
132
133     my $borEmail = GetFirstValidEmailAddress( $borrowernum );
134
135     if ( $borEmail ) {
136         $getreserv{'borrowermail'}  = $borEmail;
137     }
138
139     if ($today > $calcDate) {
140         if ($cancelall) {
141             my $res = cancel( $itemnumber, $borrowernum, $holdingbranch, $homebranch, !$transfer_when_cancel_all );
142             push @cancel_result, $res if $res;
143             next;
144         } else {
145             push @overloop,   \%getreserv;
146             $overcount++;
147         }
148     }else{
149         push @reservloop, \%getreserv;
150         $reservcount++;
151     }
152     
153 }
154
155 $template->param(cancel_result => \@cancel_result) if @cancel_result;
156 $template->param(
157     reserveloop => \@reservloop,
158     reservecount => $reservcount,
159     overloop    => \@overloop,
160     overcount   => $overcount,
161     show_date   => format_date(C4::Dates->today('iso')),
162     ReservesMaxPickUpDelay => C4::Context->preference('ReservesMaxPickUpDelay')
163 );
164
165 if ($cancelall) {
166     print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
167 } else {
168     output_html_with_http_headers $input, $cookie, $template->output;
169 }
170
171 exit;
172
173 sub cancel {
174     my ($item, $borrowernumber, $fbr, $tbr, $skip_transfers ) = @_;
175
176     my $transfer = $fbr ne $tbr; # XXX && !$nextreservinfo;
177
178     return if $transfer && $skip_transfers;
179
180     my ( $messages, $nextreservinfo ) = ModReserveCancelAll( $item, $borrowernumber );
181
182 #       if the document is not in his homebranch location and there is not reservation after, we transfer it
183     if ($transfer && !$nextreservinfo) {
184         ModItemTransfer( $item, $fbr, $tbr );
185     }
186     # if we have a result
187     if ($nextreservinfo) {
188         my %res;
189         my $borrowerinfo = GetMemberDetails( $nextreservinfo );
190         my $iteminfo = GetBiblioFromItemNumber($item);
191         if ( $messages->{'transfert'} ) {
192             $res{messagetransfert} = $messages->{'transfert'};
193             $res{branchname}       = GetBranchName($messages->{'transfert'});
194         }
195
196         $res{message}             = 1;
197         $res{nextreservnumber}    = $nextreservinfo;
198         $res{nextreservsurname}   = $borrowerinfo->{'surname'};
199         $res{nextreservfirstname} = $borrowerinfo->{'firstname'};
200         $res{nextreservitem}      = $item;
201         $res{nextreservtitle}     = $iteminfo->{'title'};
202         $res{waiting}             = $messages->{'waiting'} ? 1 : 0;
203
204         return \%res;
205     }
206
207     return;
208 }