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

(-)a/Koha/Item/Transfer.pm (-1 / +14 lines)
Lines 33-38 Koha::Item::Transfer - Koha Item Transfer Object class Link Here
33
33
34
=cut
34
=cut
35
35
36
=head3 item
37
38
  my $item = $transfer->item;
39
40
Returns the associated item for this transfer.
41
42
=cut
43
44
sub item {
45
    my ($self) = @_;
46
    my $item_rs = $self->_result->itemnumber;
47
    return Koha::Item->_new_from_dbic($item_rs);
48
}
49
36
=head3 type
50
=head3 type
37
51
38
=cut
52
=cut
39
- 

Return to bug 25757