This commit is contained in:
2026-07-15 09:44:55 +00:00
parent 1b3ea4e6db
commit d7bebebdb1
2 changed files with 24 additions and 1 deletions

View File

@@ -15,7 +15,8 @@ class ControleurSelectactesmedicaux extends Controleur {
$codePrestataire = $_SESSION['p_codePrestataire_C'];
$codeTypePrestation = "ACT";
$this->familleacte = (new Familleacte())->getListeComplet();
// $this->familleacte = (new Familleacte())->getListeComplet();
$this->familleacte = (new Familleacte())->getListeExclusion();
$this->prestation = new Prestationactes();
}
@@ -25,6 +26,7 @@ class ControleurSelectactesmedicaux extends Controleur {
$prestations = $this->prestation->getactesmedicauxfeuille($numeroFeuilleMaladie, $codePrestataire);
$prestations_total = $this->prestation->getactesmedicauxfeuille_total($numeroFeuilleMaladie, $codePrestataire);
$this->genererVue(array('familleacte' => $this->familleacte, 'prestations' => $prestations, 'prestations_total' => $prestations_total));
}
}