23 May
2024
23 May
'24
9:22 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=26869 --- Comment #28 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Pedro will be able to tell you more, but on first glance it seems good for UNIMARC: +sub marc_record_contains_item_data { + my ($record) = @_; + + my $itemfield = C4::Context->preference('marcflavour') eq 'UNIMARC' ? '995' : '952'; + my @item_fields = $record->field($itemfield); + return scalar @item_fields; +} We still need a sign-off, maybe you could test with a UNIMARC sandbox? -- You are receiving this mail because: You are watching all bug changes.