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
34 use List
::Util
qw(shuffle);
35 use List
::MoreUtils
qw(any);
38 use vars
qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
47 &UpdateTransportCostMatrix
54 =head2 TransportCostMatrix
56 TransportCostMatrix();
58 Returns Transport Cost Matrix as a hashref <to branch code> => <from branch code> => cost
62 sub TransportCostMatrix
{
63 my $dbh = C4
::Context
->dbh;
64 my $transport_costs = $dbh->selectall_arrayref("SELECT * FROM transport_cost",{ Slice
=> {} });
66 my $today = dt_from_string
();
68 my %transport_cost_matrix;
69 foreach (@
$transport_costs) {
70 my $from = $_->{frombranch
};
71 my $to = $_->{tobranch
};
72 my $cost = $_->{cost
};
73 my $disabled = $_->{disable_transfer
};
74 $transport_cost_matrix{$to}{$from} = {
76 disable_transfer
=> $disabled
79 if ( C4
::Context
->preference("HoldsQueueSkipClosed") ) {
80 $calendars->{$from} ||= Koha
::Calendar
->new( branchcode
=> $from );
81 $transport_cost_matrix{$to}{$from}{disable_transfer
} ||=
82 $calendars->{$from}->is_holiday( $today );
86 return \
%transport_cost_matrix;
89 =head2 UpdateTransportCostMatrix
91 UpdateTransportCostMatrix($records);
93 Updates full Transport Cost Matrix table. $records is an arrayref of records.
94 Records: { frombranch => <code>, tobranch => <code>, cost => <figure>, disable_transfer => <0,1> }
98 sub UpdateTransportCostMatrix
{
100 my $dbh = C4
::Context
->dbh;
102 my $sth = $dbh->prepare("INSERT INTO transport_cost (frombranch, tobranch, cost, disable_transfer) VALUES (?, ?, ?, ?)");
104 $dbh->do("TRUNCATE TABLE transport_cost");
105 foreach (@
$records) {
106 my $cost = $_->{cost
};
107 my $from = $_->{frombranch
};
108 my $to = $_->{tobranch
};
109 if ($_->{disable_transfer
}) {
112 elsif ( !defined ($cost) || ($cost !~ m/(0|[1-9][0-9]*)(\.[0-9]*)?/o) ) {
113 warn "Invalid $from -> $to cost $cost - must be a number >= 0, disablig";
115 $_->{disable_transfer
} = 1;
117 $sth->execute( $from, $to, $cost, $_->{disable_transfer
} ?
1 : 0 );
121 =head2 GetHoldsQueueItems
123 GetHoldsQueueItems($branch);
125 Returns hold queue for a holding branch. If branch is omitted, then whole queue is returned
129 sub GetHoldsQueueItems
{
130 my ($branchlimit) = @_;
131 my $dbh = C4
::Context
->dbh;
133 my @bind_params = ();
134 my $query = q
/SELECT tmp_holdsqueue
.*, biblio
.author
, items
.ccode
, items
.itype
, biblioitems
.itemtype
, items
.location
, items
.enumchron
, items
.cn_sort
, biblioitems
.publishercode
,biblio
.copyrightdate
,biblioitems
.publicationyear
,biblioitems
.pages
,biblioitems
.size
,biblioitems
.publicationyear
,biblioitems
.isbn
,items
.copynumber
136 JOIN biblio USING
(biblionumber
)
137 LEFT JOIN biblioitems USING
(biblionumber
)
138 LEFT JOIN items USING
( itemnumber
)
141 $query .=" WHERE tmp_holdsqueue.holdingbranch = ?";
142 push @bind_params, $branchlimit;
144 $query .= " ORDER BY ccode, location, cn_sort, author, title, pickbranch, reservedate";
145 my $sth = $dbh->prepare($query);
146 $sth->execute(@bind_params);
148 while ( my $row = $sth->fetchrow_hashref ){
149 my $record = GetMarcBiblio
($row->{biblionumber
});
151 $row->{subtitle
} = [ map { $_->{subfield
} } @
{ GetRecordValue
( 'subtitle', $record, '' ) } ];
152 $row->{parts
} = GetRecordValue
('parts',$record,'')->[0]->{subfield
};
153 $row->{numbers
} = GetRecordValue
('numbers',$record,'')->[0]->{subfield
};
156 # return the bib-level or item-level itype per syspref
157 if (!C4
::Context
->preference('item-level_itypes')) {
158 $row->{itype
} = $row->{itemtype
};
160 delete $row->{itemtype
};
171 Top level function that turns reserves into tmp_holdsqueue and hold_fill_targets.
176 my $dbh = C4
::Context
->dbh;
178 $dbh->do("DELETE FROM tmp_holdsqueue"); # clear the old table for new info
179 $dbh->do("DELETE FROM hold_fill_targets");
182 my $total_requests = 0;
183 my $total_available_items = 0;
184 my $num_items_mapped = 0;
187 my $transport_cost_matrix;
188 my $use_transport_cost_matrix = C4
::Context
->preference("UseTransportCostMatrix");
189 if ($use_transport_cost_matrix) {
190 $transport_cost_matrix = TransportCostMatrix
();
191 unless (keys %$transport_cost_matrix) {
192 warn "UseTransportCostMatrix set to yes, but matrix not populated";
193 undef $transport_cost_matrix;
196 unless ($transport_cost_matrix) {
197 $branches_to_use = load_branches_to_pull_from
();
200 my $bibs_with_pending_requests = GetBibsWithPendingHoldRequests
();
202 foreach my $biblionumber (@
$bibs_with_pending_requests) {
204 my $hold_requests = GetPendingHoldRequestsForBib
($biblionumber);
205 my $available_items = GetItemsAvailableToFillHoldRequestsForBib
($biblionumber, $branches_to_use);
206 $total_requests += scalar(@
$hold_requests);
207 $total_available_items += scalar(@
$available_items);
209 my $item_map = MapItemsToHoldRequests
($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix);
211 my $item_map_size = scalar(keys %$item_map)
214 $num_items_mapped += $item_map_size;
215 CreatePicklistFromItemMap
($item_map);
216 AddToHoldTargetMap
($item_map);
217 if (($item_map_size < scalar(@
$hold_requests )) and
218 ($item_map_size < scalar(@
$available_items))) {
219 # DOUBLE CHECK, but this is probably OK - unfilled item-level requests
221 #warn "unfilled requests for $biblionumber";
222 #warn Dumper($hold_requests), Dumper($available_items), Dumper($item_map);
227 =head2 GetBibsWithPendingHoldRequests
229 my $biblionumber_aref = GetBibsWithPendingHoldRequests();
231 Return an arrayref of the biblionumbers of all bibs
232 that have one or more unfilled hold requests.
236 sub GetBibsWithPendingHoldRequests
{
237 my $dbh = C4
::Context
->dbh;
239 my $bib_query = "SELECT DISTINCT biblionumber
243 AND reservedate <= CURRENT_DATE()
246 my $sth = $dbh->prepare($bib_query);
249 my $biblionumbers = $sth->fetchall_arrayref();
251 return [ map { $_->[0] } @
$biblionumbers ];
254 =head2 GetPendingHoldRequestsForBib
256 my $requests = GetPendingHoldRequestsForBib($biblionumber);
258 Returns an arrayref of hashrefs to pending, unfilled hold requests
259 on the bib identified by $biblionumber. The following keys
260 are present in each hashref:
271 The arrayref is sorted in order of increasing priority.
275 sub GetPendingHoldRequestsForBib
{
276 my $biblionumber = shift;
278 my $dbh = C4
::Context
->dbh;
280 my $request_query = "SELECT biblionumber, borrowernumber, itemnumber, priority, reserves.branchcode,
281 reservedate, reservenotes, borrowers.branchcode AS borrowerbranch, itemtype
283 JOIN borrowers USING (borrowernumber)
284 WHERE biblionumber = ?
287 AND reservedate <= CURRENT_DATE()
290 my $sth = $dbh->prepare($request_query);
291 $sth->execute($biblionumber);
293 my $requests = $sth->fetchall_arrayref({});
298 =head2 GetItemsAvailableToFillHoldRequestsForBib
300 my $available_items = GetItemsAvailableToFillHoldRequestsForBib($biblionumber, $branches_ar);
302 Returns an arrayref of items available to fill hold requests
303 for the bib identified by C<$biblionumber>. An item is available
304 to fill a hold request if and only if:
307 * it is not withdrawn
308 * it is not marked notforloan
309 * it is not currently in transit
311 * it is not sitting on the hold shelf
312 * it is not damaged (unless AllowHoldsOnDamagedItems is on)
316 sub GetItemsAvailableToFillHoldRequestsForBib
{
317 my ($biblionumber, $branches_to_use) = @_;
319 my $dbh = C4
::Context
->dbh;
320 my $items_query = "SELECT itemnumber, homebranch, holdingbranch, itemtypes.itemtype AS itype
323 if (C4
::Context
->preference('item-level_itypes')) {
324 $items_query .= "LEFT JOIN itemtypes ON (itemtypes.itemtype = items.itype) ";
326 $items_query .= "JOIN biblioitems USING (biblioitemnumber)
327 LEFT JOIN itemtypes USING (itemtype) ";
329 $items_query .= "WHERE items.notforloan = 0
330 AND holdingbranch IS NOT NULL
333 $items_query .= " AND damaged = 0" unless C4
::Context
->preference('AllowHoldsOnDamagedItems');
334 $items_query .= " AND items.onloan IS NULL
335 AND (itemtypes.notforloan IS NULL OR itemtypes.notforloan = 0)
336 AND itemnumber NOT IN (
339 WHERE biblionumber = ?
340 AND itemnumber IS NOT NULL
341 AND (found IS NOT NULL OR priority = 0)
343 AND items.biblionumber = ?";
345 my @params = ($biblionumber, $biblionumber);
346 if ($branches_to_use && @
$branches_to_use) {
347 $items_query .= " AND holdingbranch IN (" . join (",", map { "?" } @
$branches_to_use) . ")";
348 push @params, @
$branches_to_use;
350 my $sth = $dbh->prepare($items_query);
351 $sth->execute(@params);
353 my $itm = $sth->fetchall_arrayref({});
354 my @items = grep { ! scalar GetTransfers
($_->{itemnumber
}) } @
$itm;
356 my $rule = GetBranchItemRule
($_->{homebranch
}, $_->{itype
});
357 $_->{holdallowed
} = $rule->{holdallowed
};
358 $_->{hold_fulfillment_policy
} = $rule->{hold_fulfillment_policy
};
362 =head2 MapItemsToHoldRequests
364 MapItemsToHoldRequests($hold_requests, $available_items, $branches, $transport_cost_matrix)
368 sub MapItemsToHoldRequests
{
369 my ($hold_requests, $available_items, $branches_to_use, $transport_cost_matrix) = @_;
372 # handle trival cases
373 return unless scalar(@
$hold_requests) > 0;
374 return unless scalar(@
$available_items) > 0;
376 # identify item-level requests
377 my %specific_items_requested = map { $_->{itemnumber
} => 1 }
378 grep { defined($_->{itemnumber
}) }
381 # group available items by itemnumber
382 my %items_by_itemnumber = map { $_->{itemnumber
} => $_ } @
$available_items;
384 # items already allocated
385 my %allocated_items = ();
387 # map of items to hold requests
390 # figure out which item-level requests can be filled
391 my $num_items_remaining = scalar(@
$available_items);
393 # Look for Local Holds Priority matches first
394 if ( C4
::Context
->preference('LocalHoldsPriority') ) {
395 my $LocalHoldsPriorityPatronControl =
396 C4
::Context
->preference('LocalHoldsPriorityPatronControl');
397 my $LocalHoldsPriorityItemControl =
398 C4
::Context
->preference('LocalHoldsPriorityItemControl');
400 foreach my $request (@
$hold_requests) {
401 last if $num_items_remaining == 0;
403 my $local_hold_match;
404 foreach my $item (@
$available_items) {
406 if ( !$item->{holdallowed
} )
407 || ( $item->{holdallowed
} == 1
408 && $item->{homebranch
} ne $request->{borrowerbranch
} );
410 my $local_holds_priority_item_branchcode =
411 $item->{$LocalHoldsPriorityItemControl};
413 my $local_holds_priority_patron_branchcode =
414 ( $LocalHoldsPriorityPatronControl eq 'PickupLibrary' )
415 ?
$request->{branchcode
}
416 : ( $LocalHoldsPriorityPatronControl eq 'HomeLibrary' )
417 ?
$request->{borrowerbranch
}
421 $local_holds_priority_item_branchcode eq
422 $local_holds_priority_patron_branchcode;
424 if ($local_hold_match) {
425 if ( exists $items_by_itemnumber{ $item->{itemnumber
} }
426 and not exists $allocated_items{ $item->{itemnumber
} } )
428 $item_map{ $item->{itemnumber
} } = {
429 borrowernumber
=> $request->{borrowernumber
},
430 biblionumber
=> $request->{biblionumber
},
431 holdingbranch
=> $item->{holdingbranch
},
432 pickup_branch
=> $request->{branchcode
}
433 || $request->{borrowerbranch
},
435 reservedate
=> $request->{reservedate
},
436 reservenotes
=> $request->{reservenotes
},
438 $allocated_items{ $item->{itemnumber
} }++;
439 $num_items_remaining--;
446 foreach my $request (@
$hold_requests) {
447 last if $num_items_remaining == 0;
449 # is this an item-level request?
450 if (defined($request->{itemnumber
})) {
451 # fill it if possible; if not skip it
453 exists $items_by_itemnumber{ $request->{itemnumber
} }
454 and not exists $allocated_items{ $request->{itemnumber
} }
455 and ( # Don't fill item level holds that contravene the hold pickup policy at this time
456 ( $items_by_itemnumber{ $request->{itemnumber
} }->{hold_fulfillment_policy
} eq 'any' )
457 || ( $request->{branchcode
} eq $items_by_itemnumber{ $request->{itemnumber
} }->{ $items_by_itemnumber{ $request->{itemnumber
} }->{hold_fulfillment_policy
} } )
458 and ( !$request->{itemtype
} # If hold itemtype is set, item's itemtype must match
459 || $items_by_itemnumber{ $request->{itemnumber
} }->{itype
} eq $request->{itemtype
} )
465 $item_map{ $request->{itemnumber
} } = {
466 borrowernumber
=> $request->{borrowernumber
},
467 biblionumber
=> $request->{biblionumber
},
468 holdingbranch
=> $items_by_itemnumber{ $request->{itemnumber
} }->{holdingbranch
},
469 pickup_branch
=> $request->{branchcode
} || $request->{borrowerbranch
},
471 reservedate
=> $request->{reservedate
},
472 reservenotes
=> $request->{reservenotes
},
474 $allocated_items{ $request->{itemnumber
} }++;
475 $num_items_remaining--;
478 # it's title-level request that will take up one item
479 $num_items_remaining--;
483 # group available items by branch
484 my %items_by_branch = ();
485 foreach my $item (@
$available_items) {
486 next unless $item->{holdallowed
};
488 push @
{ $items_by_branch{ $item->{holdingbranch
} } }, $item
489 unless exists $allocated_items{ $item->{itemnumber
} };
491 return \
%item_map unless keys %items_by_branch;
493 # now handle the title-level requests
494 $num_items_remaining = scalar(@
$available_items) - scalar(keys %allocated_items);
496 foreach my $request (@
$hold_requests) {
497 last if $num_items_remaining == 0;
498 next if defined($request->{itemnumber
}); # already handled these
500 # look for local match first
501 my $pickup_branch = $request->{branchcode
} || $request->{borrowerbranch
};
502 my ($itemnumber, $holdingbranch);
504 my $holding_branch_items = $items_by_branch{$pickup_branch};
505 if ( $holding_branch_items ) {
506 foreach my $item (@
$holding_branch_items) {
508 $request->{borrowerbranch
} eq $item->{homebranch
}
509 && ( ( $item->{hold_fulfillment_policy
} eq 'any' ) # Don't fill item level holds that contravene the hold pickup policy at this time
510 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} } )
511 && ( !$request->{itemtype
} # If hold itemtype is set, item's itemtype must match
512 || $items_by_itemnumber{ $request->{itemnumber
} }->{itype
} eq $request->{itemtype
} )
515 $itemnumber = $item->{itemnumber
};
519 $holdingbranch = $pickup_branch;
521 elsif ($transport_cost_matrix) {
522 $pull_branches = [keys %items_by_branch];
523 $holdingbranch = least_cost_branch
( $pickup_branch, $pull_branches, $transport_cost_matrix );
524 if ( $holdingbranch ) {
526 my $holding_branch_items = $items_by_branch{$holdingbranch};
527 foreach my $item (@
$holding_branch_items) {
528 next if $request->{borrowerbranch
} ne $item->{homebranch
};
530 # Don't fill item level holds that contravene the hold pickup policy at this time
531 next unless $item->{hold_fulfillment_policy
} eq 'any'
532 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
534 # If hold itemtype is set, item's itemtype must match
535 next unless ( !$request->{itemtype
}
536 || $item->{itype
} eq $request->{itemtype
} );
538 $itemnumber = $item->{itemnumber
};
547 unless ($itemnumber) {
548 # not found yet, fall back to basics
549 if ($branches_to_use) {
550 $pull_branches = $branches_to_use;
552 $pull_branches = [keys %items_by_branch];
555 # Try picking items where the home and pickup branch match first
557 foreach my $branch (@
$pull_branches) {
558 my $holding_branch_items = $items_by_branch{$branch}
561 $holdingbranch ||= $branch;
562 foreach my $item (@
$holding_branch_items) {
563 next if $pickup_branch ne $item->{homebranch
};
564 next if ( $item->{holdallowed
} == 1 && $item->{homebranch
} ne $request->{borrowerbranch
} );
566 # Don't fill item level holds that contravene the hold pickup policy at this time
567 next unless $item->{hold_fulfillment_policy
} eq 'any'
568 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
570 # If hold itemtype is set, item's itemtype must match
571 next unless ( !$request->{itemtype
}
572 || $item->{itype
} eq $request->{itemtype
} );
574 $itemnumber = $item->{itemnumber
};
575 $holdingbranch = $branch;
580 # Now try items from the least cost branch based on the transport cost matrix or StaticHoldsQueueWeight
581 unless ( $itemnumber ) {
582 foreach my $current_item ( @
{ $items_by_branch{$holdingbranch} } ) {
583 if ( $holdingbranch && ( $current_item->{holdallowed
} == 2 || $request->{borrowerbranch
} eq $current_item->{homebranch
} ) ) {
585 # Don't fill item level holds that contravene the hold pickup policy at this time
586 next unless $current_item->{hold_fulfillment_policy
} eq 'any'
587 || $request->{branchcode
} eq $current_item->{ $current_item->{hold_fulfillment_policy
} };
589 # If hold itemtype is set, item's itemtype must match
590 next unless ( !$request->{itemtype
}
591 || $current_item->{itype
} eq $request->{itemtype
} );
593 $itemnumber = $current_item->{itemnumber
};
594 last; # quit this loop as soon as we have a suitable item
599 # Now try for items for any item that can fill this hold
600 unless ( $itemnumber ) {
602 foreach my $branch (@
$pull_branches) {
603 my $holding_branch_items = $items_by_branch{$branch}
606 foreach my $item (@
$holding_branch_items) {
607 next if ( $item->{holdallowed
} == 1 && $item->{homebranch
} ne $request->{borrowerbranch
} );
609 # Don't fill item level holds that contravene the hold pickup policy at this time
610 next unless $item->{hold_fulfillment_policy
} eq 'any'
611 || $request->{branchcode
} eq $item->{ $item->{hold_fulfillment_policy
} };
613 # If hold itemtype is set, item's itemtype must match
614 next unless ( !$request->{itemtype
}
615 || $item->{itype
} eq $request->{itemtype
} );
617 $itemnumber = $item->{itemnumber
};
618 $holdingbranch = $branch;
626 my $holding_branch_items = $items_by_branch{$holdingbranch}
627 or die "Have $itemnumber, $holdingbranch, but no items!";
628 @
$holding_branch_items = grep { $_->{itemnumber
} != $itemnumber } @
$holding_branch_items;
629 delete $items_by_branch{$holdingbranch} unless @
$holding_branch_items;
631 $item_map{$itemnumber} = {
632 borrowernumber
=> $request->{borrowernumber
},
633 biblionumber
=> $request->{biblionumber
},
634 holdingbranch
=> $holdingbranch,
635 pickup_branch
=> $pickup_branch,
637 reservedate
=> $request->{reservedate
},
638 reservenotes
=> $request->{reservenotes
},
640 $num_items_remaining--;
646 =head2 CreatePickListFromItemMap
650 sub CreatePicklistFromItemMap
{
651 my $item_map = shift;
653 my $dbh = C4
::Context
->dbh;
655 my $sth_load=$dbh->prepare("
656 INSERT INTO tmp_holdsqueue (biblionumber,itemnumber,barcode,surname,firstname,phone,borrowernumber,
657 cardnumber,reservedate,title, itemcallnumber,
658 holdingbranch,pickbranch,notes, item_level_request)
659 VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)
662 foreach my $itemnumber (sort keys %$item_map) {
663 my $mapped_item = $item_map->{$itemnumber};
664 my $biblionumber = $mapped_item->{biblionumber
};
665 my $borrowernumber = $mapped_item->{borrowernumber
};
666 my $pickbranch = $mapped_item->{pickup_branch
};
667 my $holdingbranch = $mapped_item->{holdingbranch
};
668 my $reservedate = $mapped_item->{reservedate
};
669 my $reservenotes = $mapped_item->{reservenotes
};
670 my $item_level = $mapped_item->{item_level
};
672 my $item = GetItem
($itemnumber);
673 my $barcode = $item->{barcode
};
674 my $itemcallnumber = $item->{itemcallnumber
};
676 my $borrower = GetMember
('borrowernumber'=>$borrowernumber);
677 my $cardnumber = $borrower->{'cardnumber'};
678 my $surname = $borrower->{'surname'};
679 my $firstname = $borrower->{'firstname'};
680 my $phone = $borrower->{'phone'};
682 my $bib = GetBiblioData
($biblionumber);
683 my $title = $bib->{title
};
685 $sth_load->execute($biblionumber, $itemnumber, $barcode, $surname, $firstname, $phone, $borrowernumber,
686 $cardnumber, $reservedate, $title, $itemcallnumber,
687 $holdingbranch, $pickbranch, $reservenotes, $item_level);
691 =head2 AddToHoldTargetMap
695 sub AddToHoldTargetMap
{
696 my $item_map = shift;
698 my $dbh = C4
::Context
->dbh;
701 INSERT INTO hold_fill_targets
(borrowernumber
, biblionumber
, itemnumber
, source_branchcode
, item_level_request
)
702 VALUES
(?
, ?
, ?
, ?
, ?
)
704 my $sth_insert = $dbh->prepare($insert_sql);
706 foreach my $itemnumber (keys %$item_map) {
707 my $mapped_item = $item_map->{$itemnumber};
708 $sth_insert->execute($mapped_item->{borrowernumber
}, $mapped_item->{biblionumber
}, $itemnumber,
709 $mapped_item->{holdingbranch
}, $mapped_item->{item_level
});
713 # Helper functions, not part of any interface
716 return $_[0] unless $_[0];
722 sub load_branches_to_pull_from
{
725 my $static_branch_list = C4
::Context
->preference("StaticHoldsQueueWeight");
726 @branches_to_use = map { _trim
($_) } split( /,/, $static_branch_list )
727 if $static_branch_list;
730 Koha
::Database
->new()->schema()->resultset('Branch')
731 ->get_column('branchcode')->all()
732 unless (@branches_to_use);
734 @branches_to_use = shuffle
(@branches_to_use)
735 if C4
::Context
->preference("RandomizeHoldsQueueWeight");
737 my $today = dt_from_string
();
738 if ( C4
::Context
->preference('HoldsQueueSkipClosed') ) {
739 @branches_to_use = grep {
740 !Koha
::Calendar
->new( branchcode
=> $_ )
741 ->is_holiday( $today )
745 return \
@branches_to_use;
748 sub least_cost_branch
{
751 my ($to, $from, $transport_cost_matrix) = @_;
753 # Nothing really spectacular: supply to branch, a list of potential from branches
754 # and find the minimum from - to value from the transport_cost_matrix
755 return $from->[0] if ( @
$from == 1 && $transport_cost_matrix->{$to}{$from->[0]}->{disable_transfer
} != 1 );
757 # If the pickup library is in the list of libraries to pull from,
758 # return that library right away, it is obviously the least costly
759 return ($to) if any
{ $_ eq $to } @
$from;
761 my ($least_cost, @branch);
763 my $cell = $transport_cost_matrix->{$to}{$_};
764 next if $cell->{disable_transfer
};
766 my $cost = $cell->{cost
};
767 next unless defined $cost; # XXX should this be reported?
769 unless (defined $least_cost) {
775 next if $cost > $least_cost;
777 if ($cost == $least_cost) {
788 # XXX return a random @branch with minimum cost instead of the first one;
789 # return $branch[0] if @branch == 1;