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

(-)a/Koha/Checkouts/ReturnClaim.pm (-3 / +6 lines)
Lines 74-81 sub checkout { Link Here
74
    my ($self) = @_;
74
    my ($self) = @_;
75
75
76
    my $checkout_rs = $self->_result->checkout;
76
    my $checkout_rs = $self->_result->checkout;
77
    return unless $checkout_rs;
77
    return Koha::Checkout->_new_from_dbic($checkout_rs)
78
    return Koha::Checkout->_new_from_dbic($checkout_rs);
78
        if $checkout_rs;
79
80
    $checkout_rs = $self->_result->old_checkout;
81
    return Koha::Old::Checkout->_new_from_dbic($checkout_rs)
82
        if $checkout_rs;
79
}
83
}
80
84
81
=head3 old_checkout
85
=head3 old_checkout
82
- 

Return to bug 30541