Skip to content

Commit

Permalink
Merge pull request #102 from abes-esr/develop
Browse files Browse the repository at this point in the history
Merge develop dans main
  • Loading branch information
SamuelQuetin authored Nov 25, 2024
2 parents 3d994b1 + 0335db7 commit 3ec0cb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>fr.abes</groupId>
<artifactId>sudoc</artifactId>
<version>1.0.1</version>
<version>1.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>sudoc</name>
<description>webservices de récupération de ppns dans le sudoc</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public List<String> doiToPpn(String doi) throws UncategorizedSQLException {
request.append("' and a.tag='017$a' ");
request.append("and a.id in (select /*+ no_index(b BIBLIO_TABLE_FRBR_0XX_IDX_DATA) */ id from autorites.biblio_table_FRBR_0xx b where ");
request.append("a.id=b.id and ");
request.append("b.tag='017$2' and SUBSTR(b.datas,1,50)='DOI' and a.POSFIELD=b.POSFIELD and b.POSSUBFIELD='2')");
request.append("b.tag='017$2' and upper(SUBSTR(b.datas,1,50))='DOI' and a.POSFIELD=b.POSFIELD and b.POSSUBFIELD='2')");
return baseXmlJdbcTemplate.queryForList(request.toString(), String.class);
}
}

0 comments on commit 3ec0cb2

Please sign in to comment.