https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33568 --- Comment #110 from Jonathan Druart <jonathan.druart@gmail.com> --- Created attachment 164333 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=164333&action=edit Bug 33568: Course reserves FIXME We need tests here FIXME/TODO - Isn't it possible to replace all this mess with the following Koha::Item method and a new DBIC rs? sub courses { my ($self) = @_; return Koha::Courses->search( { 'ci.itemnumber' => $self->itemnumber }, { join => { course_reserves => 'ci' } } ); } Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Laurence Rault <laurence.rault@biblibre.com> Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> Signed-off-by: Tomás Cohen Arazi <tomascohen@theke.io> -- You are receiving this mail because: You are watching all bug changes.