From 9fa06b7aeb32271f7a0169af1aea497a10c0c374 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 21 Apr 2023 11:18:35 +0100 Subject: [PATCH] Bug 32894: Remove incorrect caching from bundle_items Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens --- Koha/Item.pm | 11 ++--------- Koha/Schema/Result/Item.pm | 3 +++ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Koha/Item.pm b/Koha/Item.pm index 0e951dee90d..542e52a7ccc 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -1622,15 +1622,8 @@ Returns the items associated with this bundle sub bundle_items { my ($self) = @_; - if ( !$self->{_bundle_items_cached} ) { - my $bundle_items = Koha::Items->search( - { 'item_bundles_item.host' => $self->itemnumber }, - { join => 'item_bundles_item' } ); - $self->{_bundle_items} = $bundle_items; - $self->{_bundle_items_cached} = 1; - } - - return $self->{_bundle_items}; + my $rs = $self->_result->bundle_items; + return Koha::Items->_new_from_dbic($rs); } =head3 is_bundle diff --git a/Koha/Schema/Result/Item.pm b/Koha/Schema/Result/Item.pm index d29296b77e5..980ea046c4a 100644 --- a/Koha/Schema/Result/Item.pm +++ b/Koha/Schema/Result/Item.pm @@ -982,6 +982,9 @@ __PACKAGE__->has_many( } ); +# Relationship with bundled items +__PACKAGE__->many_to_many( bundle_items => 'item_bundles_hosts', 'item' ); + __PACKAGE__->might_have( "last_returned_by", "Koha::Schema::Result::ItemsLastBorrower", -- 2.25.1