Skip to content

Commit

Permalink
✨ Renommer SEI en EDF SEI (#2569)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque authored Jan 6, 2025
1 parent 40000c5 commit b04a859
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ const récupérerGRDParTranche = async (offset: string): Promise<OreGestionnaire

const parsedResult = OREresultSchema.parse(result);

const mapRaisonSociale: Record<string, string> = {
SEI: 'EDF SEI',
};

/**
* Règle métier : quand aucun code EIC n'est fourni, on utilise la raison sociale (ou grd)
*/
const parsedResultsWithNonNullableEIC = parsedResult.results.map((gestionnaire) => ({
...gestionnaire,
eic: gestionnaire.eic ?? gestionnaire.grd,
grd: mapRaisonSociale[gestionnaire.grd] ?? gestionnaire.grd,
eic: gestionnaire.eic ?? mapRaisonSociale[gestionnaire.grd] ?? gestionnaire.grd,
}));

return {
Expand Down

0 comments on commit b04a859

Please sign in to comment.