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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 2166-2172 sub AddReturn { Link Here
2166
2166
2167
    # if we have a transfer to complete, we update the line of transfers with the datearrived
2167
    # if we have a transfer to complete, we update the line of transfers with the datearrived
2168
    if ($transfer) {
2168
    if ($transfer) {
2169
        $validTransfer = 0;
2169
        $validTransfer = 0 unless defined $transfer->datecancelled;
2170
        if ( $transfer->in_transit ) {
2170
        if ( $transfer->in_transit ) {
2171
            if ( $transfer->tobranch eq $branch ) {
2171
            if ( $transfer->tobranch eq $branch ) {
2172
                $transfer->receive;
2172
                $transfer->receive;
2173
- 

Return to bug 28520