From c3eabe5c715f657cd54b2c26816119ea4eb62744 Mon Sep 17 00:00:00 2001 From: pierre-maraval Date: Thu, 17 Oct 2024 09:03:26 +0200 Subject: [PATCH] =?UTF-8?q?FIX=20:=20Correction=20condition=20dans=20v?= =?UTF-8?q?=C3=A9rification=20fichier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/fr/abes/item/core/components/FichierEnrichiSupp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java b/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java index e9999f47..e6a4bed8 100644 --- a/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java +++ b/core/src/main/java/fr/abes/item/core/components/FichierEnrichiSupp.java @@ -85,7 +85,7 @@ private void check3Cols(String ligne) throws FileCheckingException { private void checkBodyLine(String ligne, DemandeSupp demandeSupp) throws FileCheckingException { try { String[] tabligne = ligne.split(";"); - if (demandeSupp.getTypeDemande().equals(TYPE_SUPPRESSION.EPN) && tabligne[0] != null) { + if (demandeSupp.getTypeSuppression().equals(TYPE_SUPPRESSION.EPN) && tabligne[0] != null) { checkPpn(tabligne[0], ligneCourante); } checkRcr(tabligne[1], demandeSupp.getRcr(), ligneCourante);