Skip to content

Commit

Permalink
✏️ Corriger l'affichage de l'ID potentiel (#2226)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque authored and HubM committed Sep 20, 2024
1 parent 58e1c4f commit c1be5e4
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ const mapToCertificateData = ({
return {};
}

const potentielId = [
candidature.identifiantProjet.appelOffre,
candidature.identifiantProjet.période,
candidature.identifiantProjet.famille,
candidature.identifiantProjet.numéroCRE,
]
.filter(Boolean)
.join('-');

return {
validateur: {
fullName: utilisateur.nomComplet,
Expand All @@ -103,7 +112,7 @@ const mapToCertificateData = ({

notifiedOn: new Date(notifiéLe).getTime(),
isClasse: candidature.statut.estClassé(),
potentielId: candidature.identifiantProjet.formatter().replaceAll('#', '-'),
potentielId,

nomProjet: candidature.nomProjet,
adresseProjet: [candidature.localité.adresse1, candidature.localité.adresse2]
Expand Down

0 comments on commit c1be5e4

Please sign in to comment.