Skip to content

Commit

Permalink
Merge pull request #46 from abes-esr/develop
Browse files Browse the repository at this point in the history
Fix : Ajout cas d'un message d'information supplémentaire à un messag…
  • Loading branch information
pierre-maraval authored Dec 3, 2024
2 parents f74f1d5 + 97051b4 commit 5a8c4a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/abes/cbs/utilitaire/Utilitaire.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static String recupEntre(final String ligne, final String tag, final Stri
* @return nombre de notices retourné par commande CHE
*/
public static Integer getNbNoticesFromChe(String resu) {
if (resu.startsWith("M02"))
if (resu.startsWith("M02") || resu.startsWith("M03"))
return 0;
return Integer.parseInt(Utilitaire.recupEntre(resu, Constants.STR_1D + "VSZ", Constants.STR_1D));
}
Expand Down

0 comments on commit 5a8c4a2

Please sign in to comment.