View | Details | Raw Unified | Return to bug 35431
Collapse All | Expand All

(-)a/C4/HoldsQueue.pm (-2 / +1 lines)
Lines 573-579 sub MapItemsToHoldRequests { Link Here
573
            }
573
            }
574
            $holdingbranch = $pickup_branch;
574
            $holdingbranch = $pickup_branch;
575
        }
575
        }
576
        elsif ($transport_cost_matrix) {
576
        if ($transport_cost_matrix) {
577
            $pull_branches = [keys %items_by_branch];
577
            $pull_branches = [keys %items_by_branch];
578
            $holdingbranch = least_cost_branch( $pickup_branch, $pull_branches, $transport_cost_matrix );
578
            $holdingbranch = least_cost_branch( $pickup_branch, $pull_branches, $transport_cost_matrix );
579
            if ( $holdingbranch ) {
579
            if ( $holdingbranch ) {
580
- 

Return to bug 35431