This commit is contained in:
KANE LAZENI 2026-04-04 08:55:33 +00:00
parent 2bfa78e09d
commit 644d593b4b

View File

@ -34,7 +34,7 @@ class ControleurAccueilassure extends Controleur {
$d2 = date('Y-m-d');
$feuillemaladies = $this->feuillemaladie->getfeuillesmaladiefamille($idAdherent, $d1, $d2);
$prestation = $this->adherent->getlisteprestations();
// $prestation = $this->adherent->getlisteprestations();
$numeroBeneficiaire = $this->requete->getParametreFormulaire("numeroBeneficiaire");
@ -118,13 +118,23 @@ class ControleurAccueilassure extends Controleur {
$dataConsoParGaranties = json_encode($tabConsoParGaranties,JSON_NUMERIC_CHECK);
//var_dump($dataConsoParGaranties); die();
$this->genererVue(array(
'adherent' => $adherent,'beneficiaires' => $beneficiaires,'garantieadherents' => $garantieadherents,
'limite_adherent' => $limite_adherent,'prestation' => $prestation,'garanties' => $garanties,
'numeroBeneficiaire' => $numeroBeneficiaire, 'actes' => $actes, 'labels_mois' => $labels_mois,
'data_consos' => $data_consos, 'labels_liens' => $labels_liens, 'data_liens' => $data_liens,
'nbreLienParente' => $nbreLienParente, 'dataConsoParGaranties' => $dataConsoParGaranties));
$this->genererVue(
array(
'adherent' => $adherent,
'beneficiaires' => $beneficiaires,
'garantieadherents' => $garantieadherents,
'limite_adherent' => $limite_adherent,
// 'prestation' => $prestation,
'garanties' => $garanties,
'numeroBeneficiaire' => $numeroBeneficiaire,
'actes' => $actes,
'labels_mois' => $labels_mois,
'data_consos' => $data_consos,
'labels_liens' => $labels_liens,
'data_liens' => $data_liens,
'nbreLienParente' => $nbreLienParente,
'dataConsoParGaranties' => $dataConsoParGaranties
)
);
}
}