Bug 25229: Return authid of record rather than 001
authorNick Clemens <nick@bywatersolutions.com>
Tue, 21 Apr 2020 13:47:59 +0000 (13:47 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Wed, 29 Apr 2020 15:16:53 +0000 (16:16 +0100)
Signed-off-by: Frédéric Demians <f.demians@tamil.fr>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha/SearchEngine/Elasticsearch/Search.pm

index a5b410e..0bc8c3e 100644 (file)
@@ -207,12 +207,10 @@ sub search_auth_compat {
         my $record = $es_record->{'_source'};
         my %result;
 
-        # I wonder if these should be real values defined in the mapping
-        # rather than hard-coded conversions.
-        #my $record    = $_[0];
-        # Handle legacy nested arrays indexed with splitting enabled.
-        my $authid = $record->{ 'local-number' }[0];
-        $authid = @$authid[0] if (ref $authid eq 'ARRAY');
+        # We are using the authid to create links, we should honor the authid as stored in the db, not
+        # the 001 which, in some circumstances, can contain other data
+        my $authid = $es_record->{_id};
+
 
         $result{authid} = $authid;