I recall that at one time if you were transferring an item with a hold the transfers page would prompt you with information about the hold. There is markup in the template for accomplishing this: [% IF ( reserved ) %] Reserve found for [% name %] (<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% borrowernumber %]">[% borrowernumber %]</a>). [% END %] ...etc. I have tried transferring an item on hold and do not get any kind of hold confirmation message.
Still valid?
(In reply to Marc Véron from comment #1) > Still valid? Yes it is, everything is buggy...
From C4::Circulation::transferbook 355 my ( $resfound, $resrec, undef ) = 356 CheckReserves( $itemnumber ); 357 if ( $resfound and not $ignoreRs ) { 358 $resrec->{'ResFound'} = $resfound; 359 360 # $messages->{'ResFound'} = $resrec; 361 $dotransfer = 1; 362 } The line 360 should not be commented I think.
This appears to be fixed: * Place holds on record * Manually transfer item to another library: Hold found for koha (42) (51).