Bug 19493: Remove few warnings from circulation.pl
[koha.git] / circ / reserveratios.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
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 strict;
22 use warnings;
23
24 use CGI qw ( -utf8 );
25 use Date::Calc qw/Today Add_Delta_YM/;
26
27 use C4::Context;
28 use C4::Output;
29 use C4::Auth;
30 use C4::Debug;
31 use C4::Biblio qw/GetMarcBiblio GetRecordValue GetFrameworkCode/;
32 use C4::Acquisition qw/GetOrdersByBiblionumber/;
33 use Koha::DateUtils;
34 use Koha::Acquisition::Baskets;
35
36 my $input = new CGI;
37 my $startdate       = $input->param('from');
38 my $enddate         = $input->param('to');
39 my $ratio           = $input->param('ratio');
40 my $include_ordered = $input->param('include_ordered');
41
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43     {
44         template_name   => "circ/reserveratios.tt",
45         query           => $input,
46         type            => "intranet",
47         authnotrequired => 0,
48         flagsrequired   => { circulate => "circulate_remaining_permissions" },
49         debug           => 1,
50     }
51 );
52
53 my $booksellerid = $input->param('booksellerid') // '';
54 my $basketno = $input->param('basketno') // '';
55 if ($booksellerid && $basketno) {
56      $template->param( booksellerid => $booksellerid, basketno => $basketno );
57 }
58
59 my $effective_create_items = q{};
60 if ( $basketno ){
61     my $basket = Koha::Acquisition::Baskets->find( $basketno );
62     if ($basket){
63         $effective_create_items = $basket->effective_create_items;
64     } else {
65         $effective_create_items = C4::Context->preference('AcqCreateItem');
66     }
67 }
68
69 $startdate = eval { dt_from_string( $startdate ) } if $startdate;
70 $enddate = eval { dt_from_string( $enddate ) } if $enddate;
71
72 my $todaysdate = dt_from_string;
73
74 #    A default of the prior years's holds is a reasonable way to pull holds
75 $enddate = $todaysdate unless $enddate;
76 $startdate = $todaysdate->clone->subtract( years => 1 ) unless $startdate;
77
78 if (!defined($ratio)) {
79     $ratio = 3;
80 }
81 # Force to be a number
82 $ratio += 0;
83 if ($ratio <= 0) {
84     $ratio = 1; # prevent division by zero
85 }
86
87 my $dbh    = C4::Context->dbh;
88 my $sqldatewhere = "";
89 $debug and warn output_pref({ dt => $startdate, dateformat => 'iso', dateonly => 1 }) . "\n" . output_pref({ dt => $enddate, dateformat => 'iso', dateonly => 1 });
90 my @query_params = ();
91
92 $sqldatewhere .= " AND reservedate >= ?";
93 push @query_params, output_pref({ dt => $startdate, dateformat => 'iso' }) ;
94 $sqldatewhere .= " AND reservedate <= ?";
95 push @query_params, output_pref({ dt => $enddate, dateformat => 'iso' });
96
97 my $include_aqorders_qty =
98   $effective_create_items eq 'receiving'
99   ? '+ COALESCE(aqorders.quantity, 0) - COALESCE(aqorders.quantityreceived, 0)'
100   : q{};
101
102 my $include_aqorders_qty_join =
103   $effective_create_items eq 'receiving'
104   ? 'LEFT JOIN aqorders ON reserves.biblionumber=aqorders.biblionumber'
105   : q{};
106
107 my $nfl_comparison = $include_ordered ? '<=' : '=';
108 my $strsth =
109 "SELECT reservedate,
110         reserves.borrowernumber as borrowernumber,
111         reserves.biblionumber,
112         reserves.branchcode as branch,
113         items.holdingbranch,
114         items.itemcallnumber,
115         items.itemnumber,
116         GROUP_CONCAT(DISTINCT items.itemcallnumber 
117             ORDER BY items.itemnumber SEPARATOR '|') as listcall,
118         GROUP_CONCAT(DISTINCT homebranch
119             ORDER BY items.itemnumber SEPARATOR '|') as homebranch_list,
120         GROUP_CONCAT(DISTINCT holdingbranch 
121             ORDER BY items.itemnumber SEPARATOR '|') as holdingbranch_list,
122         GROUP_CONCAT(DISTINCT items.location 
123             ORDER BY items.itemnumber SEPARATOR '|') as l_location,
124         GROUP_CONCAT(DISTINCT items.itype 
125             ORDER BY items.itemnumber SEPARATOR '|') as l_itype,
126
127         reserves.found,
128         biblio.title,
129         biblio.author,
130         count(DISTINCT reserves.borrowernumber) as reservecount, 
131         count(DISTINCT items.itemnumber) $include_aqorders_qty as itemcount
132  FROM  reserves
133  LEFT JOIN items ON items.biblionumber=reserves.biblionumber 
134  LEFT JOIN biblio ON reserves.biblionumber=biblio.biblionumber
135  $include_aqorders_qty_join
136  WHERE
137  notforloan $nfl_comparison 0 AND damaged = 0 AND itemlost = 0 AND withdrawn = 0
138  $sqldatewhere
139 ";
140
141 if (C4::Context->preference('IndependentBranches')){
142     $strsth .= " AND items.holdingbranch=? ";
143     push @query_params, C4::Context->userenv->{'branch'};
144 }
145
146 $strsth .= " GROUP BY reserves.biblionumber ORDER BY reservecount DESC";
147
148 $template->param(sql => $strsth);
149 my $sth = $dbh->prepare($strsth);
150 $sth->execute(@query_params);
151
152 my $ratio_atleast1 = ($ratio >= 1) ? 1 : 0;
153 my @reservedata;
154 while ( my $data = $sth->fetchrow_hashref ) {
155     my $thisratio = $data->{reservecount} / $data->{itemcount};
156     my $ratiocalc = ($thisratio / $ratio);
157     ($thisratio / $ratio) >= 1 or next;  # TODO: tighter targeting -- get ratio limit into SQL using HAVING clause
158     my $record = GetMarcBiblio({ biblionumber => $data->{biblionumber} });
159     $data->{subtitle} = GetRecordValue('subtitle', $record, GetFrameworkCode($data->{biblionumber}));
160     push(
161         @reservedata,
162         {
163             reservedate        => $data->{reservedate},
164             priority           => $data->{priority},
165             name               => $data->{borrower},
166             title              => $data->{title},
167             subtitle           => $data->{subtitle},
168             author             => $data->{author},
169             itemnum            => $data->{itemnumber},
170             biblionumber       => $data->{biblionumber},
171             holdingbranch      => $data->{holdingbranch},
172             homebranch_list    => [split('\|', $data->{homebranch_list})],
173             holdingbranch_list => [split('\|', $data->{holdingbranch_list})],
174             branch             => $data->{branch},
175             itemcallnumber     => $data->{itemcallnumber},
176             location           => [split('\|', $data->{l_location})],
177             itype              => [split('\|', $data->{l_itype})],
178             reservecount       => $data->{reservecount},
179             itemcount          => $data->{itemcount},
180             ratiocalc          => sprintf( "%.0d", $ratio_atleast1 ? ( $thisratio / $ratio ) : $thisratio ),
181             thisratio => sprintf( "%.2f", $thisratio ),
182             thisratio_atleast1 => ( $thisratio >= 1 ) ? 1 : 0,
183             listcall           => [split('\|', $data->{listcall})]
184         }
185     );
186 }
187
188 for my $rd ( @reservedata ) {
189     next unless $rd->{biblionumber};
190     $rd->{pendingorders} = CountPendingOrdersByBiblionumber( $rd->{biblionumber} );
191 }
192
193 $template->param(
194     ratio_atleast1  => $ratio_atleast1,
195     todaysdate      => $todaysdate,
196     from            => $startdate,
197     to              => $enddate,
198     ratio           => $ratio,
199     include_ordered => $include_ordered,
200     reserveloop     => \@reservedata,
201 );
202
203 output_html_with_http_headers $input, $cookie, $template->output;
204
205 sub CountPendingOrdersByBiblionumber {
206     my $biblionumber = shift;
207     my @orders = GetOrdersByBiblionumber( $biblionumber );
208     my $cnt = 0;
209     if (scalar(@orders)) {
210         for my $order ( @orders ) {
211             next if $order->{datecancellationprinted};
212             my $onum = $order->{quantity} // 0;
213             my $rnum = $order->{quantityreceived} // 0;
214             next if $rnum >= $onum;
215             $cnt += ($onum - $rnum);
216         }
217     }
218     return $cnt;
219 }