a
This commit is contained in:
parent
48c29124d0
commit
5ff68676c3
|
|
@ -36,6 +36,7 @@ class ControleurModifierprestataire 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();
|
||||||
|
|
@ -64,7 +65,8 @@ class ControleurModifierprestataire extends Controleur
|
||||||
$this->genererVue(array('prestataire' => $prestataire, 'pays' => $pays, 'ville' => $ville, 'listelocalite' => $localite,
|
$this->genererVue(array('prestataire' => $prestataire, '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));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
<legend> <?=_("Prestataire") . " : " . $prestataire['libelle'] . " ( ".$prestataire['codePrestataire'] . " )" ?> </legend>
|
<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="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">
|
<table class="table table-responsive table-condensed">
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
@ -105,10 +106,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, $prestataire["conventionne"]); ?>
|
<?php liste_options($ouinonrdvPossible, $prestataire["rdvPossible"]); ?>
|
||||||
</SELECT>
|
</SELECT>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user