Skip to content

Commit

Permalink
Merge pull request #16 from abes-esr/develop
Browse files Browse the repository at this point in the history
Merge develop dans main
  • Loading branch information
pierre-maraval authored Jun 27, 2024
2 parents d19c0f2 + 03173d0 commit 906ba19
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion batch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>fr.abes.cidemis</groupId>
<artifactId>cidemisbackoffice</artifactId>
<version>2.0.24</version>
<version>2.0.25-SNAPSHOT</version>
</parent>
<artifactId>batch</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>fr.abes.cidemis</groupId>
<artifactId>cidemisbackoffice</artifactId>
<version>2.0.24</version>
<version>2.0.25-SNAPSHOT</version>
</parent>
<packaging>jar</packaging>
<artifactId>core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private void testZonesCorr(List<String> zonesManquantes) {
zonesManquantes.add("035 : Il ne peut y avoir qu'un seul identifiant de la notice dans un autre système (ISSN)");
if (this.getPaysTRUE().isEmpty())
zonesManquantes.add("102 : Pays de publication");
if (this.getTypeDeRessourceContinue().isEmpty())
if (this.getTypeDeRessourceContinue() == null || this.getTypeDeRessourceContinue().isEmpty())
zonesManquantes.add("110 : Type de ressource continue");
if (this.getTitrecle() == null || this.getTitrecle().isEmpty())
zonesManquantes.add("530 : Titre clé");
Expand All @@ -269,7 +269,7 @@ private void testZonesNum(List<String> zonesManquantes, List<String> zonesPresen
// Test des zones manquantes
if (this.getPaysTRUE().isEmpty())
zonesManquantes.add("102 : Pays de publication");
if (this.getTypeDeRessourceContinue().isEmpty())
if (this.getTypeDeRessourceContinue() == null || this.getTypeDeRessourceContinue().isEmpty())
zonesManquantes.add("110$a : Type de ressource continue");
if ("z".equals(this.getTypeDeRessourceContinue()))
zonesManquantes.add("Merci de préciser le type de publication (110$a)");
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.abes.cidemis</groupId>
<artifactId>cidemisbackoffice</artifactId>
<version>2.0.24</version>
<version>2.0.25-SNAPSHOT</version>
<modules>
<module>core</module>
<module>web</module>
Expand Down
2 changes: 1 addition & 1 deletion web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>fr.abes.cidemis</groupId>
<artifactId>cidemisbackoffice</artifactId>
<version>2.0.24</version>
<version>2.0.25-SNAPSHOT</version>
</parent>
<artifactId>web</artifactId>
<packaging>war</packaging>
Expand Down

0 comments on commit 906ba19

Please sign in to comment.