https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=38093
Arthur Suzuki <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|BLOCKED |In Discussion CC| |[email protected] --- Comment #9 from Arthur Suzuki <[email protected]> --- Hi Victor, I've made some work to get things moving, I think this patch can no longer be considered as "BLOCKED" since the patch it was relying upon has been resolved as duplicate. I've removed the dependency to the duplicate and with minor changes to previous patches was able to apply that one. There is a small typo in the first patch which should be fixed this way : <pre> kohadev-koha@kohadevbox:koha(malles)$ git diff diff --git a/Koha/Biblio.pm b/Koha/Biblio.pm index d8e378f47e4..579027d1b9b 100644 --- a/Koha/Biblio.pm +++ b/Koha/Biblio.pm @@ -2220,7 +2220,7 @@ sub link_marc_bundled_item { if ( ref( $params->{bundled_item} ) eq 'Koha::Item' ) { $bundled_item = $params->{bundled_item}; } else { - my $bundled_item = Koha::Items->find( $params->{host} ); + my $bundled_item = Koha::Items->find( $params->{bundled_item} ); } my $record = $self->metadata->record; </pre> Also the test plan has another typo (says 733 in step 4, it should be 774). Test plan may also document that 774 subfields 0,9 and t should be configured in the marc framework, and systempreference "EasyAnalyticalRecords" set to 1. Otherwise it may not work. I'm setting this patch to In Discussion because it needs some changes which I need to discuss a bit further with BibLibre's colleagues before submitting. Arthur -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
