https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23793 --- Comment #6 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 94095 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=94095&action=edit Bug 23793: Add an EmbedItems RecordProcessor filter for MARC::Record objects This patch introduces a RecordProcessor filter for MARC::Record objects that embeds MARC::Field's for each item that is passed to the processor. Target usage: my $biblio = Koha::Biblios->find( $biblio_id, { prefetch => [ items, metadata ] } ); my $opachiddenitems_rules; eval { my $yaml = C4::Context->preference('OpacHiddenItems') . "\n\n"; $opachiddenitems_rules = YAML::Load($yaml); }; my @items = grep { !$_->hidden_in_opac({ rules => $opachiddenitems_rules }) @{$biblio->items->as_list}; my $record = $biblio->metadata->record; my $processor = Koha::RecordProcessor->new( { filters => ('EmbedItems'), options => { items => \@items } } ); $processor->process( $record ); -- You are receiving this mail because: You are watching all bug changes.