Skip to content

Commit

Permalink
FEAT ITEM-314-back-remettre-letat-de-la-demande-a-1-lors-du-changemen…
Browse files Browse the repository at this point in the history
…t-de-rcr :

     - modification de la méthode returnState() de DemandeSuppService.java
     - modification de la méthode returnState() de DemandeExempService.java
  • Loading branch information
EryneKL committed Oct 30, 2024
1 parent 657115d commit 9ddfbe6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,9 @@ public Demande previousState(Demande demande) throws DemandeCheckingException {
public Demande returnState(Integer etape, Demande demande) throws DemandeCheckingException {
DemandeExemp demandeExemp = (DemandeExemp) demande;
switch (etape) {
case 1:
demandeExemp.setEtatDemande(new EtatDemande(Constant.ETATDEM_PREPARATION)); // TODO tester cette correction pour les exemplarisations
return save(demandeExemp);
case 2:
//retour de la demande d'exemplarisation au stade choix du type, à l'état en saisie (=preparation)
demandeExemp.setTypeExemp(null); //effacement type d'exemplarisation obtenu a : ETAPE2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ public Demande returnState(Integer etape, Demande demande) throws DemandeCheckin
//étape sélection du type de fichier de suppression
case 1 -> {
demandeSupp.setTypeSuppression(null);
demandeSupp.setEtatDemande(new EtatDemande(Constant.ETATDEM_PREPARATION));
return save(demandeSupp);
}
//étape upload du fichier
Expand Down

0 comments on commit 9ddfbe6

Please sign in to comment.