This commit is contained in:
KANE LAZENI 2026-01-05 13:07:47 +00:00
parent 7a19fd4465
commit 6dac310e15

View File

@ -23,7 +23,7 @@ class ControleurRechercherassure extends Controleur {
}
public function index($numeroBeneficiaire="", $numeroAdherent="", $nomBeneficiaire="",
$prenomsBeneficiaire="", $telephonePortable="", $email="")
$prenomsBeneficiaire="")
{
$this->beneficiaire->getModeBiometrie();
$derniernumerobeneficiaires = '0';
@ -33,9 +33,7 @@ class ControleurRechercherassure extends Controleur {
$numeroAdherent=trim($_POST['numeroAdherent']);
$nomBeneficiaire=trim($_POST['nomBeneficiaire']);
$prenomsBeneficiaire=trim($_POST['prenomsBeneficiaire']);
$telephonePortable=trim($_POST['telephonePortable']);
$email=trim($_POST['email']);
/*
var_dump(
array(
@ -44,8 +42,6 @@ class ControleurRechercherassure extends Controleur {
"numeroAdherent" => $numeroAdherent,
"nomBeneficiaire" => $nomBeneficiaire,
"prenomsBeneficiaire" => $prenomsBeneficiaire,
"telephonePortable" => $telephonePortable,
"email" => $email,
)
);
exit();
@ -83,7 +79,7 @@ class ControleurRechercherassure extends Controleur {
);
exit();
*/
$beneficiaires = $this->beneficiaire->getBeneficiaires($nomBeneficiaire, $prenomsBeneficiaire);
}else{
$beneficiaires = $this->beneficiaire->getBeneficiaireVide();