Bug 24488: [DISCUSSION] For comparaison
[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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use C4::Context;
24 use C4::Output;
25 use C4::Auth;
26 use C4::Circulation;
27 use C4::Members;
28 use C4::Biblio;
29 use C4::Items;
30 use Date::Calc qw(
31   Today
32   Add_Delta_Days
33   Date_to_Days
34 );
35 use C4::Reserves;
36 use C4::Koha;
37 use Koha::DateUtils;
38 use Koha::BiblioFrameworks;
39 use Koha::Items;
40 use Koha::ItemTypes;
41 use Koha::Patrons;
42
43 my $input = CGI->new;
44
45 my $item           = $input->param('itemnumber');
46 my $borrowernumber = $input->param('borrowernumber');
47 my $fbr            = $input->param('fbr') || '';
48 my $tbr            = $input->param('tbr') || '';
49 my $all_branches   = $input->param('allbranches') || '';
50 my $cancelall      = $input->param('cancelall');
51 my $tab            = $input->param('tab');
52
53 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
54     {
55         template_name   => "circ/waitingreserves.tt",
56         query           => $input,
57         type            => "intranet",
58         flagsrequired   => { circulate => "circulate_remaining_permissions" },
59         debug           => 1,
60     }
61 );
62
63 my $default = C4::Context->userenv->{'branch'};
64
65 my $transfer_when_cancel_all = C4::Context->preference('TransferWhenCancelAllWaitingHolds');
66 $template->param( TransferWhenCancelAllWaitingHolds => 1 ) if $transfer_when_cancel_all;
67
68 my @cancel_result;
69 # if we have a return from the form we cancel the holds
70 if ($item) {
71     my $res = cancel( $item, $borrowernumber, $fbr, $tbr );
72     push @cancel_result, $res if $res;
73 }
74
75 if ( C4::Context->preference('IndependentBranches') ) {
76     undef $all_branches;
77 } else {
78     $template->param( all_branches_link => '/cgi-bin/koha/circ/waitingreserves.pl' . '?allbranches=1' )
79       unless $all_branches;
80 }
81 $template->param( all_branches => 1 ) if $all_branches;
82
83 my (@reserve_loop, @over_loop);
84 # FIXME - Is priority => 0 useful? If yes it must be moved to waiting, otherwise we need to remove it from here.
85 my $holds = Koha::Holds->waiting->search({ priority => 0, ( $all_branches ? () : ( branchcode => $default ) ) }, { order_by => ['waitingdate'] });
86
87 # get reserves for the branch we are logged into, or for all branches
88
89 my $today = Date_to_Days(&Today);
90
91 while ( my $hold = $holds->next ) {
92     next unless ($hold->waitingdate && $hold->waitingdate ne '0000-00-00');
93
94     my ( $expire_year, $expire_month, $expire_day ) = split (/-/, $hold->expirationdate);
95     my $calcDate = Date_to_Days( $expire_year, $expire_month, $expire_day );
96
97     if ($today > $calcDate) {
98         if ($cancelall) {
99             my $res = cancel( $hold->item->itemnumber, $hold->borrowernumber, $hold->item->holdingbranch, $hold->item->homebranch, !$transfer_when_cancel_all );
100             push @cancel_result, $res if $res;
101             next;
102         } else {
103             push @over_loop, $hold;
104         }
105     }else{
106         push @reserve_loop, $hold;
107     }
108     
109 }
110
111 $template->param(cancel_result => \@cancel_result) if @cancel_result;
112
113 $template->param(
114     reserveloop => \@reserve_loop,
115     reservecount => scalar @reserve_loop,
116     overloop    => \@over_loop,
117     overcount   => scalar @over_loop,
118     show_date   => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
119     tab => $tab,
120 );
121
122 # Checking if there is a Fast Cataloging Framework
123 $template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
124
125 if ($item && $tab eq 'holdsover' && !@cancel_result) {
126     print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl#holdsover");
127 } elsif ($cancelall) {
128     print $input->redirect("/cgi-bin/koha/circ/waitingreserves.pl");
129 } else {
130     output_html_with_http_headers $input, $cookie, $template->output;
131 }
132
133 exit;
134
135 sub cancel {
136     my ($item, $borrowernumber, $fbr, $tbr, $skip_transfers ) = @_;
137
138     my $transfer = $fbr ne $tbr; # XXX && !$nextreservinfo;
139
140     return if $transfer && $skip_transfers;
141
142     my ( $messages, $nextreservinfo ) = ModReserveCancelAll( $item, $borrowernumber );
143
144 #       if the document is not in his homebranch location and there is not reservation after, we transfer it
145     if ($transfer && !$nextreservinfo) {
146         ModItemTransfer( $item, $fbr, $tbr, 'CancelReserve' );
147     }
148     # if we have a result
149     if ($nextreservinfo) {
150         my %res;
151         my $patron = Koha::Patrons->find( $nextreservinfo );
152         my $title = Koha::Items->find( $item )->biblio->title;
153         if ( $messages->{'transfert'} ) {
154             $res{messagetransfert} = $messages->{'transfert'};
155             $res{branchcode}       = $messages->{'transfert'};
156         }
157
158         $res{message}             = 1;
159         $res{nextreservnumber}    = $nextreservinfo;
160         $res{nextreservsurname}   = $patron->surname;
161         $res{nextreservfirstname} = $patron->firstname;
162         $res{nextreservitem}      = $item;
163         $res{nextreservtitle}     = $title;
164         $res{waiting}             = $messages->{'waiting'} ? 1 : 0;
165
166         return \%res;
167     }
168
169     return;
170 }