This commit is contained in:
KANE LAZENI 2026-03-05 10:21:55 +00:00
parent 9f3a8a766d
commit 023d5e537f
2 changed files with 9 additions and 4 deletions

View File

@ -36,6 +36,7 @@ class ControleurCreerprestataire extends Controleur
$this->tarifsoptique = new Tarifsoptiques(); $this->tarifsoptique = new Tarifsoptiques();
$this->typedecompte = new Typedecompte(); $this->typedecompte = new Typedecompte();
$this->ouinonconvention = (new Ouinon())->getListe(); $this->ouinonconvention = (new Ouinon())->getListe();
$this->ouinonrdvPossible = (new Ouinon())->getListe();
$this->ouinongestionreseau = (new Ouinon())->getListe(); $this->ouinongestionreseau = (new Ouinon())->getListe();
$this->banque = new Banque(); $this->banque = new Banque();
$this->langue = new Langue(); $this->langue = new Langue();
@ -61,6 +62,8 @@ class ControleurCreerprestataire extends Controleur
$this->genererVue(array('pays' => $pays, 'ville' => $ville, 'listelocalite' => $localite, $this->genererVue(array('pays' => $pays, 'ville' => $ville, 'listelocalite' => $localite,
'typeprestataire' => $typeprestataire, 'reseausoins' => $reseausoins, 'tarifacte' => $tarifacte, 'banque' => $banque, 'typeprestataire' => $typeprestataire, 'reseausoins' => $reseausoins, 'tarifacte' => $tarifacte, 'banque' => $banque,
'tarifsmedicament' => $tarifsmedicament, 'tarifsoptique' => $tarifsoptique, 'typedecompte' => $typedecompte, 'tarifsmedicament' => $tarifsmedicament, 'tarifsoptique' => $tarifsoptique, 'typedecompte' => $typedecompte,
'ouinonconvention' => $this->ouinonconvention, 'ouinongestionreseau' => $this->ouinongestionreseau, 'langue' => $langue)); 'ouinonconvention' => $this->ouinonconvention, 'ouinongestionreseau' => $this->ouinongestionreseau, 'langue' => $langue,
'ouinonrdvPossible' => $this->ouinonrdvPossible
));
} }
} }

View File

@ -2,6 +2,8 @@
<legend> <?= _("Informations Nouveau Prestataire") ?> </legend> <legend> <?= _("Informations Nouveau Prestataire") ?> </legend>
input class="sr-only" type="text" id="conventionne" name="conventionne" value="1">
<table class="table table-responsive table-condensed"> <table class="table table-responsive table-condensed">
<tbody> <tbody>
<tr> <tr>
@ -101,10 +103,10 @@
</tr> </tr>
<tr> <tr>
<td> <?= _("Conventionné?") ?> </td> <td> <?= _("RDV Possible?") ?> </td>
<td> <td>
<SELECT class="form-control" id="conventionne" NAME="conventionne" required> <SELECT class="form-control" id="rdvPossible" NAME="rdvPossible" required>
<?php liste_options($ouinonconvention, "1"); ?> <?php liste_options($ouinonrdvPossible, "1"); ?>
</SELECT> </SELECT>
</td> </td>