https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19380 --- Comment #3 from Josef Moravec <josef.moravec@gmail.com> --- Comment on attachment 67577 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=67577 Bug 19380: Add transfer informations in ILS-DI GetRecords response Review of attachment 67577: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=19380&attachment=67577) ----------------------------------------------------------------- ::: C4/ILSDI/Services.pm @@ +239,5 @@
my $holding_library = Koha::Libraries->find( $item->{holdingbranch} ); $item->{'homebranchname'} = $home_library ? $home_library->branchname : ''; $item->{'holdingbranchname'} = $holding_library ? $holding_library->branchname : ''; + + my ($transferDate, $transferFrom, $transferTo) = GetTransfers($item->{itemnumber});
You should use Koha::Item->get_transfer instead -- You are receiving this mail because: You are watching all bug changes.