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

(-)a/Koha/BackgroundJob/CreateEHoldingsFromBiblios.pm (-4 / +4 lines)
Lines 85-91 sub _get_unimarc_mapping { Link Here
85
    my $monograph_edition               = $record->subfield( '205', 'a' );
85
    my $monograph_edition               = $record->subfield( '205', 'a' );
86
    my $first_editor                    = $publisher_name;
86
    my $first_editor                    = $publisher_name;
87
    my $parent_publication_title_id     = '';                                  # FIXME ?
87
    my $parent_publication_title_id     = '';                                  # FIXME ?
88
    my $preceeding_publication_title_id = '';                                  # FIXME ?
88
    my $preceding_publication_title_id  = '';                                  # FIXME ?
89
    my $access_type                     = $record->subfield( '856', 'y' );
89
    my $access_type                     = $record->subfield( '856', 'y' );
90
90
91
    return {
91
    return {
Lines 112-118 sub _get_unimarc_mapping { Link Here
112
        monograph_edition               => $monograph_edition,
112
        monograph_edition               => $monograph_edition,
113
        first_editor                    => $first_editor,
113
        first_editor                    => $first_editor,
114
        parent_publication_title_id     => $parent_publication_title_id,
114
        parent_publication_title_id     => $parent_publication_title_id,
115
        preceeding_publication_title_id => $preceeding_publication_title_id,
115
        preceding_publication_title_id  => $preceding_publication_title_id,
116
        access_type                     => $access_type,
116
        access_type                     => $access_type,
117
    };
117
    };
118
}
118
}
Lines 146-152 sub _get_marc21_mapping { Link Here
146
    my $monograph_edition               = '';                                  # FIXME ?
146
    my $monograph_edition               = '';                                  # FIXME ?
147
    my $first_editor                    = '';                                  # FIXME ?
147
    my $first_editor                    = '';                                  # FIXME ?
148
    my $parent_publication_title_id     = '';                                  # FIXME ?
148
    my $parent_publication_title_id     = '';                                  # FIXME ?
149
    my $preceeding_publication_title_id = '';                                  # FIXME ?
149
    my $preceding_publication_title_id  = '';                                  # FIXME ?
150
    my $access_type                     = '';                                  # FIXME ?
150
    my $access_type                     = '';                                  # FIXME ?
151
151
152
    return {
152
    return {
Lines 173-179 sub _get_marc21_mapping { Link Here
173
        monograph_edition               => $monograph_edition,
173
        monograph_edition               => $monograph_edition,
174
        first_editor                    => $first_editor,
174
        first_editor                    => $first_editor,
175
        parent_publication_title_id     => $parent_publication_title_id,
175
        parent_publication_title_id     => $parent_publication_title_id,
176
        preceeding_publication_title_id => $preceeding_publication_title_id,
176
        preceding_publication_title_id  => $preceding_publication_title_id,
177
        access_type                     => $access_type,
177
        access_type                     => $access_type,
178
    };
178
    };
179
}
179
}
(-)a/Koha/ERM/Providers/EBSCO.pm (-1 / +1 lines)
Lines 47-53 sub build_title { Link Here
47
        # monograph_edition => ?,
47
        # monograph_edition => ?,
48
        # first_editor => ?,
48
        # first_editor => ?,
49
        # parent_publication_title_id => ?,
49
        # parent_publication_title_id => ?,
50
        # preceeding_publication_title_id => ?,
50
        # preceding_publication_title_id => ?,
51
        # access_type => ?,
51
        # access_type => ?,
52
    };
52
    };
53
    if ( $result->{contributorsList} ) {
53
    if ( $result->{contributorsList} ) {
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsEBSCOTitlesShow.vue (-3 / +3 lines)
Lines 202-208 Link Here
202
                            {{ title.parent_publication_title_id }}
202
                            {{ title.parent_publication_title_id }}
203
                        </span>
203
                        </span>
204
                    </li>
204
                    </li>
205
                    <li v-if="title.preceeding_publication_title_id">
205
                    <li v-if="title.preceding_publication_title_id">
206
                        <label
206
                        <label
207
                            >{{
207
                            >{{
208
                                $__(
208
                                $__(
Lines 211-217 Link Here
211
                            }}:</label
211
                            }}:</label
212
                        >
212
                        >
213
                        <span>
213
                        <span>
214
                            {{ title.preceeding_publication_title_id }}
214
                            {{ title.preceding_publication_title_id }}
215
                        </span>
215
                        </span>
216
                    </li>
216
                    </li>
217
                    <li v-if="title.access_type">
217
                    <li v-if="title.access_type">
Lines 283-289 export default { Link Here
283
                monograph_edition: "",
283
                monograph_edition: "",
284
                first_editor: "",
284
                first_editor: "",
285
                parent_publication_title_id: "",
285
                parent_publication_title_id: "",
286
                preceeding_publication_title_id: "",
286
                preceding_publication_title_id: "",
287
                access_type: "",
287
                access_type: "",
288
                resources: [],
288
                resources: [],
289
            },
289
            },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesFormAdd.vue (-4 / +4 lines)
Lines 333-339 Link Here
333
                        </li>
333
                        </li>
334
334
335
                        <li>
335
                        <li>
336
                            <label for="title_preceeding_publication_title_id"
336
                            <label for="title_preceding_publication_title_id"
337
                                >{{
337
                                >{{
338
                                    $__(
338
                                    $__(
339
                                        "Title identifier of any preceding publication title"
339
                                        "Title identifier of any preceding publication title"
Lines 341-348 Link Here
341
                                }}:</label
341
                                }}:</label
342
                            >
342
                            >
343
                            <input
343
                            <input
344
                                id="title_preceeding_publication_title_id"
344
                                id="title_preceding_publication_title_id"
345
                                v-model="title.preceeding_publication_title_id"
345
                                v-model="title.preceding_publication_title_id"
346
                                :placeholder="
346
                                :placeholder="
347
                                    $__(
347
                                    $__(
348
                                        'Title identifier of any preceding publication title'
348
                                        'Title identifier of any preceding publication title'
Lines 426-432 export default { Link Here
426
                monograph_edition: "",
426
                monograph_edition: "",
427
                first_editor: "",
427
                first_editor: "",
428
                parent_publication_title_id: "",
428
                parent_publication_title_id: "",
429
                preceeding_publication_title_id: "",
429
                preceding_publication_title_id: "",
430
                access_type: "",
430
                access_type: "",
431
                resources: [],
431
                resources: [],
432
            },
432
            },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesShow.vue (-4 / +3 lines)
Lines 219-225 Link Here
219
                            {{ title.parent_publication_title_id }}
219
                            {{ title.parent_publication_title_id }}
220
                        </span>
220
                        </span>
221
                    </li>
221
                    </li>
222
                    <li v-if="title.preceeding_publication_title_id">
222
                    <li v-if="title.preceding_publication_title_id">
223
                        <label
223
                        <label
224
                            >{{
224
                            >{{
225
                                $__(
225
                                $__(
Lines 228-234 Link Here
228
                            }}:</label
228
                            }}:</label
229
                        >
229
                        >
230
                        <span>
230
                        <span>
231
                            {{ title.preceeding_publication_title_id }}
231
                            {{ title.preceding_publication_title_id }}
232
                        </span>
232
                        </span>
233
                    </li>
233
                    </li>
234
                    <li v-if="title.access_type">
234
                    <li v-if="title.access_type">
Lines 303-309 export default { Link Here
303
                monograph_edition: "",
303
                monograph_edition: "",
304
                first_editor: "",
304
                first_editor: "",
305
                parent_publication_title_id: "",
305
                parent_publication_title_id: "",
306
                preceeding_publication_title_id: "",
306
                preceding_publication_title_id: "",
307
                access_type: "",
307
                access_type: "",
308
                resources: [],
308
                resources: [],
309
            },
309
            },
310
- 

Return to bug 34789