diff --git a/src/views/Suppression/SuppSteps.vue b/src/views/Suppression/SuppSteps.vue index b4eafd3..24485d8 100644 --- a/src/views/Suppression/SuppSteps.vue +++ b/src/views/Suppression/SuppSteps.vue @@ -106,7 +106,7 @@ - + précédent { - - alertMessage.value = "Fichier envoyé"; + alertMessage.value = "Fichier envoyé, veuillez patienter quelques instants."; itemService.getFile(demande.value.id, 'SUPP','fichier_correspondance', '.csv') .then(response => { let blob = new Blob([response.data], {type: 'application/csv'}); @@ -316,7 +315,14 @@ function changeEtape() { typeFileSelected.value = null; } if ((currentStep.value + 1) === 2 && typeFileSelected.value) { //Changement d'etat pour le chargement du fichier car le back est perdu sinon - if(typeFileSelected.value === 'PPN') { + if(typeFileSelected.value==='EPN') {typeFileSelected.value=null;} + itemService.choixEtape(demande.value.id, 2, 'SUPP') + .then(response => { + demande.value = response.data; + }); + } + if ((currentStep.value + 1) === 3 ) { + if(typeFileSelected.value==='EPN'){ itemService.choixEtape(demande.value.id, 2, 'SUPP') .then(response => { demande.value = response.data; @@ -328,12 +334,6 @@ function changeEtape() { }); } } - if ((currentStep.value + 1) === 3 ) { - itemService.choixEtape(demande.value.id, 3, 'SUPP') - .then(response => { - demande.value = response.data; - }); - } } function prevSelectTypeFile(){ @@ -345,12 +345,6 @@ function prevSelectFile(){ changeEtape() raz(); } -function prevSelectFileFinal(){ - if(typeFileSelected.value==='EPN'){ - typeFileSelected.value = null; - } - prev(); -} function next() { currentStep.value++; raz();