This commit is contained in:
2026-04-08 08:52:36 +00:00
parent a2168d01ce
commit d6f626a144
2 changed files with 11 additions and 13 deletions

View File

@@ -13,14 +13,13 @@ class ControleurAjaxlisterclients extends Controleur
public function index()
{
$typeClient = $this->requete->getParametreFormulaire("typeClient");
$nom = $this->requete->getParametreFormulaire("nom");
$nom = $this->requete->getParametreFormulaire("nom");
$numeroClient = $this->requete->getParametreFormulaire("numeroClient");
$_SESSION['souscripteurAcreer'] = $nom;
$clients = $this->client->getListerClients($typeClient, $nom, $numeroClient);
$this->genererVueAjax(array('clients' => $clients));
}