Skip to content

Commit

Permalink
🐛 Correction données projet (#2350)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque authored Oct 21, 2024
1 parent 0dd09c3 commit aed2fe8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export interface ProjectDataCorrectedPayload {
nomProjet: string;
territoireProjet: string;
puissance: number;
puissanceInitiale: number;
prixReference: number;
evaluationCarbone: number;
note: number;
Expand All @@ -21,6 +22,7 @@ export interface ProjectDataCorrectedPayload {
isFinancementParticipatif: boolean;
isInvestissementParticipatif: boolean;
motifsElimination: string;
actionnaire: string;
actionnariat?: Actionnariat;
}>;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export interface ProjectRawDataCorrectedPayload {
nomProjet: string;
territoireProjet: string;
puissance: number;
puissanceInitiale: number;
prixReference: number;
evaluationCarbone: number;
note: number;
Expand All @@ -22,6 +23,7 @@ export interface ProjectRawDataCorrectedPayload {
isFinancementParticipatif: boolean;
isInvestissementParticipatif: boolean;
motifsElimination: string;
actionnaire: string;
actionnariat?: Actionnariat;
};
}
Expand Down
3 changes: 2 additions & 1 deletion packages/applications/legacy/src/sagas/candidature.saga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ const mapToLegacyEventPayload = (
garantiesFinancièresType: getTypeGarantiesFinancieresLabel(payload.typeGarantiesFinancières),
technologie: payload.technologie,
historiqueAbandon: payload.historiqueAbandon,
actionnaire: payload.sociétéMère,
désignationCatégorie: getDésignationCatégorie({
puissance: payload.puissanceProductionAnnuelle,
note: payload.noteTotale,
Expand All @@ -191,7 +190,9 @@ const mapToCorrectedData = (
nomRepresentantLegal: payload.nomReprésentantLégal,
email: payload.emailContact,
motifsElimination: payload.motifÉlimination ?? '',
actionnaire: payload.sociétéMère,
puissance: payload.puissanceProductionAnnuelle,
puissanceInitiale: payload.puissanceProductionAnnuelle,
engagementFournitureDePuissanceAlaPointe: payload.puissanceALaPointe,
prixReference: payload.prixReference,
note: payload.noteTotale,
Expand Down

0 comments on commit aed2fe8

Please sign in to comment.