Merge branch 'bug_7368' into 3.14-master
[koha.git] / C4 / HoldsQueue.pm
1 package C4::HoldsQueue;
2
3 # Copyright 2011 Catalyst IT
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 # FIXME: expand perldoc, explain intended logic
21
22 use strict;
23 use warnings;
24
25 use C4::Context;
26 use C4::Search;
27 use C4::Items;
28 use C4::Branch;
29 use C4::Circulation;
30 use C4::Members;
31 use C4::Biblio;
32 use C4::Dates qw/format_date/;
33
34 use List::Util qw(shuffle);
35 use Data::Dumper;
36
37 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
38 BEGIN {
39     $VERSION = 3.03;
40     require Exporter;
41     @ISA = qw(Exporter);
42     @EXPORT_OK = qw(
43         &CreateQueue
44         &GetHoldsQueueItems
45
46         &TransportCostMatrix
47         &UpdateTransportCostMatrix
48      );
49 }
50
51
52 =head1 FUNCTIONS
53
54 =head2 TransportCostMatrix
55
56   TransportCostMatrix();
57
58 Returns Transport Cost Matrix as a hashref <to branch code> => <from branch code> => cost
59
60 =cut
61
62 sub TransportCostMatrix {
63     my $dbh   = C4::Context->dbh;
64     my $transport_costs = $dbh->selectall_arrayref("SELECT * FROM transport_cost",{ Slice => {} });
65
66     my %transport_cost_matrix;
67     foreach (@$transport_costs) {
68         my $from = $_->{frombranch};
69         my $to = $_->{tobranch};
70         my $cost = $_->{cost};
71         my $disabled = $_->{disable_transfer};
72         $transport_cost_matrix{$to}{$from} = { cost => $cost, disable_transfer => $disabled };
73     }
74     return \%transport_cost_matrix;
75 }
76
77 =head2 UpdateTransportCostMatrix
78
79   UpdateTransportCostMatrix($records);
80
81 Updates full Transport Cost Matrix table. $records is an arrayref of records.
82 Records: { frombranch => <code>, tobranch => <code>, cost => <figure>, disable_transfer => <0,1> }
83
84 =cut
85
86 sub UpdateTransportCostMatrix {
87     my ($records) = @_;
88     my $dbh   = C4::Context->dbh;
89
90     my $sth = $dbh->prepare("INSERT INTO transport_cost (frombranch, tobranch, cost, disable_transfer) VALUES (?, ?, ?, ?)");
91
92     $dbh->do("TRUNCATE TABLE transport_cost");
93     foreach (@$records) {
94         my $cost = $_->{cost};
95         my $from = $_->{frombranch};
96         my $to = $_->{tobranch};
97         if ($_->{disable_transfer}) {
98             $cost ||= 0;
99         }
100         elsif ( !defined ($cost) || ($cost !~ m/(0|[1-9][0-9]*)(\.[0-9]*)?/o) ) {
101             warn  "Invalid $from -> $to cost $cost - must be a number >= 0, disablig";
102             $cost = 0;
103             $_->{disable_transfer} = 1;
104         }
105         $sth->execute( $from, $to, $cost, $_->{disable_transfer} ? 1 : 0 );
106     }
107 }
108
109 =head2 GetHoldsQueueItems
110
111   GetHoldsQueueItems($branch);
112
113 Returns hold queue for a holding branch. If branch is omitted, then whole queue is returned
114
115 =cut
116
117 sub GetHoldsQueueItems {
118     my ($branchlimit) = @_;
119     my $dbh   = C4::Context->dbh;
120
121     my @bind_params = ();
122     my $query = q/SELECT tmp_holdsqueue.*, biblio.author, items.ccode, items.location, items.enumchron, items.cn_sort, biblioitems.publishercode,biblio.copyrightdate,biblioitems.publicationyear,biblioitems.pages,biblioitems.size,biblioitems.publicationyear,biblioitems.isbn,items.copynumber
123                   FROM tmp_holdsqueue
124                        JOIN biblio      USING (biblionumber)
125                   LEFT JOIN biblioitems USING (biblionumber)
126                   LEFT JOIN items       USING (  itemnumber)
127                 /;
128     if ($branchlimit) {
129         $query .=" WHERE tmp_holdsqueue.holdingbranch = ?";
130         push @bind_params, $branchlimit;
131     }
132     $query .= " ORDER BY ccode, location, cn_sort, author, title, pickbranch, reservedate";
133     my $sth = $dbh->prepare($query);
134     $sth->execute(@bind_params);
135     my $items = [];
136     while ( my $row = $sth->fetchrow_hashref ){
137         $row->{reservedate} = format_date($row->{reservedate});
138         my $record = GetMarcBiblio($row->{biblionumber});
139         if ($record){
140             $row->{subtitle} = GetRecordValue('subtitle',$record,'')->[0]->{subfield};
141             $row->{parts} = GetRecordValue('parts',$record,'')->[0]->{subfield};
142             $row->{numbers} = GetRecordValue('numbers',$record,'')->[0]->{subfield};
143         }
144         push @$items, $row;
145     }
146     return $items;
147 }
148
149 =head2 CreateQueue
150
151   CreateQueue();
152
153 Top level function that turns reserves into tmp_holdsqueue and hold_fill_targets.
154
155 =cut
156
157 sub CreateQueue {
158     my $dbh   = C4::Context->dbh;
159
160     $dbh->do("DELETE FROM tmp_holdsqueue");  # clear the old table for new info
161     $dbh->do("DELETE FROM hold_fill_targets");
162
163     my $total_bibs            = 0;
164     my $total_requests        = 0;
165     my $total_available_items = 0;
166     my $num_items_mapped      = 0;
167
168     my $branches_to_use;
169     my $transport_cost_matrix;
170     my $use_transport_cost_matrix = C4::Context->preference("UseTransportCostMatrix");
171     if ($use_transport_cost_matrix) {
172         $transport_cost_matrix = TransportCostMatrix();
173         unless (keys %$transport_cost_matrix) {
174             warn "UseTransportCostMatrix set to yes, but matrix not populated";
175             undef $transport_cost_matrix;
176         }
177     }
178     unless ($transport_cost_matrix) {
179         $branches_to_use = load_branches_to_pull_from();
180     }
181
182     my $bibs_with_pending_requests = GetBibsWithPendingHoldRequests();
183
184     foreach my $biblionumber (@$bibs_with_pending_requests) {
185         $total_bibs++;
186         my $hold_requests   = GetPendingHoldRequestsForBib($biblionumber);
187         my $available_items = GetItemsAvailableToFillHoldRequestsForBib($biblionumber, $branches_to_use);
188         $total_requests        += scalar(@$hold_requests);
189         $total_available_items += scalar(@$available_items);
190
191         my $item_map = MapItemsToHoldRequests($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix);
192         $item_map  or next;
193         my $item_map_size = scalar(keys %$item_map)
194           or next;
195
196         $num_items_mapped += $item_map_size;
197         CreatePicklistFromItemMap($item_map);
198         AddToHoldTargetMap($item_map);
199         if (($item_map_size < scalar(@$hold_requests  )) and
200             ($item_map_size < scalar(@$available_items))) {
201             # DOUBLE CHECK, but this is probably OK - unfilled item-level requests
202             # FIXME
203             #warn "unfilled requests for $biblionumber";
204             #warn Dumper($hold_requests), Dumper($available_items), Dumper($item_map);
205         }
206     }
207 }
208
209 =head2 GetBibsWithPendingHoldRequests
210
211   my $biblionumber_aref = GetBibsWithPendingHoldRequests();
212
213 Return an arrayref of the biblionumbers of all bibs
214 that have one or more unfilled hold requests.
215
216 =cut
217
218 sub GetBibsWithPendingHoldRequests {
219     my $dbh = C4::Context->dbh;
220
221     my $bib_query = "SELECT DISTINCT biblionumber
222                      FROM reserves
223                      WHERE found IS NULL
224                      AND priority > 0
225                      AND reservedate <= CURRENT_DATE()";
226     my $sth = $dbh->prepare($bib_query);
227
228     $sth->execute();
229     my $biblionumbers = $sth->fetchall_arrayref();
230
231     return [ map { $_->[0] } @$biblionumbers ];
232 }
233
234 =head2 GetPendingHoldRequestsForBib
235
236   my $requests = GetPendingHoldRequestsForBib($biblionumber);
237
238 Returns an arrayref of hashrefs to pending, unfilled hold requests
239 on the bib identified by $biblionumber.  The following keys
240 are present in each hashref:
241
242     biblionumber
243     borrowernumber
244     itemnumber
245     priority
246     branchcode
247     reservedate
248     reservenotes
249     borrowerbranch
250
251 The arrayref is sorted in order of increasing priority.
252
253 =cut
254
255 sub GetPendingHoldRequestsForBib {
256     my $biblionumber = shift;
257
258     my $dbh = C4::Context->dbh;
259
260     my $request_query = "SELECT biblionumber, borrowernumber, itemnumber, priority, reserves.branchcode,
261                                 reservedate, reservenotes, borrowers.branchcode AS borrowerbranch
262                          FROM reserves
263                          JOIN borrowers USING (borrowernumber)
264                          WHERE biblionumber = ?
265                          AND found IS NULL
266                          AND priority > 0
267                          AND reservedate <= CURRENT_DATE()
268                          ORDER BY priority";
269     my $sth = $dbh->prepare($request_query);
270     $sth->execute($biblionumber);
271
272     my $requests = $sth->fetchall_arrayref({});
273     return $requests;
274
275 }
276
277 =head2 GetItemsAvailableToFillHoldRequestsForBib
278
279   my $available_items = GetItemsAvailableToFillHoldRequestsForBib($biblionumber, $branches_ar);
280
281 Returns an arrayref of items available to fill hold requests
282 for the bib identified by C<$biblionumber>.  An item is available
283 to fill a hold request if and only if:
284
285     * it is not on loan
286     * it is not withdrawn
287     * it is not marked notforloan
288     * it is not currently in transit
289     * it is not lost
290     * it is not sitting on the hold shelf
291
292 =cut
293
294 sub GetItemsAvailableToFillHoldRequestsForBib {
295     my ($biblionumber, $branches_to_use) = @_;
296
297     my $dbh = C4::Context->dbh;
298     my $items_query = "SELECT itemnumber, homebranch, holdingbranch, itemtypes.itemtype AS itype
299                        FROM items ";
300
301     if (C4::Context->preference('item-level_itypes')) {
302         $items_query .=   "LEFT JOIN itemtypes ON (itemtypes.itemtype = items.itype) ";
303     } else {
304         $items_query .=   "JOIN biblioitems USING (biblioitemnumber)
305                            LEFT JOIN itemtypes USING (itemtype) ";
306     }
307     $items_query .=   "WHERE items.notforloan = 0
308                        AND holdingbranch IS NOT NULL
309                        AND itemlost = 0
310                        AND wthdrawn = 0";
311     $items_query .= "  AND damaged = 0" unless C4::Context->preference('AllowHoldsOnDamagedItems');
312     $items_query .= "  AND items.onloan IS NULL
313                        AND (itemtypes.notforloan IS NULL OR itemtypes.notforloan = 0)
314                        AND itemnumber NOT IN (
315                            SELECT itemnumber
316                            FROM reserves
317                            WHERE biblionumber = ?
318                            AND itemnumber IS NOT NULL
319                            AND (found IS NOT NULL OR priority = 0)
320                         )
321                        AND items.biblionumber = ?";
322     $items_query .=  " AND damaged = 0 "
323       unless C4::Context->preference('AllowHoldsOnDamagedItems');
324
325     my @params = ($biblionumber, $biblionumber);
326     if ($branches_to_use && @$branches_to_use) {
327         $items_query .= " AND holdingbranch IN (" . join (",", map { "?" } @$branches_to_use) . ")";
328         push @params, @$branches_to_use;
329     }
330     my $sth = $dbh->prepare($items_query);
331     $sth->execute(@params);
332
333     my $itm = $sth->fetchall_arrayref({});
334     my @items = grep { ! scalar GetTransfers($_->{itemnumber}) } @$itm;
335     return [ grep {
336         my $rule = GetBranchItemRule($_->{homebranch}, $_->{itype});
337         $_->{holdallowed} = $rule->{holdallowed} != 0
338     } @items ];
339 }
340
341 =head2 MapItemsToHoldRequests
342
343   MapItemsToHoldRequests($hold_requests, $available_items, $branches, $transport_cost_matrix)
344
345 =cut
346
347 sub MapItemsToHoldRequests {
348     my ($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix) = @_;
349
350     # handle trival cases
351     return unless scalar(@$hold_requests) > 0;
352     return unless scalar(@$available_items) > 0;
353
354     my $automatic_return = C4::Context->preference("AutomaticItemReturn");
355
356     # identify item-level requests
357     my %specific_items_requested = map { $_->{itemnumber} => 1 }
358                                    grep { defined($_->{itemnumber}) }
359                                    @$hold_requests;
360
361     # group available items by itemnumber
362     my %items_by_itemnumber = map { $_->{itemnumber} => $_ } @$available_items;
363
364     # items already allocated
365     my %allocated_items = ();
366
367     # map of items to hold requests
368     my %item_map = ();
369
370     # figure out which item-level requests can be filled
371     my $num_items_remaining = scalar(@$available_items);
372     foreach my $request (@$hold_requests) {
373         last if $num_items_remaining == 0;
374
375         # is this an item-level request?
376         if (defined($request->{itemnumber})) {
377             # fill it if possible; if not skip it
378             if (exists $items_by_itemnumber{$request->{itemnumber}} and
379                 not exists $allocated_items{$request->{itemnumber}}) {
380                 $item_map{$request->{itemnumber}} = {
381                     borrowernumber => $request->{borrowernumber},
382                     biblionumber => $request->{biblionumber},
383                     holdingbranch =>  $items_by_itemnumber{$request->{itemnumber}}->{holdingbranch},
384                     pickup_branch => $request->{branchcode} || $request->{borrowerbranch},
385                     item_level => 1,
386                     reservedate => $request->{reservedate},
387                     reservenotes => $request->{reservenotes},
388                 };
389                 $allocated_items{$request->{itemnumber}}++;
390                 $num_items_remaining--;
391             }
392         } else {
393             # it's title-level request that will take up one item
394             $num_items_remaining--;
395         }
396     }
397
398     # group available items by branch
399     my %items_by_branch = ();
400     foreach my $item (@$available_items) {
401         next unless $item->{holdallowed};
402
403         push @{ $items_by_branch{ $item->{holdingbranch} } }, $item
404           unless exists $allocated_items{ $item->{itemnumber} };
405     }
406     return unless keys %items_by_branch;
407
408     # now handle the title-level requests
409     $num_items_remaining = scalar(@$available_items) - scalar(keys %allocated_items);
410     my $pull_branches;
411     foreach my $request (@$hold_requests) {
412         last if $num_items_remaining == 0;
413         next if defined($request->{itemnumber}); # already handled these
414
415         # look for local match first
416         my $pickup_branch = $request->{branchcode} || $request->{borrowerbranch};
417         my ($itemnumber, $holdingbranch);
418
419         my $holding_branch_items = $automatic_return ? undef : $items_by_branch{$pickup_branch};
420         if ( $holding_branch_items ) {
421             foreach my $item (@$holding_branch_items) {
422                 if ( $request->{borrowerbranch} eq $item->{homebranch} ) {
423                     $itemnumber = $item->{itemnumber};
424                     last;
425                 }
426             }
427             $holdingbranch = $pickup_branch;
428             $itemnumber ||= $holding_branch_items->[0]->{itemnumber};
429         }
430         elsif ($transport_cost_matrix) {
431             $pull_branches = [keys %items_by_branch];
432             $holdingbranch = least_cost_branch( $pickup_branch, $pull_branches, $transport_cost_matrix );
433             if ( $holdingbranch ) {
434
435                 my $holding_branch_items = $items_by_branch{$holdingbranch};
436                 foreach my $item (@$holding_branch_items) {
437                     next if $request->{borrowerbranch} ne $item->{homebranch};
438
439                     $itemnumber = $item->{itemnumber};
440                     last;
441                 }
442                 $itemnumber ||= $holding_branch_items->[0]->{itemnumber};
443             }
444             else {
445                 warn "No transport costs for $pickup_branch";
446             }
447         }
448
449         unless ($itemnumber) {
450             # not found yet, fall back to basics
451             if ($branches_to_use) {
452                 $pull_branches = $branches_to_use;
453             } else {
454                 $pull_branches = [keys %items_by_branch];
455             }
456             PULL_BRANCHES:
457             foreach my $branch (@$pull_branches) {
458                 my $holding_branch_items = $items_by_branch{$branch}
459                   or next;
460
461                 $holdingbranch ||= $branch;
462                 foreach my $item (@$holding_branch_items) {
463                     next if $pickup_branch ne $item->{homebranch};
464
465                     $itemnumber = $item->{itemnumber};
466                     $holdingbranch = $branch;
467                     last PULL_BRANCHES;
468                 }
469             }
470             $itemnumber ||= $items_by_branch{$holdingbranch}->[0]->{itemnumber}
471               if $holdingbranch;
472         }
473
474         if ($itemnumber) {
475             my $holding_branch_items = $items_by_branch{$holdingbranch}
476               or die "Have $itemnumber, $holdingbranch, but no items!";
477             @$holding_branch_items = grep { $_->{itemnumber} != $itemnumber } @$holding_branch_items;
478             delete $items_by_branch{$holdingbranch} unless @$holding_branch_items;
479
480             $item_map{$itemnumber} = {
481                 borrowernumber => $request->{borrowernumber},
482                 biblionumber => $request->{biblionumber},
483                 holdingbranch => $holdingbranch,
484                 pickup_branch => $pickup_branch,
485                 item_level => 0,
486                 reservedate => $request->{reservedate},
487                 reservenotes => $request->{reservenotes},
488             };
489             $num_items_remaining--;
490         }
491     }
492     return \%item_map;
493 }
494
495 =head2 CreatePickListFromItemMap
496
497 =cut
498
499 sub CreatePicklistFromItemMap {
500     my $item_map = shift;
501
502     my $dbh = C4::Context->dbh;
503
504     my $sth_load=$dbh->prepare("
505         INSERT INTO tmp_holdsqueue (biblionumber,itemnumber,barcode,surname,firstname,phone,borrowernumber,
506                                     cardnumber,reservedate,title, itemcallnumber,
507                                     holdingbranch,pickbranch,notes, item_level_request)
508         VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
509     ");
510
511     foreach my $itemnumber  (sort keys %$item_map) {
512         my $mapped_item = $item_map->{$itemnumber};
513         my $biblionumber = $mapped_item->{biblionumber};
514         my $borrowernumber = $mapped_item->{borrowernumber};
515         my $pickbranch = $mapped_item->{pickup_branch};
516         my $holdingbranch = $mapped_item->{holdingbranch};
517         my $reservedate = $mapped_item->{reservedate};
518         my $reservenotes = $mapped_item->{reservenotes};
519         my $item_level = $mapped_item->{item_level};
520
521         my $item = GetItem($itemnumber);
522         my $barcode = $item->{barcode};
523         my $itemcallnumber = $item->{itemcallnumber};
524
525         my $borrower = GetMember('borrowernumber'=>$borrowernumber);
526         my $cardnumber = $borrower->{'cardnumber'};
527         my $surname = $borrower->{'surname'};
528         my $firstname = $borrower->{'firstname'};
529         my $phone = $borrower->{'phone'};
530
531         my $bib = GetBiblioData($biblionumber);
532         my $title = $bib->{title};
533
534         $sth_load->execute($biblionumber, $itemnumber, $barcode, $surname, $firstname, $phone, $borrowernumber,
535                            $cardnumber, $reservedate, $title, $itemcallnumber,
536                            $holdingbranch, $pickbranch, $reservenotes, $item_level);
537     }
538 }
539
540 =head2 AddToHoldTargetMap
541
542 =cut
543
544 sub AddToHoldTargetMap {
545     my $item_map = shift;
546
547     my $dbh = C4::Context->dbh;
548
549     my $insert_sql = q(
550         INSERT INTO hold_fill_targets (borrowernumber, biblionumber, itemnumber, source_branchcode, item_level_request)
551                                VALUES (?, ?, ?, ?, ?)
552     );
553     my $sth_insert = $dbh->prepare($insert_sql);
554
555     foreach my $itemnumber (keys %$item_map) {
556         my $mapped_item = $item_map->{$itemnumber};
557         $sth_insert->execute($mapped_item->{borrowernumber}, $mapped_item->{biblionumber}, $itemnumber,
558                              $mapped_item->{holdingbranch}, $mapped_item->{item_level});
559     }
560 }
561
562 # Helper functions, not part of any interface
563
564 sub _trim {
565     return $_[0] unless $_[0];
566     $_[0] =~ s/^\s+//;
567     $_[0] =~ s/\s+$//;
568     $_[0];
569 }
570
571 sub load_branches_to_pull_from {
572     my $static_branch_list = C4::Context->preference("StaticHoldsQueueWeight")
573       or return;
574
575     my @branches_to_use = map _trim($_), split /,/, $static_branch_list;
576
577     @branches_to_use = shuffle(@branches_to_use) if  C4::Context->preference("RandomizeHoldsQueueWeight");
578
579     return \@branches_to_use;
580 }
581
582 sub least_cost_branch {
583
584     #$from - arrayref
585     my ($to, $from, $transport_cost_matrix) = @_;
586
587 # Nothing really spectacular: supply to branch, a list of potential from branches
588 # and find the minimum from - to value from the transport_cost_matrix
589     return $from->[0] if @$from == 1;
590
591     my ($least_cost, @branch);
592     foreach (@$from) {
593         my $cell = $transport_cost_matrix->{$to}{$_};
594         next if $cell->{disable_transfer};
595
596         my $cost = $cell->{cost};
597         next unless defined $cost; # XXX should this be reported?
598
599         unless (defined $least_cost) {
600             $least_cost = $cost;
601             push @branch, $_;
602             next;
603         }
604
605         next if $cost > $least_cost;
606
607         if ($cost == $least_cost) {
608             push @branch, $_;
609             next;
610         }
611
612         @branch = ($_);
613         $least_cost = $cost;
614     }
615
616     return $branch[0];
617
618     # XXX return a random @branch with minimum cost instead of the first one;
619     # return $branch[0] if @branch == 1;
620 }
621
622
623 1;