Bug 28378: Elasticsearch - Add 264c to default copydate mappings (MARC21)
[koha-ffzg.git] / Koha / MetadataRecord.pm
index 8b0d8a4..3426ea5 100644 (file)
@@ -4,18 +4,18 @@ package Koha::MetadataRecord;
 #
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 =head1 NAME
 
@@ -34,7 +34,8 @@ and authority) records in Koha.
 
 use Modern::Perl;
 
-use Carp;
+use Carp qw( carp );
+use C4::Biblio;
 use Koha::Util::MARC;
 
 use base qw(Class::Accessor);
@@ -87,17 +88,8 @@ sub new {
         return;
     }
 
-    my $record = $params->{ record };
-    my $schema = $params->{ schema };
-    my $format = $params->{ format } // 'MARC';
-    my $id     = $params->{ id };
-
-    my $self = $class->SUPER::new({
-        record => $record,
-        schema => $schema,
-        format => $format,
-        id     => $id
-    });
+    $params->{format} //= 'MARC';
+    my $self = $class->SUPER::new($params);
 
     bless $self, $class;
     return $self;
@@ -117,4 +109,17 @@ sub createMergeHash {
     }
 }
 
+=head2 getKohaField
+
+    $metadata->{$key} = $record->getKohaField($kohafield);
+
+=cut
+
+sub getKohaField {
+    my ($self, $kohafield) = @_;
+    if ($self->schema =~ m/marc/) {
+        return C4::Biblio::TransformMarcToKohaOneField($kohafield, $self->record);
+    }
+}
+
 1;