Skip to content

Commit

Permalink
Feat : Ajout ILN dans webdto demandes
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed May 6, 2024
1 parent 57dbf76 commit 891bf79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions web/src/main/java/fr/abes/item/dto/DemandeExempWebDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public DemandeExempWebDto(DemandeExemp demande) {
String dateModification = format.format(demande.getDateModification());
this.id = demande.getId();
this.rcr = demande.getRcr();
this.iln = demande.getIln();
if (demande.getEtatDemande() != null)
this.etatDemande = demande.getEtatDemande().getLibelle();
this.commentaire = demande.getCommentaire();
Expand Down
1 change: 1 addition & 0 deletions web/src/main/java/fr/abes/item/dto/DemandeModifWebDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public DemandeModifWebDto(DemandeModif demande) {
String dateModification = format.format(demande.getDateModification());
this.id = demande.getId();
this.rcr = demande.getRcr();
this.iln = demande.getIln();
this.etatDemande = demande.getEtatDemande().getLibelle();
this.commentaire = demande.getCommentaire();
this.pourcentageProgressionTraitement = demande.getPourcentageProgressionTraitement();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public DemandeRecouvWebDto(DemandeRecouv demande) {
String dateModification = format.format(demande.getDateModification());
this.id = demande.getId();
this.rcr = demande.getRcr();
this.iln = demande.getIln();
this.etatDemande = demande.getEtatDemande().getLibelle();
this.commentaire = demande.getCommentaire();
this.pourcentageProgressionTraitement = demande.getPourcentageProgressionTraitement();
Expand Down

0 comments on commit 891bf79

Please sign in to comment.