This commit is contained in:
KANE LAZENI 2026-03-07 02:03:23 +00:00
parent 48c29124d0
commit 5ff68676c3
2 changed files with 7 additions and 4 deletions

View File

@ -36,6 +36,7 @@ class ControleurModifierprestataire extends Controleur
$this->tarifsoptique = new Tarifsoptiques();
$this->typedecompte = new Typedecompte();
$this->ouinonconvention = (new Ouinon())->getListe();
$this->ouinonrdvPossible = (new Ouinon())->getListe();
$this->ouinongestionreseau = (new Ouinon())->getListe();
$this->banque = new Banque();
$this->langue = new Langue();
@ -64,7 +65,8 @@ class ControleurModifierprestataire extends Controleur
$this->genererVue(array('prestataire' => $prestataire, 'pays' => $pays, 'ville' => $ville, 'listelocalite' => $localite,
'typeprestataire' => $typeprestataire, 'reseausoins' => $reseausoins, 'tarifacte' => $tarifacte, 'banque' => $banque,
'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

@ -5,6 +5,7 @@
<legend> <?=_("Prestataire") . " : " . $prestataire['libelle'] . " ( ".$prestataire['codePrestataire'] . " )" ?> </legend>
<input class="sr-only" type="text" id="idPrestataire" name="idPrestataire" value="<?= $this->nettoyer($prestataire['idPrestataire']) ?>" >
<input class="sr-only" type="text" id="conventionne" name="conventionne" value="<?= $this->nettoyer($prestataire['conventionne']) ?>" >
<table class="table table-responsive table-condensed">
<tbody>
@ -105,10 +106,10 @@
</tr>
<tr>
<td> <?= _("Conventionné?") ?> </td>
<td> <?= _("RDV Possible?") ?> </td>
<td>
<SELECT class="form-control" id="conventionne" NAME="conventionne" required>
<?php liste_options($ouinonconvention, $prestataire["conventionne"]); ?>
<SELECT class="form-control" id="rdvPossible" NAME="rdvPossible" required>
<?php liste_options($ouinonrdvPossible, $prestataire["rdvPossible"]); ?>
</SELECT>
</td>