1 package C4
::HoldsQueue
;
3 # Copyright 2011 Catalyst IT
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 # FIXME: expand perldoc, explain intended logic
35 use List
::Util
qw(shuffle);
36 use List
::MoreUtils
qw(any);
39 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
48 &UpdateTransportCostMatrix
55 =head2 TransportCostMatrix
57 TransportCostMatrix();
59 Returns Transport Cost Matrix as a hashref <to branch code> => <from branch code> => cost
63 sub TransportCostMatrix
{
64 my $dbh = C4
::Context
->dbh;
65 my $transport_costs = $dbh->selectall_arrayref("SELECT * FROM transport_cost",{ Slice
=> {} });
67 my $today = dt_from_string
();
69 my %transport_cost_matrix;
70 foreach (@
$transport_costs) {
71 my $from = $_->{frombranch
};
72 my $to = $_->{tobranch
};
73 my $cost = $_->{cost
};
74 my $disabled = $_->{disable_transfer
};
75 $transport_cost_matrix{$to}{$from} = {
77 disable_transfer
=> $disabled
80 if ( C4
::Context
->preference("HoldsQueueSkipClosed") ) {
81 $calendars->{$from} ||= Koha
::Calendar
->new( branchcode
=> $from );
82 $transport_cost_matrix{$to}{$from}{disable_transfer
} ||=
83 $calendars->{$from}->is_holiday( $today );
87 return \
%transport_cost_matrix;
90 =head2 UpdateTransportCostMatrix
92 UpdateTransportCostMatrix($records);
94 Updates full Transport Cost Matrix table. $records is an arrayref of records.
95 Records: { frombranch => <code>, tobranch => <code>, cost => <figure>, disable_transfer => <0,1> }
99 sub UpdateTransportCostMatrix
{
101 my $dbh = C4
::Context
->dbh;
103 my $sth = $dbh->prepare("INSERT INTO transport_cost (frombranch, tobranch, cost, disable_transfer) VALUES (?, ?, ?, ?)");
105 $dbh->do("DELETE FROM transport_cost");
106 foreach (@
$records) {
107 my $cost = $_->{cost
};
108 my $from = $_->{frombranch
};
109 my $to = $_->{tobranch
};
110 if ($_->{disable_transfer
}) {
113 elsif ( !defined ($cost) || ($cost !~ m/(0|[1-9][0-9]*)(\.[0-9]*)?/o) ) {
114 warn "Invalid $from -> $to cost $cost - must be a number >= 0, disabling";
116 $_->{disable_transfer
} = 1;
118 $sth->execute( $from, $to, $cost, $_->{disable_transfer
} ?
1 : 0 );
122 =head2 GetHoldsQueueItems
124 GetHoldsQueueItems($branch);
126 Returns hold queue for a holding branch. If branch is omitted, then whole queue is returned
130 sub GetHoldsQueueItems
{
131 my ($branchlimit) = @_;
132 my $dbh = C4
::Context
->dbh;
134 my @bind_params = ();
135 my $query = q
/SELECT tmp_holdsqueue
.*, biblio
.author
, items
.ccode
, items
.itype
, biblioitems
.itemtype
, items
.location
,
136 items
.enumchron
, items
.cn_sort
, biblioitems
.publishercode
,
137 biblio
.copyrightdate
, biblio
.subtitle
, biblio
.medium
,
138 biblio
.part_number
, biblio
.part_name
,
139 biblioitems
.publicationyear
, biblioitems
.pages
, biblioitems
.size
,
140 biblioitems
.isbn
, biblioitems
.editionstatement
, items
.copynumber
142 JOIN biblio USING
(biblionumber
)
143 LEFT JOIN biblioitems USING
(biblionumber
)
144 LEFT JOIN items USING
( itemnumber
)
147 $query .=" WHERE tmp_holdsqueue.holdingbranch = ?";
148 push @bind_params, $branchlimit;
150 $query .= " ORDER BY ccode, location, cn_sort, author, title, pickbranch, reservedate";
151 my $sth = $dbh->prepare($query);
152 $sth->execute(@bind_params);
154 while ( my $row = $sth->fetchrow_hashref ){
155 # return the bib-level or item-level itype per syspref
156 if (!C4
::Context
->preference('item-level_itypes')) {
157 $row->{itype
} = $row->{itemtype
};
159 delete $row->{itemtype
};
170 Top level function that turns reserves into tmp_holdsqueue and hold_fill_targets.
175 my $dbh = C4
::Context
->dbh;
177 $dbh->do("DELETE FROM tmp_holdsqueue"); # clear the old table for new info
178 $dbh->do("DELETE FROM hold_fill_targets");
181 my $total_requests = 0;
182 my $total_available_items = 0;
183 my $num_items_mapped = 0;
186 my $transport_cost_matrix;
187 my $use_transport_cost_matrix = C4
::Context
->preference("UseTransportCostMatrix");
188 if ($use_transport_cost_matrix) {
189 $transport_cost_matrix = TransportCostMatrix
();
190 unless (keys %$transport_cost_matrix) {
191 warn "UseTransportCostMatrix set to yes, but matrix not populated";
192 undef $transport_cost_matrix;
195 unless ($transport_cost_matrix) {
196 $branches_to_use = load_branches_to_pull_from
();
199 my $bibs_with_pending_requests = GetBibsWithPendingHoldRequests
();
201 foreach my $biblionumber (@
$bibs_with_pending_requests) {
203 my $hold_requests = GetPendingHoldRequestsForBib
($biblionumber);
204 my $available_items = GetItemsAvailableToFillHoldRequestsForBib
($biblionumber, $branches_to_use);
205 $total_requests += scalar(@
$hold_requests);
206 $total_available_items += scalar(@
$available_items);
208 my $item_map = MapItemsToHoldRequests
($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix);
210 my $item_map_size = scalar(keys %$item_map)
213 $num_items_mapped += $item_map_size;
214 CreatePicklistFromItemMap
($item_map);
215 AddToHoldTargetMap
($item_map);
216 if (($item_map_size < scalar(@
$hold_requests )) and
217 ($item_map_size < scalar(@
$available_items))) {
218 # DOUBLE CHECK, but this is probably OK - unfilled item-level requests
220 #warn "unfilled requests for $biblionumber";
221 #warn Dumper($hold_requests), Dumper($available_items), Dumper($item_map);
226 =head2 GetBibsWithPendingHoldRequests
228 my $biblionumber_aref = GetBibsWithPendingHoldRequests();
230 Return an arrayref of the biblionumbers of all bibs
231 that have one or more unfilled hold requests.
235 sub GetBibsWithPendingHoldRequests
{
236 my $dbh = C4
::Context
->dbh;
238 my $bib_query = "SELECT DISTINCT biblionumber
242 AND reservedate <= CURRENT_DATE()
245 my $sth = $dbh->prepare($bib_query);
248 my $biblionumbers = $sth->fetchall_arrayref();
250 return [ map { $_->[0] } @
$biblionumbers ];
253 =head2 GetPendingHoldRequestsForBib
255 my $requests = GetPendingHoldRequestsForBib($biblionumber);
257 Returns an arrayref of hashrefs to pending, unfilled hold requests
258 on the bib identified by $biblionumber. The following keys
259 are present in each hashref:
270 The arrayref is sorted in order of increasing priority.
274 sub GetPendingHoldRequestsForBib
{
275 my $biblionumber = shift;
277 my $dbh = C4
::Context
->dbh;
279 my $request_query = "SELECT biblionumber, borrowernumber, itemnumber, priority, reserves.branchcode,
280 reservedate, reservenotes, borrowers.branchcode AS borrowerbranch, itemtype, item_level_hold
282 JOIN borrowers USING (borrowernumber)
283 WHERE biblionumber = ?
286 AND reservedate <= CURRENT_DATE()
289 my $sth = $dbh->prepare($request_query);
290 $sth->execute($biblionumber);
292 my $requests = $sth->fetchall_arrayref({});
297 =head2 GetItemsAvailableToFillHoldRequestsForBib
299 my $available_items = GetItemsAvailableToFillHoldRequestsForBib($biblionumber, $branches_ar);
301 Returns an arrayref of items available to fill hold requests
302 for the bib identified by C<$biblionumber>. An item is available
303 to fill a hold request if and only if:
306 * it is not withdrawn
307 * it is not marked notforloan
308 * it is not currently in transit
310 * it is not sitting on the hold shelf
311 * it is not damaged (unless AllowHoldsOnDamagedItems is on)
315 sub GetItemsAvailableToFillHoldRequestsForBib
{
316 my ($biblionumber, $branches_to_use) = @_;
318 my $dbh = C4
::Context
->dbh;
319 my $items_query = "SELECT itemnumber, homebranch, holdingbranch, itemtypes.itemtype AS itype
322 if (C4
::Context
->preference('item-level_itypes')) {
323 $items_query .= "LEFT JOIN itemtypes ON (itemtypes.itemtype = items.itype) ";
325 $items_query .= "JOIN biblioitems USING (biblioitemnumber)
326 LEFT JOIN itemtypes USING (itemtype) ";
328 $items_query .= "WHERE items.notforloan = 0
329 AND holdingbranch IS NOT NULL
332 $items_query .= " AND damaged = 0" unless C4
::Context
->preference('AllowHoldsOnDamagedItems');
333 $items_query .= " AND items.onloan IS NULL
334 AND (itemtypes.notforloan IS NULL OR itemtypes.notforloan = 0)
335 AND itemnumber NOT IN (
338 WHERE biblionumber = ?
339 AND itemnumber IS NOT NULL
340 AND (found IS NOT NULL OR priority = 0)
342 AND items.biblionumber = ?";
344 my @params = ($biblionumber, $biblionumber);
345 if ($branches_to_use && @
$branches_to_use) {
346 $items_query .= " AND holdingbranch IN (" . join (",", map { "?" } @
$branches_to_use) . ")";
347 push @params, @
$branches_to_use;
349 my $sth = $dbh->prepare($items_query);
350 $sth->execute(@params);
352 my $itm = $sth->fetchall_arrayref({});
353 my @items = grep { ! scalar GetTransfers
($_->{itemnumber
}) } @
$itm;
355 my $rule = GetBranchItemRule
($_->{homebranch
}, $_->{itype
});
356 $_->{holdallowed
} = $rule->{holdallowed
};
357 $_->{hold_fulfillment_policy
} = $rule->{hold_fulfillment_policy
};
361 =head2 MapItemsToHoldRequests
363 MapItemsToHoldRequests($hold_requests, $available_items, $branches, $transport_cost_matrix)
367 sub MapItemsToHoldRequests
{
368 my ($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix) = @_;
370 # handle trival cases
371 return unless scalar(@
$hold_requests) > 0;
372 return unless scalar(@
$available_items) > 0;
374 # identify item-level requests
375 my %specific_items_requested = map { $_->{itemnumber
} => 1 }
376 grep { defined($_->{itemnumber
}) }
379 map { $_->{_object
} = Koha
::Items
->find( $_->{itemnumber
} ) } @
$available_items;
381 map { $libraries->{$_->id} = $_ } Koha
::Libraries
->search();
383 # group available items by itemnumber
384 my %items_by_itemnumber = map { $_->{itemnumber
} => $_ } @
$available_items;
386 # items already allocated
387 my %allocated_items = ();
389 # map of items to hold requests
392 # figure out which item-level requests can be filled
393 my $num_items_remaining = scalar(@
$available_items);
395 # Look for Local Holds Priority matches first
396 if ( C4
::Context
->preference('LocalHoldsPriority') ) {
397 my $LocalHoldsPriorityPatronControl =
398 C4
::Context
->preference('LocalHoldsPriorityPatronControl');
399 my $LocalHoldsPriorityItemControl =
400 C4
::Context
->preference('LocalHoldsPriorityItemControl');
402 foreach my $request (@
$hold_requests) {
403 last if $num_items_remaining == 0;
405 my $local_hold_match;
406 foreach my $item (@
$available_items) {
408 if ( !$item->{holdallowed
} )
409 || ( $item->{holdallowed
} == 1
410 && $item->{homebranch
} ne $request->{borrowerbranch
} );
412 next if $request->{itemnumber
} && $request->{itemnumber
} != $item->{itemnumber
};
414 next unless $item->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
416 my $local_holds_priority_item_branchcode =
417 $item->{$LocalHoldsPriorityItemControl};
419 my $local_holds_priority_patron_branchcode =
420 ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
421 ?
$request->{branchcode
}
422 : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
423 ?
$request->{borrowerbranch
}
427 $local_holds_priority_item_branchcode eq
428 $local_holds_priority_patron_branchcode;
430 if ($local_hold_match) {
431 if ( exists $items_by_itemnumber{ $item->{itemnumber
} }
432 and not exists $allocated_items{ $item->{itemnumber
} }
433 and not $request->{allocated
})
435 $item_map{ $item->{itemnumber
} } = {
436 borrowernumber
=> $request->{borrowernumber
},
437 biblionumber
=> $request->{biblionumber
},
438 holdingbranch
=> $item->{holdingbranch
},
439 pickup_branch
=> $request->{branchcode
}
440 || $request->{borrowerbranch
},
441 item_level
=> $request->{item_level_hold
},
442 reservedate
=> $request->{reservedate
},
443 reservenotes
=> $request->{reservenotes
},
445 $allocated_items{ $item->{itemnumber
} }++;
446 $request->{allocated
} = 1;
447 $num_items_remaining--;
454 foreach my $request (@
$hold_requests) {
455 last if $num_items_remaining == 0;
456 next if $request->{allocated
};
458 # is this an item-level request?
459 if (defined($request->{itemnumber
})) {
460 # fill it if possible; if not skip it
462 exists $items_by_itemnumber{ $request->{itemnumber
} }
463 and not exists $allocated_items{ $request->{itemnumber
} }
464 and ( # Don't fill item level holds that contravene the hold pickup policy at this time
465 ( $items_by_itemnumber{ $request->{itemnumber
} }->{hold_fulfillment_policy
} eq 'any' )
466 || ( $request->{branchcode
} eq $items_by_itemnumber{ $request->{itemnumber
} }->{ $items_by_itemnumber{ $request->{itemnumber
} }->{hold_fulfillment_policy
} } )
467 and ( !$request->{itemtype
} # If hold itemtype is set, item's itemtype must match
468 || $items_by_itemnumber{ $request->{itemnumber
} }->{itype
} eq $request->{itemtype
} )
470 and $items_by_itemnumber{ $request->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } )
475 $item_map{ $request->{itemnumber
} } = {
476 borrowernumber
=> $request->{borrowernumber
},
477 biblionumber
=> $request->{biblionumber
},
478 holdingbranch
=> $items_by_itemnumber{ $request->{itemnumber
} }->{holdingbranch
},
479 pickup_branch
=> $request->{branchcode
} || $request->{borrowerbranch
},
480 item_level
=> $request->{item_level_hold
},
481 reservedate
=> $request->{reservedate
},
482 reservenotes
=> $request->{reservenotes
},
484 $allocated_items{ $request->{itemnumber
} }++;
485 $num_items_remaining--;
488 # it's title-level request that will take up one item
489 $num_items_remaining--;
493 # group available items by branch
494 my %items_by_branch = ();
495 foreach my $item (@
$available_items) {
496 next unless $item->{holdallowed
};
498 push @
{ $items_by_branch{ $item->{holdingbranch
} } }, $item
499 unless exists $allocated_items{ $item->{itemnumber
} };
501 return \
%item_map unless keys %items_by_branch;
503 # now handle the title-level requests
504 $num_items_remaining = scalar(@
$available_items) - scalar(keys %allocated_items);
506 foreach my $request (@
$hold_requests) {
507 last if $num_items_remaining == 0;
508 next if $request->{allocated
};
509 next if defined($request->{itemnumber
}); # already handled these
511 # look for local match first
512 my $pickup_branch = $request->{branchcode
} || $request->{borrowerbranch
};
513 my ($itemnumber, $holdingbranch);
515 my $holding_branch_items = $items_by_branch{$pickup_branch};
516 if ( $holding_branch_items ) {
517 foreach my $item (@
$holding_branch_items) {
518 next unless $items_by_itemnumber{ $item->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
521 $request->{borrowerbranch
} eq $item->{homebranch
}
522 && ( ( $item->{hold_fulfillment_policy
} eq 'any' ) # Don't fill item level holds that contravene the hold pickup policy at this time
523 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} } )
524 && ( !$request->{itemtype
} # If hold itemtype is set, item's itemtype must match
525 || $items_by_itemnumber{ $request->{itemnumber
} }->{itype
} eq $request->{itemtype
} )
528 $itemnumber = $item->{itemnumber
};
532 $holdingbranch = $pickup_branch;
534 elsif ($transport_cost_matrix) {
535 $pull_branches = [keys %items_by_branch];
536 $holdingbranch = least_cost_branch
( $pickup_branch, $pull_branches, $transport_cost_matrix );
537 if ( $holdingbranch ) {
539 my $holding_branch_items = $items_by_branch{$holdingbranch};
540 foreach my $item (@
$holding_branch_items) {
541 next if $request->{borrowerbranch
} ne $item->{homebranch
};
542 next unless $items_by_itemnumber{ $item->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
544 # Don't fill item level holds that contravene the hold pickup policy at this time
545 next unless $item->{hold_fulfillment_policy
} eq 'any'
546 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
548 # If hold itemtype is set, item's itemtype must match
549 next unless ( !$request->{itemtype
}
550 || $item->{itype
} eq $request->{itemtype
} );
552 $itemnumber = $item->{itemnumber
};
561 unless ($itemnumber) {
562 # not found yet, fall back to basics
563 if ($branches_to_use) {
564 $pull_branches = $branches_to_use;
566 $pull_branches = [keys %items_by_branch];
569 # Try picking items where the home and pickup branch match first
571 foreach my $branch (@
$pull_branches) {
572 my $holding_branch_items = $items_by_branch{$branch}
575 $holdingbranch ||= $branch;
576 foreach my $item (@
$holding_branch_items) {
577 next if $pickup_branch ne $item->{homebranch
};
578 next if ( $item->{holdallowed
} == 1 && $item->{homebranch
} ne $request->{borrowerbranch
} );
579 next unless $items_by_itemnumber{ $item->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
581 # Don't fill item level holds that contravene the hold pickup policy at this time
582 next unless $item->{hold_fulfillment_policy
} eq 'any'
583 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
585 # If hold itemtype is set, item's itemtype must match
586 next unless ( !$request->{itemtype
}
587 || $item->{itype
} eq $request->{itemtype
} );
589 $itemnumber = $item->{itemnumber
};
590 $holdingbranch = $branch;
595 # Now try items from the least cost branch based on the transport cost matrix or StaticHoldsQueueWeight
596 unless ( $itemnumber ) {
597 foreach my $current_item ( @
{ $items_by_branch{$holdingbranch} } ) {
598 if ( $holdingbranch && ( $current_item->{holdallowed
} == 2 || $request->{borrowerbranch
} eq $current_item->{homebranch
} ) ) {
600 # Don't fill item level holds that contravene the hold pickup policy at this time
601 next unless $current_item->{hold_fulfillment_policy
} eq 'any'
602 || $request->{branchcode
} eq $current_item->{ $current_item->{hold_fulfillment_policy
} };
604 # If hold itemtype is set, item's itemtype must match
605 next unless ( !$request->{itemtype
}
606 || $current_item->{itype
} eq $request->{itemtype
} );
608 next unless $items_by_itemnumber{ $current_item->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
610 $itemnumber = $current_item->{itemnumber
};
611 last; # quit this loop as soon as we have a suitable item
616 # Now try for items for any item that can fill this hold
617 unless ( $itemnumber ) {
619 foreach my $branch (@
$pull_branches) {
620 my $holding_branch_items = $items_by_branch{$branch}
623 foreach my $item (@
$holding_branch_items) {
624 next if ( $item->{holdallowed
} == 1 && $item->{homebranch
} ne $request->{borrowerbranch
} );
626 # Don't fill item level holds that contravene the hold pickup policy at this time
627 next unless $item->{hold_fulfillment_policy
} eq 'any'
628 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
630 # If hold itemtype is set, item's itemtype must match
631 next unless ( !$request->{itemtype
}
632 || $item->{itype
} eq $request->{itemtype
} );
634 next unless $items_by_itemnumber{ $item->{itemnumber
} }->{_object
}->can_be_transferred( { to
=> $libraries->{ $request->{branchcode
} } } );
636 $itemnumber = $item->{itemnumber
};
637 $holdingbranch = $branch;
645 my $holding_branch_items = $items_by_branch{$holdingbranch}
646 or die "Have $itemnumber, $holdingbranch, but no items!";
647 @
$holding_branch_items = grep { $_->{itemnumber
} != $itemnumber } @
$holding_branch_items;
648 delete $items_by_branch{$holdingbranch} unless @
$holding_branch_items;
650 $item_map{$itemnumber} = {
651 borrowernumber
=> $request->{borrowernumber
},
652 biblionumber
=> $request->{biblionumber
},
653 holdingbranch
=> $holdingbranch,
654 pickup_branch
=> $pickup_branch,
655 item_level
=> $request->{item_level_hold
},
656 reservedate
=> $request->{reservedate
},
657 reservenotes
=> $request->{reservenotes
},
659 $num_items_remaining--;
665 =head2 CreatePickListFromItemMap
669 sub CreatePicklistFromItemMap
{
670 my $item_map = shift;
672 my $dbh = C4
::Context
->dbh;
674 my $sth_load=$dbh->prepare("
675 INSERT INTO tmp_holdsqueue (biblionumber,itemnumber,barcode,surname,firstname,phone,borrowernumber,
676 cardnumber,reservedate,title, itemcallnumber,
677 holdingbranch,pickbranch,notes, item_level_request)
678 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
681 foreach my $itemnumber (sort keys %$item_map) {
682 my $mapped_item = $item_map->{$itemnumber};
683 my $biblionumber = $mapped_item->{biblionumber
};
684 my $borrowernumber = $mapped_item->{borrowernumber
};
685 my $pickbranch = $mapped_item->{pickup_branch
};
686 my $holdingbranch = $mapped_item->{holdingbranch
};
687 my $reservedate = $mapped_item->{reservedate
};
688 my $reservenotes = $mapped_item->{reservenotes
};
689 my $item_level = $mapped_item->{item_level
};
691 my $item = Koha
::Items
->find($itemnumber);
692 my $barcode = $item->barcode;
693 my $itemcallnumber = $item->itemcallnumber;
695 my $patron = Koha
::Patrons
->find( $borrowernumber );
696 my $cardnumber = $patron->cardnumber;
697 my $surname = $patron->surname;
698 my $firstname = $patron->firstname;
699 my $phone = $patron->phone;
701 my $biblio = Koha
::Biblios
->find( $biblionumber );
702 my $title = $biblio->title;
704 $sth_load->execute($biblionumber, $itemnumber, $barcode, $surname, $firstname, $phone, $borrowernumber,
705 $cardnumber, $reservedate, $title, $itemcallnumber,
706 $holdingbranch, $pickbranch, $reservenotes, $item_level);
710 =head2 AddToHoldTargetMap
714 sub AddToHoldTargetMap
{
715 my $item_map = shift;
717 my $dbh = C4
::Context
->dbh;
720 INSERT INTO hold_fill_targets
(borrowernumber
, biblionumber
, itemnumber
, source_branchcode
, item_level_request
)
721 VALUES
(?
, ?
, ?
, ?
, ?
)
723 my $sth_insert = $dbh->prepare($insert_sql);
725 foreach my $itemnumber (keys %$item_map) {
726 my $mapped_item = $item_map->{$itemnumber};
727 $sth_insert->execute($mapped_item->{borrowernumber
}, $mapped_item->{biblionumber
}, $itemnumber,
728 $mapped_item->{holdingbranch
}, $mapped_item->{item_level
});
732 # Helper functions, not part of any interface
735 return $_[0] unless $_[0];
741 sub load_branches_to_pull_from
{
744 my $static_branch_list = C4
::Context
->preference("StaticHoldsQueueWeight");
745 @branches_to_use = map { _trim
($_) } split( /,/, $static_branch_list )
746 if $static_branch_list;
749 Koha
::Database
->new()->schema()->resultset('Branch')
750 ->get_column('branchcode')->all()
751 unless (@branches_to_use);
753 @branches_to_use = shuffle
(@branches_to_use)
754 if C4
::Context
->preference("RandomizeHoldsQueueWeight");
756 my $today = dt_from_string
();
757 if ( C4
::Context
->preference('HoldsQueueSkipClosed') ) {
758 @branches_to_use = grep {
759 !Koha
::Calendar
->new( branchcode
=> $_ )
760 ->is_holiday( $today )
764 return \
@branches_to_use;
767 sub least_cost_branch
{
770 my ($to, $from, $transport_cost_matrix) = @_;
772 # Nothing really spectacular: supply to branch, a list of potential from branches
773 # and find the minimum from - to value from the transport_cost_matrix
774 return $from->[0] if ( @
$from == 1 && $transport_cost_matrix->{$to}{$from->[0]}->{disable_transfer
} != 1 );
776 # If the pickup library is in the list of libraries to pull from,
777 # return that library right away, it is obviously the least costly
778 return ($to) if any
{ $_ eq $to } @
$from;
780 my ($least_cost, @branch);
782 my $cell = $transport_cost_matrix->{$to}{$_};
783 next if $cell->{disable_transfer
};
785 my $cost = $cell->{cost
};
786 next unless defined $cost; # XXX should this be reported?
788 unless (defined $least_cost) {
794 next if $cost > $least_cost;
796 if ($cost == $least_cost) {
807 # XXX return a random @branch with minimum cost instead of the first one;
808 # return $branch[0] if @branch == 1;