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

(-)a/C4/RotatingCollections.pm (-5 / +5 lines)
Lines 487-497 sub TransferCollection { Link Here
487
                            replace       => 1
487
                            replace       => 1
488
                        }
488
                        }
489
                    );    # Replace transfer
489
                    );    # Replace transfer
490
                    # FIXME: If we just replaced a StockRotationAdvance,
490
                          # FIXME: If we just replaced a StockRotationAdvance,
491
                    # it will get enqueued afresh on the next cron run.. but
491
                          # it will get enqueued afresh on the next cron run.. but
492
                    # that will also push the stage on too.. and what about if
492
                          # that will also push the stage on too.. and what about if
493
                    # we were at the first stage.. then there won't be a datearrived
493
                          # we were at the first stage.. then there won't be a datearrived
494
                    # to calculate against. See bug 35100
494
                          # to calculate against. See bug 35100
495
                }
495
                }
496
            }
496
            }
497
            elsif ( $_->isa('Koha::Exceptions::Item::Transfer::Limit') ) {
497
            elsif ( $_->isa('Koha::Exceptions::Item::Transfer::Limit') ) {
(-)a/t/db_dependent/SIP/Transaction.t (-2 / +1 lines)
Lines 405-411 subtest do_checkin => sub { Link Here
405
    $ci_transaction->do_checkin( $library->branchcode, undef );
405
    $ci_transaction->do_checkin( $library->branchcode, undef );
406
    is( $patron->checkouts->count, 0, 'Checkin should have been done successfully' );
406
    is( $patron->checkouts->count, 0, 'Checkin should have been done successfully' );
407
407
408
    my $result = $ci_transaction->do_checkin( $library2->branchcode, undef );
408
    my $result   = $ci_transaction->do_checkin( $library2->branchcode, undef );
409
    my $transfer = $item->get_transfer;
409
    my $transfer = $item->get_transfer;
410
    is( $ci_transaction->alert_type, '04', "Checkin of item no issued at another branch succeeds" );
410
    is( $ci_transaction->alert_type, '04', "Checkin of item no issued at another branch succeeds" );
411
    is_deeply(
411
    is_deeply(
412
- 

Return to bug 35100