https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=34739 --- Comment #30 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- (In reply to Jonathan Druart from comment #29)
If you run t/db_dependent/Biblio.t first, then Merge.t will fail.
I guess there are modifications made by Biblio.t to the MSS (marc subfield structure), either in DB or cached.
I have noticed this suspicious stuff:
698 $biblio_record->insert_fields_ordered( 699 MARC::Field->new( '609', '1', '1', a => 'Brown,', 'c' => 'Father', 9 => $authid ) ); 700 my $biblionumber = AddBiblio( $biblio_record, '', { skip_record_index => 1 } );
if you dump $biblio_record->as_formatted you see the 609 field.
BUT, if you add the following line right after: my $test = Koha::Biblios->find($biblionumber)->metadata->record then dump $test->as_formatted
=> 609 is not there (??)
Sounds like a framework issue. -- You are receiving this mail because: You are watching all bug changes.