View | Details | Raw Unified | Return to bug 38142
Collapse All | Expand All

(-)a/C4/AuthoritiesMarc.pm (-2 / +19 lines)
Lines 1619-1626 sub merge { Link Here
1619
    my $auth_tag_to_report_to   = $authtypeto   ? $authtypeto->auth_tag_to_report   : '';
1619
    my $auth_tag_to_report_to   = $authtypeto   ? $authtypeto->auth_tag_to_report   : '';
1620
1620
1621
    my @record_to;
1621
    my @record_to;
1622
    @record_to = $MARCto->field($auth_tag_to_report_to)->subfields()
1622
1623
        if $auth_tag_to_report_to && $MARCto && $MARCto->field($auth_tag_to_report_to);
1623
    my $short_langcode = C4::Context->preference('LanguageToReportOnMerge');
1624
    if ( $auth_tag_to_report_to && $MARCto && $MARCto->field($auth_tag_to_report_to) ) {
1625
        my $chosen_field = $MARCto->field($auth_tag_to_report_to);
1626
        if ($short_langcode) {
1627
            foreach my $field ( $MARCto->field($auth_tag_to_report_to) ) {
1628
                my $subfield = $field->subfield('7');
1629
                if (
1630
                    defined $subfield
1631
                    && (   ( length($subfield) == 2 && $subfield eq $short_langcode )
1632
                        || ( length($subfield) == 8 && substr( $subfield, 4, 2 ) eq $short_langcode ) )
1633
                    )
1634
                {
1635
                    $chosen_field = $field;
1636
                }
1637
            }
1638
        }
1639
        @record_to = $chosen_field->subfields();
1640
    }
1624
1641
1625
    # Exceptional: If MARCto and authtypeto exist but $auth_tag_to_report_to
1642
    # Exceptional: If MARCto and authtypeto exist but $auth_tag_to_report_to
1626
    # is empty, make sure that $9 and $a remain (instead of clearing the
1643
    # is empty, make sure that $9 and $a remain (instead of clearing the
(-)a/installer/data/mysql/atomicupdate/Bug38142.pl (+18 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "38142",
5
    description => "LanguageToReportOnMerge",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
        $dbh->do(
10
            q{
11
            INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES
12
           ('LanguageToReportOnMerge','','','If set, the authority field having the given language code in its $7 subfield will be reported to the bibliographic record if it exists, rather than the first field. The code can be in a short, 2 characters long form (example: ba for latin) or in a long, 8 characters long form, with the short form in position 5 and 6 starting from 1 (example: ba0yba0y for latin). A list of available codes can be found here: https://documentation.abes.fr/sudoc/formats/unmb/DonneesCodees/CodesZone104.htm#$d','Free');
13
        }
14
        );
15
16
        say $out "Added new syspref 'LanguageToReportOnMerge'";
17
    }
18
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 370-375 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
370
('KohaManualBaseURL','https://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'),
370
('KohaManualBaseURL','https://koha-community.org/manual/','','Where is the Koha manual/documentation located?','Free'),
371
('KohaManualLanguage','en','en|ar|cs|de|es|fr|it|pt_BR|tr|zh_TW','What is the language of the online manual you want to use?','Choice'),
371
('KohaManualLanguage','en','en|ar|cs|de|es|fr|it|pt_BR|tr|zh_TW','What is the language of the online manual you want to use?','Choice'),
372
('LabelMARCView','standard','standard|economical','Define how a MARC record will display','Choice'),
372
('LabelMARCView','standard','standard|economical','Define how a MARC record will display','Choice'),
373
('LanguageToReportOnMerge','',NULL,'If set, the authority field having the given language code in its $7 subfield will be reported to the bibliographic record if it exists, rather than the first field. The code can be in a short, 2 characters long form (example: ba for latin) or in a long, 8 characters long form, with the short form in position 5 and 6 starting from 1 (example: ba0yba0y for latin). A list of available codes can be found here: https://documentation.abes.fr/sudoc/formats/unmb/DonneesCodees/CodesZone104.htm#$d','Free'),
373
('LibraryName','','','Define the library name as displayed on the OPAC',''),
374
('LibraryName','','','Define the library name as displayed on the OPAC',''),
374
('LibraryThingForLibrariesEnabled','0','','Enable or Disable Library Thing for Libraries Features','YesNo'),
375
('LibraryThingForLibrariesEnabled','0','','Enable or Disable Library Thing for Libraries Features','YesNo'),
375
('LibraryThingForLibrariesID','','','See:http://librarything.com/forlibraries/','free'),
376
('LibraryThingForLibrariesID','','','See:http://librarything.com/forlibraries/','free'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/authorities.pref (-1 / +3 lines)
Lines 103-109 Authorities: Link Here
103
                  0: "Don't"
103
                  0: "Don't"
104
            - consider the intended use of MARC21 authority records (008/14-16) during cataloging and linking.
104
            - consider the intended use of MARC21 authority records (008/14-16) during cataloging and linking.
105
            - "<br/>NOTE: If you enable this preference, 'No attempt to code' in 008/14-16 is excluded from search results too."
105
            - "<br/>NOTE: If you enable this preference, 'No attempt to code' in 008/14-16 is excluded from search results too."
106
106
        -
107
            - "If set, the authority field having the given language code in its $7 subfield will be reported to the bibliographic record if it exists, rather than the first field. The code can be in a short, 2 characters long form (example: ba for latin) or in a long, 8 characters long form, with the short form in position 5 and 6 starting from 1 (example: ba0yba0y for latin). A list of available codes can be found here: https://documentation.abes.fr/sudoc/formats/unmb/DonneesCodees/CodesZone104.htm#$d"
108
            - pref: LanguageToReportOnMerge
107
    Linker:
109
    Linker:
108
        -
110
        -
109
            - Use the
111
            - Use the
(-)a/t/db_dependent/Authority/Merge.t (-3 / +73 lines)
Lines 3-11 Link Here
3
# Tests for C4::AuthoritiesMarc::merge
3
# Tests for C4::AuthoritiesMarc::merge
4
4
5
use Modern::Perl;
5
use Modern::Perl;
6
7
use Test::NoWarnings;
6
use Test::NoWarnings;
8
use Test::More tests => 13;
7
use Test::More tests => 14;
9
8
10
use Getopt::Long;
9
use Getopt::Long;
11
use MARC::Record;
10
use MARC::Record;
Lines 211-216 subtest 'Test merge A1 to modified A1, test strict mode' => sub { Link Here
211
    # Note: the +1 comes from the added subfield $9 in the biblio
210
    # Note: the +1 comes from the added subfield $9 in the biblio
212
};
211
};
213
212
213
subtest 'Test merge A1 to B1 (choosing language)' => sub {
214
    plan tests => 4;
215
216
    t::lib::Mocks::mock_preference( 'LanguageToReportOnMerge', '' );
217
218
    my $auth1 = MARC::Record->new;
219
    $auth1->append_fields(
220
        MARC::Field->new( '109', '0', '0', 'a' => 'language da', '7' => 'da' ),
221
        MARC::Field->new( '109', '0', '0', 'a' => 'language ba', '7' => 'ba' ),
222
    );
223
    my $authid1 = AddAuthority( $auth1, undef, $authtype1 );
224
225
    my $marc = MARC::Record->new;
226
    $marc->append_fields(
227
        MARC::Field->new( '003', 'some_003' ),
228
        MARC::Field->new( '245', '', '', a => 'My title' ),
229
        MARC::Field->new( '609', '', '', a => 'language ba', '7' => 'ba', 9 => $authid1 ),
230
    );
231
    my ($biblionumber) = C4::Biblio::AddBiblio( $marc, '' );
232
233
    @linkedrecords = ($biblionumber);
234
    C4::AuthoritiesMarc::merge( { mergefrom => $authid1, MARCfrom => $auth1, mergeto => $authid1, MARCto => $auth1 } );
235
    my $biblio = Koha::Biblios->find($biblionumber)->metadata->record;
236
237
    is(
238
        $biblio->subfield( '609', 'a' ), 'language da',
239
        'When LanguageToReportOnMerge is not set, the first authority field is used'
240
    );
241
242
    t::lib::Mocks::mock_preference( 'LanguageToReportOnMerge', 'ba' );
243
    C4::AuthoritiesMarc::merge( { mergefrom => $authid1, MARCfrom => $auth1, mergeto => $authid1, MARCto => $auth1 } );
244
    $biblio = Koha::Biblios->find($biblionumber)->metadata->record;
245
    is(
246
        $biblio->subfield( '609', 'a' ), 'language ba',
247
        'When LanguageToReportOnMerge is set, the field with the matching language is reported'
248
    );
249
250
    t::lib::Mocks::mock_preference( 'LanguageToReportOnMerge', 'xx' );
251
    C4::AuthoritiesMarc::merge( { mergefrom => $authid1, MARCfrom => $auth1, mergeto => $authid1, MARCto => $auth1 } );
252
    $biblio = Koha::Biblios->find($biblionumber)->metadata->record;
253
    is(
254
        $biblio->subfield( '609', 'a' ), 'language da',
255
        'When LanguageToReportOnMerge is set to a value that does not exist in the authority, the first authority field is used'
256
    );
257
258
    # Long form of lang code
259
    t::lib::Mocks::mock_preference( 'LanguageToReportOnMerge', 'ba' );
260
    my $auth2 = MARC::Record->new;
261
    $auth2->append_fields(
262
        MARC::Field->new( '109', '0', '0', 'a' => 'language da (long form)', '7' => 'ba0yda0y' ),
263
        MARC::Field->new( '109', '0', '0', 'a' => 'language ba (long form)', '7' => 'ba0yba0y' ),
264
    );
265
    my $authid2 = AddAuthority( $auth2, undef, $authtype1 );
266
267
    $marc = MARC::Record->new;
268
    $marc->append_fields(
269
        MARC::Field->new( '003', 'some_003' ),
270
        MARC::Field->new( '245', '', '', a => 'My title' ),
271
        MARC::Field->new( '609', '', '', a => 'language ba', '7' => 'ba', 9 => $authid2 ),
272
    );
273
    my ($biblionumber2) = C4::Biblio::AddBiblio( $marc, '' );
274
275
    @linkedrecords = ($biblionumber2);
276
    C4::AuthoritiesMarc::merge( { mergefrom => $authid2, MARCfrom => $auth2, mergeto => $authid2, MARCto => $auth2 } );
277
    my $biblio2 = Koha::Biblios->find($biblionumber2)->metadata->record;
278
    is(
279
        $biblio2->subfield( '609', 'a' ), 'language ba (long form)',
280
        'When LanguageToReportOnMerge is set, the field with the matching language in its long form is reported'
281
    );
282
283
};
284
214
subtest 'Test merge A1 to B1 (changing authtype)' => sub {
285
subtest 'Test merge A1 to B1 (changing authtype)' => sub {
215
286
216
    # Tests were aimed for bug 9988, moved to 17909 in adjusted form
287
    # Tests were aimed for bug 9988, moved to 17909 in adjusted form
217
- 

Return to bug 38142