a
This commit is contained in:
parent
9f3a8a766d
commit
023d5e537f
|
|
@ -36,6 +36,7 @@ class ControleurCreerprestataire 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();
|
||||
|
|
@ -61,6 +62,8 @@ class ControleurCreerprestataire extends Controleur
|
|||
$this->genererVue(array('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
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
<legend> <?= _("Informations Nouveau Prestataire") ?> </legend>
|
||||
|
||||
input class="sr-only" type="text" id="conventionne" name="conventionne" value="1">
|
||||
|
||||
<table class="table table-responsive table-condensed">
|
||||
<tbody>
|
||||
<tr>
|
||||
|
|
@ -101,10 +103,10 @@
|
|||
</tr>
|
||||
|
||||
<tr>
|
||||
<td> <?= _("Conventionné?") ?> </td>
|
||||
<td> <?= _("RDV Possible?") ?> </td>
|
||||
<td>
|
||||
<SELECT class="form-control" id="conventionne" NAME="conventionne" required>
|
||||
<?php liste_options($ouinonconvention, "1"); ?>
|
||||
<SELECT class="form-control" id="rdvPossible" NAME="rdvPossible" required>
|
||||
<?php liste_options($ouinonrdvPossible, "1"); ?>
|
||||
</SELECT>
|
||||
</td>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user