a
This commit is contained in:
parent
73df9d92a3
commit
3ee4411487
|
|
@ -209,6 +209,9 @@ class ControleurFichebeneficiaire extends Controleur {
|
|||
|
||||
$sexe = $beneficiaire['sexe'];
|
||||
$raison = $this->raison->getraisonconsultation($sexe);
|
||||
|
||||
// KANE => 24/02/205 => réponse demande reconnaissance faciale
|
||||
$etatDemanderecFac = $this->beneficiaire->fn_etat_demandereconnaissancefaciale();
|
||||
|
||||
$this->genererVue(array(
|
||||
'beneficiaire' => $beneficiaire,
|
||||
|
|
@ -235,7 +238,8 @@ class ControleurFichebeneficiaire extends Controleur {
|
|||
'bonNonLivrePha' => $bonNonLivrePha,
|
||||
'nuit' => $nuit,
|
||||
'acte' => $acte,
|
||||
'specialite' => $specialite
|
||||
'specialite' => $specialite,
|
||||
'etatDemanderecFac' => $etatDemanderecFac
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1338,4 +1338,21 @@ public function getTarifActeAdherent($idAdherent)
|
|||
$ligne = $resultat->fetch(PDO::FETCH_ASSOC);
|
||||
return $ligne;
|
||||
}
|
||||
|
||||
public function fn_etat_demandereconnaissancefaciale()
|
||||
{
|
||||
$codeSociete = $_SESSION['p_codeSociete'];
|
||||
$codePrestataire = $_SESSION['p_codePrestataire_C'];
|
||||
$idBeneficiaire = $_SESSION['p_idBeneficiaire_C'];
|
||||
|
||||
$sql = 'select fn_etat_demandereconnaissancefaciale(?, ?, ?) as etatDemanderecFac';
|
||||
|
||||
$resultat = $this->executerRequete($sql, array($codeSociete, $codePrestataire, $idBeneficiaire));
|
||||
|
||||
$ligne = $resultat->fetch(PDO::FETCH_ASSOC);
|
||||
|
||||
|
||||
return $ligne['etatDemanderecFac'];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -128,19 +128,20 @@
|
|||
$faceRegistered="0";
|
||||
}
|
||||
|
||||
/*
|
||||
var_dump
|
||||
(
|
||||
array
|
||||
(
|
||||
/*
|
||||
"faceRegistered" => $faceRegistered,
|
||||
"p_lienPhoto_C" => $_SESSION['p_lienPhoto_C'],
|
||||
"p_dossierPhoto_C" => $_SESSION['p_dossierPhoto_C'],
|
||||
"p_dossierSociete" => $_SESSION['p_dossierSociete'],
|
||||
"handle" => $handle,
|
||||
*/
|
||||
"etatDemanderecFac" => $etatDemanderecFac,
|
||||
)
|
||||
);
|
||||
*/
|
||||
|
||||
$activerOtp = $_SESSION['p_activerOtpPrestations_C'];
|
||||
$otpStatus = $this->nettoyer($beneficiaire['otpStatus']);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user