Skip to content

Commit

Permalink
Merge pull request #79 from abes-esr/develop
Browse files Browse the repository at this point in the history
FIX : changement zone note 371 dans mapping
  • Loading branch information
SamuelQuetin authored Oct 31, 2024
2 parents 089f774 + b82eef0 commit c7d7bb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.3</version>
<version>3.2.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>fr.abes</groupId>
Expand Down Expand Up @@ -83,7 +83,7 @@
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.11.3</version>
<version>1.11.4</version>
</dependency>
<dependency>
<groupId>io.confluent</groupId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/fr/abes/kafkatosudoc/utils/NoticeMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public NoticeConcrete convert(MappingContext<LigneKbartConnect, NoticeConcrete>
if (kbart.getACCESSTYPE().toString().equals("F"))
noticeBiblio.addZone("371", "$a", "Ressource en accès libre", new char[]{'0', '#'});
else
noticeBiblio.addZone("371", "$a", "Accès en ligne réservé aux établissements ou bibliothèques qui en ont fait l'acquisition", new char[]{'0', '#'});
noticeBiblio.addZone("371", "$a", "Accès en ligne réservé aux établissements ou bibliothèques ayant souscrit l'abonnement", new char[]{'0', '#'});

//1er auteur
if (!kbart.getFIRSTAUTHOR().isEmpty()) {
Expand Down Expand Up @@ -273,7 +273,7 @@ public NoticeConcrete convert(MappingContext<KbartAndImprimeDto, NoticeConcrete>
if (kbart.getAccessType().toString().equals("F"))
noticeElec.addZone("371", "$a", "Ressource en accès libre", new char[]{'0', '#'});
else
noticeElec.addZone("371", "$a", "Accès en ligne réservé aux établissements ou bibliothèques qui en ont fait l'acquisition", new char[]{'0', '#'});
noticeElec.addZone("371", "$a", "Accès en ligne réservé aux établissements ou bibliothèques ayant souscrit l'abonnement", new char[]{'0', '#'});

noticeElec.addZone("452", "$0", kbart.getPpn().toString(), new char[]{'#', '#'});

Expand Down

0 comments on commit c7d7bb4

Please sign in to comment.