ajout de la pagination des résultats de recherche

This commit is contained in:
2026-03-18 14:54:01 +01:00
parent 1d9f80e63d
commit 3bbc60fd68
5 changed files with 325 additions and 101 deletions
+34 -7
View File
@@ -33,7 +33,6 @@ export function createFormation(raw) {
? raw.g_olocalisation_des_formations.lon
: null,
// profils admis
pctFemmes: raw.pct_f,
pctBoursiers: raw.pct_bours,
pctNeoBac: raw.pct_neobac,
@@ -48,19 +47,47 @@ export function createFormation(raw) {
pctTB: raw.pct_tb,
pctTBF: raw.pct_tbf,
// vitesse de remplissage / phase principale
pctDebutPhase: raw.pct_acc_debutpp,
pctDateBac: raw.pct_acc_datebac,
pctFinPhase: raw.pct_acc_finpp,
// chiffres bruts utiles
admisDebutPhase: raw.acc_debutpp,
admisDateBac: raw.acc_datebac,
admisFinPhase: raw.acc_finpp,
admisGeneral: raw.acc_bg,
admisTechno: raw.acc_bt,
admisPro: raw.acc_bp,
admisAutres: raw.acc_at
// phase principale
voePPGeneral: raw.nb_voe_pp_bg,
voePPTechno: raw.nb_voe_pp_bt,
voePPPro: raw.nb_voe_pp_bp,
voePPAutres: raw.nb_voe_pp_at,
voePPTotal: raw.nb_voe_pp,
classesPPGeneral: raw.nb_cla_pp_bg,
classesPPTechno: raw.nb_cla_pp_bt,
classesPPPro: raw.nb_cla_pp_bp,
classesPPAutres: raw.nb_cla_pp_at,
classesPPTotal: raw.nb_cla_pp,
propositionsPPGeneral: raw.prop_tot_bg,
propositionsPPTechno: raw.prop_tot_bt,
propositionsPPPro: raw.prop_tot_bp,
propositionsPPAutres: raw.prop_tot_at,
propositionsPPTotal: raw.prop_tot,
acceptesPPGeneral: raw.acc_bg,
acceptesPPTechno: raw.acc_bt,
acceptesPPPro: raw.acc_bp,
acceptesPPAutres: raw.acc_at,
acceptesPPTotal: raw.acc_pp,
// phase complémentaire
voePCGeneral: raw.nb_voe_pc_bg,
voePCTechno: raw.nb_voe_pc_bt,
voePCPro: raw.nb_voe_pc_bp,
voePCAutres: raw.nb_voe_pc_at,
voePCTotal: raw.nb_voe_pc,
classesPCTotal: raw.nb_cla_pc,
acceptesPCTotal: raw.acc_pc
}
}