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

(-)a/Koha/ILL/Backend/Standard.pm (-1 / +3 lines)
Lines 677-683 sub migrate { Link Here
677
        $new_request->updated( dt_from_string() );
677
        $new_request->updated( dt_from_string() );
678
        $new_request->store;
678
        $new_request->store;
679
679
680
        my @default_attributes = (qw/title type author year volume isbn issn article_title article_author pages/);
680
        my @default_attributes = (qw/title type author year volume isbn issn eissn article_title article_author pages/);
681
        my $original_attributes =
681
        my $original_attributes =
682
            $original_request->extended_attributes->search( { type => { '-in' => \@default_attributes } } );
682
            $original_request->extended_attributes->search( { type => { '-in' => \@default_attributes } } );
683
683
Lines 886-891 sub _get_core_fields { Link Here
886
        conference_date => __('Conference date'),
886
        conference_date => __('Conference date'),
887
        doi             => __('DOI'),
887
        doi             => __('DOI'),
888
        editor          => __('Editor'),
888
        editor          => __('Editor'),
889
        eissn           => __('eISSN'),
889
        format          => __('Format'),
890
        format          => __('Format'),
890
        genre           => __('Genre'),
891
        genre           => __('Genre'),
891
        institution     => __('Institution'),
892
        institution     => __('Institution'),
Lines 1000-1005 sub _openurl_to_ill { Link Here
1000
        volume  => 'volume',
1001
        volume  => 'volume',
1001
        isbn    => 'isbn',
1002
        isbn    => 'isbn',
1002
        issn    => 'issn',
1003
        issn    => 'issn',
1004
        eissn   => 'eissn',
1003
        doi     => 'doi',
1005
        doi     => 'doi',
1004
        year    => 'year',
1006
        year    => 'year',
1005
        title   => 'title',
1007
        title   => 'title',
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill/backends/Standard/shared/form_input_helpers.inc (+1 lines)
Lines 54-57 Link Here
54
    [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %]
54
    [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %]
55
    [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
55
    [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
56
    [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
56
    [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
57
    [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
57
[% END %]
58
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill/backends/Standard/shared/forms/conference.inc (+1 lines)
Lines 9-14 Link Here
9
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
9
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
10
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
10
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
11
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
11
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
12
        [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
12
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part') value = whole.value.other.part_edition %]
13
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part') value = whole.value.other.part_edition %]
13
        [% PROCESS ill_text_input_field id = 'paper_title' label = t('Paper title') value = whole.value.other.paper_title %]
14
        [% PROCESS ill_text_input_field id = 'paper_title' label = t('Paper title') value = whole.value.other.paper_title %]
14
        [% PROCESS ill_text_input_field id = 'paper_author' label = t('Paper author') value = whole.value.other.paper_author %]
15
        [% PROCESS ill_text_input_field id = 'paper_author' label = t('Paper author') value = whole.value.other.paper_author %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/ill/backends/Standard/shared/forms/resource.inc (+1 lines)
Lines 12-17 Link Here
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
13
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
13
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
14
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
14
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
15
        [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
15
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
16
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
16
    </ol>
17
    </ol>
17
</fieldset>
18
</fieldset>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/shared/form_input_helpers.inc (+1 lines)
Lines 54-57 Link Here
54
    [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %]
54
    [% PROCESS ill_text_input_field id = 'issue' label = t('Issue number') value = whole.value.other.issue %]
55
    [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
55
    [% PROCESS ill_text_input_field id = 'year' label = t('Year') value = whole.value.other.year %]
56
    [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
56
    [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
57
    [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
57
[% END %]
58
[% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/shared/forms/conference.inc (+1 lines)
Lines 9-14 Link Here
9
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
9
        [% PROCESS ill_text_input_field id = 'volume' label = t('Volume') value = whole.value.other.volume %]
10
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
10
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
11
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
11
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
12
        [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
12
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part') value = whole.value.other.part_edition %]
13
        [% PROCESS ill_text_input_field id = 'part_edition' label = t('Part') value = whole.value.other.part_edition %]
13
        [% PROCESS ill_text_input_field id = 'paper_title' label = t('Paper title') value = whole.value.other.paper_title %]
14
        [% PROCESS ill_text_input_field id = 'paper_title' label = t('Paper title') value = whole.value.other.paper_title %]
14
        [% PROCESS ill_text_input_field id = 'paper_author' label = t('Paper author') value = whole.value.other.paper_author %]
15
        [% PROCESS ill_text_input_field id = 'paper_author' label = t('Paper author') value = whole.value.other.paper_author %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/shared/forms/resource.inc (-1 / +1 lines)
Lines 12-17 Link Here
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
12
        [% PROCESS ill_text_input_field id = 'pages' label = t('Pages') value = whole.value.other.pages %]
13
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
13
        [% PROCESS ill_text_input_field id = 'isbn' label = t('ISBN') value = whole.value.other.isbn %]
14
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
14
        [% PROCESS ill_text_input_field id = 'issn' label = t('ISSN') value = whole.value.other.issn %]
15
        [% PROCESS ill_text_input_field id = 'eissn' label = t('eISSN') value = whole.value.other.eissn %]
15
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
16
        [% PROCESS ill_text_input_field id = 'doi' label = t('DOI') value = whole.value.other.doi %]
16
    </ol>
17
    </ol>
17
</fieldset>
18
</fieldset>
18
- 

Return to bug 41054