31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php
|
|
require_once 'Framework/Controleur.php';
|
|
require_once 'Modele/Menuvueutilisateur.php';
|
|
require_once 'Modele/Examen_temp.php';
|
|
require_once 'Modele/Familleacte.php';
|
|
|
|
class ControleurSelectexaemenscso extends Controleur {
|
|
private $prescription;
|
|
|
|
public function __construct() {
|
|
$this->menuvue = new Menuvueutilisateur();
|
|
$this->menuvue->getMenuVue('Selectexaemenscso');
|
|
|
|
$this->prescription = new Examen_temp();
|
|
|
|
$codeTypePrestation = "EXAM";
|
|
$this->familleacte = (new Familleacte())->getListe($codeTypePrestation);
|
|
}
|
|
|
|
public function index() {
|
|
$numeroFeuilleMaladie = $_SESSION['numeroFeuilleMaladie_C'];
|
|
$codePrestataire = $_SESSION['codePrestataire_C'];
|
|
|
|
$codeTarifActe = $_SESSION['codeTarifActe_C'];
|
|
|
|
$prestations = $this->prescription->getdetaillivre();
|
|
$prestations_total = $this->prescription->getdetaillivre_total();
|
|
|
|
$this->genererVue(array('familleacte' => $this->familleacte, 'prestations' => $prestations, 'prestations_total' => $prestations_total));
|
|
}
|
|
} |