a
This commit is contained in:
@@ -3,16 +3,19 @@ require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Detailtarifacte.php';
|
||||
require_once 'Modele/Prescription.php';
|
||||
require_once 'Modele/Garantiesbaremepriseencharge.php';
|
||||
require_once 'Modele/Seance_temp.php';
|
||||
|
||||
class ControleurAjaxprixseance extends Controleur {
|
||||
private $acte;
|
||||
private $prescription;
|
||||
private $garantie;
|
||||
private $seance;
|
||||
|
||||
public function __construct() {
|
||||
$this->acte = new Detailtarifacte();
|
||||
$this->prescription = new Prescription();
|
||||
$this->garantie = new Garantiesbaremepriseencharge();
|
||||
$this->seance = new Seance_temp();
|
||||
}
|
||||
|
||||
public function index() {
|
||||
@@ -93,9 +96,9 @@ class ControleurAjaxprixseance extends Controleur {
|
||||
{
|
||||
$prixSaisi = $this->requete->getParametreFormulaire("prixSaisi", "numerique");
|
||||
|
||||
$this->prescription->majprixseance($prixSaisi);
|
||||
$this->seance->majprixseance($prixSaisi);
|
||||
|
||||
$this->executerAction("index");
|
||||
// $this->executerAction("index");
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user