|
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 |
} |