feat: ajoute % procédure pénale avec CRPC
parent
b74838d482
commit
a2fa473396
|
@ -22,6 +22,14 @@ export function isCompositionPenale(evenement: EvenementFamille): boolean {
|
|||
);
|
||||
}
|
||||
|
||||
export function isCRPC(evenement: EvenementFamille): boolean {
|
||||
return (
|
||||
evenement.Type === "Convocation CRPC" ||
|
||||
evenement.Type === "Audience CRPC" ||
|
||||
evenement.Type === "Refus CRPC"
|
||||
);
|
||||
}
|
||||
|
||||
export function isProcedureCivile(evenement: EvenementFamille): boolean {
|
||||
return categorieEvenement[evenement.Type] === "Procédure Civile";
|
||||
}
|
||||
|
|
|
@ -57,6 +57,10 @@ const statPropsPublishOptions: {
|
|||
notionPropName: "% procédure pénale avec composition pénale",
|
||||
unit: "%",
|
||||
},
|
||||
pourcentageProcedurePenaleAvecCRPC: {
|
||||
notionPropName: "% procédure pénale avec CRPC",
|
||||
unit: "%",
|
||||
},
|
||||
nbFamillesProcedureCivile: {
|
||||
notionPropName: "Nb familles avec procédure civile",
|
||||
},
|
||||
|
|
|
@ -17,6 +17,7 @@ export type ELStatsAtDate<V> = {
|
|||
pourcentageFamillesProcedurePenale: V;
|
||||
nbFamillesCompositionPenale: V;
|
||||
pourcentageProcedurePenaleAvecCompositionPenale: V;
|
||||
pourcentageProcedurePenaleAvecCRPC: V;
|
||||
nbFamillesProcedureCivile: V;
|
||||
pourcentageFamillesProcedureCivile: V;
|
||||
};
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import {
|
||||
isCRPC,
|
||||
isCompositionPenale,
|
||||
isEvenementBefore,
|
||||
isProcedurePenale,
|
||||
|
@ -51,6 +52,11 @@ export function computeELStatsAtDate(
|
|||
(evt) => isCompositionPenale(evt) && isEvenementBefore(evt, asOfDate)
|
||||
)
|
||||
);
|
||||
const famillesAvecCRPC = familleResistantesOrEx.filter((famille) =>
|
||||
famille.Evenements.find(
|
||||
(evt) => isCRPC(evt) && isEvenementBefore(evt, asOfDate)
|
||||
)
|
||||
);
|
||||
|
||||
const pourcentageFamillesProcedurePenale = percent(
|
||||
famillesAvecProcedurePenale.length,
|
||||
|
@ -84,6 +90,10 @@ export function computeELStatsAtDate(
|
|||
famillesAvecCompositionPenale.length,
|
||||
famillesAvecProcedurePenale.length
|
||||
),
|
||||
pourcentageProcedurePenaleAvecCRPC: percent(
|
||||
famillesAvecCRPC.length,
|
||||
famillesAvecProcedurePenale.length
|
||||
),
|
||||
|
||||
nbFamillesProcedureCivile: famillesAvecProcedureCivile.length,
|
||||
pourcentageFamillesProcedureCivile: pourcentageFamillesProcedureCivile,
|
||||
|
|
Loading…
Reference in New Issue