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

(-)a/Koha/Item/Transfer.pm (-2 / +3 lines)
Lines 94-100 Boolean returning whether the transfer is in transit or waiting Link Here
94
sub in_transit {
94
sub in_transit {
95
    my ($self) = @_;
95
    my ($self) = @_;
96
96
97
    return ( defined( $self->datesent ) && !defined( $self->datearrived ) );
97
    return ( defined( $self->datesent )
98
          && !defined( $self->datearrived )
99
          && !defined( $self->datecancelled ) );
98
}
100
}
99
101
100
=head3 receive
102
=head3 receive
101
- 

Return to bug 27993