Skip to content

Commit

Permalink
gestion etablissements en erreur
Browse files Browse the repository at this point in the history
  • Loading branch information
khergalant committed Feb 27, 2024
1 parent 606aad5 commit 063ff87
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package fr.univlorraine.ecandidat.controllers;

import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;

Expand Down Expand Up @@ -358,12 +359,25 @@ private void syncEtablissement() throws SiScolException {
if (listeSiScol == null) {
return;
}
if (launchBatchWithListOption) {
siScolEtablissementRepository.save(listeSiScol);
} else {
listeSiScol.forEach(etablissement -> {
// if (launchBatchWithListOption) {
// siScolEtablissementRepository.save(listeSiScol);
// } else {
// listeSiScol.forEach(etablissement -> {
// siScolEtablissementRepository.saveAndFlush(etablissement);
// });
// }
/* Erreur d'encodage des établissements */
final List<SiScolEtablissement> listError = new ArrayList<>();
listeSiScol.forEach(etablissement -> {
try {
siScolEtablissementRepository.saveAndFlush(etablissement);
});
} catch (final Exception e) {
listError.add(etablissement);
logger.warn("Erreur d'enregistrement l'etablissement : '" + etablissement.getCodTpeEtb() + "' - '" + etablissement.getLibEtb() + "'", e);
}
});
if (listError.size() > 0) {
logger.error("Erreur d'enregistrement de " + listError.size() + " etablissements, voir warnings fichier de log");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ public List<SiScolEtablissement> getListSiScolEtablissement() throws SiScolExcep
/** TODO à supprimer quand commune OK */
final SiScolCommune comm = tableRefController.getCommuneByCode(codComm);
if (comm == null) {
logger.warn("Commune absente : " + codComm);
logger.warn("Commune '" + codComm + "' absente pour l'etablissement : '" + e.getNumeroUai() + "' - '" + e.getLibelleAffichage() + "'");
return;
}
etab.setSiScolCommune(new SiScolCommune(codComm, getTypSiscol()));
Expand Down

0 comments on commit 063ff87

Please sign in to comment.