[Koha-bugs] [Bug 27272] Move C4::Items::GetItemsInfo to Koha namespace

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Dec 18 04:08:05 CET 2020


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27272

Tomás Cohen Arazi <tomascohen at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tomascohen at gmail.com

--- Comment #1 from Tomás Cohen Arazi <tomascohen at gmail.com> ---
This method should just be removed and a mix of things used instead:

my $biblio = Koha::Biblios->find($biblio_id, {prefetch =>['items',
'biblioitem'] });
my @items = $biblio->items;
my $biblioitem = $biblio->biblioitem;

^^^ could do most of it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list