This commit is contained in:
2026-04-04 16:32:51 +00:00
parent 5b79cf8bb2
commit 4b9e5f08ea
5 changed files with 262 additions and 3 deletions

View File

@@ -50,4 +50,11 @@ class ControleurAjaxdemanderdv extends Controleur {
$this->rendezvous->refuserrdv($numeroDemandeRdv, $motifReponseRdv);
}
}
public function listerdemandesconsultation()
{
$demandes = $this->rendezvous->getDemandesConsultation();
$this->genererVueAjax(array('demandes' => $demandes));
}
}