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