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

(-)a/C4/RotatingCollections.pm (-2 / +2 lines)
Lines 435-441 sub TransferCollection { Link Here
435
    my @results;
435
    my @results;
436
    while ( my $item = $sth->fetchrow_hashref ) {
436
    while ( my $item = $sth->fetchrow_hashref ) {
437
        my ($status) = CheckReserves( $item->{itemnumber} );
437
        my ($status) = CheckReserves( $item->{itemnumber} );
438
        transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' );
438
        my @transfers = GetTransfers( $item->{itemnumber} );
439
        transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' || @transfers );
439
    }
440
    }
440
441
441
    return 1;
442
    return 1;
442
- 

Return to bug 8836