Skip to content

Commit

Permalink
Récupère la 5ème anomalies dans l'import CTP
Browse files Browse the repository at this point in the history
Issue: #208916
Change-Id: I9aa4a0df31d96902a2765c4c69020abb4bda938a
  • Loading branch information
Renaud-Kieffer committed Mar 13, 2024
1 parent 8789ebb commit 1f85f82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ private LigneImportCtpData checkLineValidity(
List<Long> id_anomalies = new ArrayList<>();

// On récupère les identifiants des anomalies inscrites dans le fichier
for (int i = CTP_DEBUT_ANOMALIE_INDEX; i < CTP_FIN_ANOMALIE_INDEX; i++) {
for (int i = CTP_DEBUT_ANOMALIE_INDEX; i <= CTP_FIN_ANOMALIE_INDEX; i++) {
if (row.getCell(i) != null
&& row.getCell(i).getCellType() != CellType.BLANK
&& !row.getCell(i).getStringCellValue().trim().isEmpty()) {
Expand Down

0 comments on commit 1f85f82

Please sign in to comment.