a
This commit is contained in:
parent
aac5844485
commit
3a78ea81cd
|
|
@ -551,8 +551,9 @@ class ControleurConnexion extends Controleur
|
|||
$this->requete->getSession()->setAttribut("p_ageMaxBeneficiaireAtteint_C", "0");
|
||||
|
||||
$this->requete->getSession()->setAttribut("p_faceRegistered_C", "0");
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", "0");
|
||||
|
||||
// $this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", "0");
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", -1);
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpFacturePrestations_C", -1);
|
||||
|
||||
/* FIN variable de session context */
|
||||
|
||||
|
|
|
|||
|
|
@ -470,15 +470,15 @@ require_once 'Modele/Societeuser.php';
|
|||
|
||||
$this->requete->getSession()->setAttribut("p_codeActeConsultationGratuite", $utilisateur['codeActeConsultationGratuite']);
|
||||
|
||||
|
||||
$_SESSION['p_url_search'] = $_SESSION['p_baseUrlFace'];
|
||||
$_SESSION['p_url_register'] = $_SESSION['p_baseUrlFace'];
|
||||
$_SESSION['p_url_confirm'] = $_SESSION['p_baseUrlFace'];
|
||||
$_SESSION['p_url_remove'] = $_SESSION['p_baseUrlFace'];
|
||||
|
||||
$this->requete->getSession()->setAttribut("p_faceRegistered_C", "0");
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", "0");
|
||||
|
||||
// $this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", "0");
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpPrestations_C", -1);
|
||||
$this->requete->getSession()->setAttribut("p_activerOtpFacturePrestations_C", -1);
|
||||
|
||||
$_SESSION['p_idLogapiface'] = "0";
|
||||
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ class Feuillemaladie extends Modele {
|
|||
$_SESSION['p_codeMedecin_C'] = $ligne['codeMedecin'];
|
||||
$_SESSION['p_medecinConsultation_C'] = $ligne['medecinConsultation'];
|
||||
$_SESSION['codeAffection'] = $ligne['codeAffection'];
|
||||
$_SESSION['p_activerOtpFacturePrestations_C'] = $ligne['activerOtpFacturePrestations'];
|
||||
|
||||
return $ligne;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -88,6 +88,22 @@
|
|||
{
|
||||
$specialite = $this->nettoyer($feuillemaladie['specialiteEng']);
|
||||
}
|
||||
|
||||
$activerOtp = $_SESSION['p_activerOtpFacturePrestations_C'];
|
||||
$otpStatus = $this->nettoyer($feuillemaladie['otpStatus']);
|
||||
|
||||
if($modeSaisieFacture=="1") // Pas OTP en mode Décompte
|
||||
{
|
||||
$otpStatus = -1;
|
||||
}
|
||||
|
||||
var_dump(
|
||||
array(
|
||||
"activerOtp" => $activerOtp,
|
||||
"otpStatus" => $otpStatus,
|
||||
)
|
||||
);
|
||||
|
||||
?>
|
||||
|
||||
<button type="button" class="sr-only" id="btn_refresh" name="btn_refresh" onClick="javascript:feuillemaladie();" > </button>
|
||||
|
|
|
|||
|
|
@ -130,6 +130,7 @@
|
|||
{
|
||||
$otpStatus = -1;
|
||||
}
|
||||
|
||||
$prestationPossible = $_SESSION['prestationPossible'];
|
||||
$prestationPossibleEncaissement = $this->nettoyer($beneficiaire['prestationPossibleEncaissement']);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user