From f27d58f72f87756252d74284e0d617f47d0ef3aa Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 19 Sep 2024 16:23:49 +0200 Subject: [PATCH] Bug 37964: Only show host items when system preference EasyAnalyticalRecords is enabled After Bug 33496, host items are displayed even when system preference EasyAnalyticalRecords is disabled. Test plan : 1) Build an analytical record with 773$0 and $9 2) Enable 'EasyAnalyticalRecords' 3) Go to catalogue details page => You see the linked item 4) Disable EasyAnalyticalRecords 5) Go to catalogue details page => You dont see the linked item Signed-off-by: Lucas Gass Signed-off-by: Jonathan Druart Signed-off-by: Martin Renvoize --- Koha/Biblio.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index 8029be8e43..0f9d4cd877 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -608,7 +608,8 @@ sub items { my $items_rs = $self->_result->items; - return Koha::Items->_new_from_dbic( $items_rs ) unless $params->{host_items}; + return Koha::Items->_new_from_dbic($items_rs) + unless $params->{host_items} && C4::Context->preference('EasyAnalyticalRecords'); my @itemnumbers = $items_rs->get_column('itemnumber')->all; my $host_itemnumbers = $self->_host_itemnumbers(); -- 2.39.5