my ( $self, $biblionumber ) = @_;
my $biblio = Koha::Biblios->find($biblionumber);
return 0 unless $biblio;
return $biblio->bookable_items->count ? 1 : 0;
}
-