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

(-)a/C4/RotatingCollections.pm (-2 / +2 lines)
Lines 447-453 sub TransferCollection { Link Here
447
    my @results;
447
    my @results;
448
    while ( my $item = $sth->fetchrow_hashref ) {
448
    while ( my $item = $sth->fetchrow_hashref ) {
449
        my ($status) = CheckReserves( $item->{itemnumber} );
449
        my ($status) = CheckReserves( $item->{itemnumber} );
450
        transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' );
450
        my @transfers = GetTransfers( $item->{itemnumber} );
451
        transferbook( $colBranchcode, $item->{barcode}, my $ignore_reserves = 1 ) unless ( $status eq 'Waiting' || @transfers );
451
    }
452
    }
452
453
453
    return 1;
454
    return 1;
454
- 

Return to bug 8836