This commit is contained in:
KANE LAZENI 2026-07-23 22:10:08 +00:00
parent 47d48007f9
commit 29be5cdd5e
2 changed files with 9 additions and 5 deletions

View File

@ -90,8 +90,17 @@ class ControleurProformahospitalisation extends Controleur {
if($idProforma > "0" && $idBeneficiaire > "0"){
echo "idProforma => $idProforma";
exit();
$this->prestation->getenteteproformahospitalisation($idProforma);
}
else
{
echo "Pas de Proforma";
exit();
}
$affections = $this->affection->getListes();
$actesChambre = $this->feuillemaladie->getActeChambreHospitalisation();

View File

@ -1343,9 +1343,6 @@ class Prestationactes extends Modele
$_SESSION['p_nomClient_C'] = is_array($proforma) ? $proforma['souscripteur'] : "";
$_SESSION['p_adherent_C'] = is_array($proforma) ? $proforma['adherent'] : "";
//var_dump($_SESSION['p_adherent_C']);
$_SESSION['p_beneficiaire_C'] = is_array($proforma) ? $proforma['beneficiaire'] : "";
$_SESSION['p_telephonePortableBeneficiaire_C'] = is_array($proforma) ? $proforma['telephonePortableBeneficiaire'] : "";
@ -1366,8 +1363,6 @@ class Prestationactes extends Modele
$_SESSION['p_codeActeChambre_C'] = is_array($proforma) ? $proforma['codeActeChambre'] : "";
return $proforma;
}