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

(-)a/Koha/Item.pm (+5 lines)
Lines 74-79 sub holding_branch { Link Here
74
    return $self->{_holding_branch};
74
    return $self->{_holding_branch};
75
}
75
}
76
76
77
sub transfer {
78
    my ( $self ) = @_;
79
    return $self->_result->branchtransfers->first;
80
}
81
77
=head3 last_returned_by
82
=head3 last_returned_by
78
83
79
Gets and sets the last borrower to return an item.
84
Gets and sets the last borrower to return an item.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt (-3 / +3 lines)
Lines 625-632 Using this account is not recommended because some parts of Koha will not functi Link Here
625
                                                    [% END %]
625
                                                    [% END %]
626
                                                [% ELSE %]
626
                                                [% ELSE %]
627
                                                    [% IF ( RESERVE.is_in_transit ) %]
627
                                                    [% IF ( RESERVE.is_in_transit ) %]
628
                                                        Item in transit from <b> [% RESERVE.frombranch %]</b> since
628
                                                        [% SET transfer = RESERVE.item.transfer %]
629
                                                        [% RESERVE.datesent | $KohaDates %]
629
                                                        Item in transit from <b> [% transfer.frombranch.branchname %]</b> since
630
                                                        [% transfer.datesent | $KohaDates %]
630
                                                    [% ELSIF ( RESERVE.suspend ) %]
631
                                                    [% ELSIF ( RESERVE.suspend ) %]
631
                                                        Suspended [% IF ( RESERVE.suspend_until ) %] until [% RESERVE.suspend_until %] [% END %]
632
                                                        Suspended [% IF ( RESERVE.suspend_until ) %] until [% RESERVE.suspend_until %] [% END %]
632
                                                    [% ELSE %]
633
                                                    [% ELSE %]
633
- 

Return to bug 16686