assure/Vue/Medecinsprestataire/index.php
2025-12-01 19:07:16 +00:00

60 lines
2.1 KiB
PHP

<?php
$this->titre = "INTER-SANTE - Liste Médecins prestataire";
$codePrestataire = $this->nettoyer($prestataire['codePrestataire']);
$idPrestataire = $this->nettoyer($prestataire['id']);
$nomPrestataire = $this->nettoyer($prestataire['libelle']);
?>
<script type="text/javascript">
</script>
<input class="sr-only" type="text" id="codePrestataire" name="codePrestataire" value="<?= $codePrestataire ?>" >
<input class="sr-only" type="text" id="idPrestataire" name="idPrestataire" value="<?= $idPrestataire ?>" >
<div id="div_liste">
<fieldset>
<legend> <?= _("Liste des Médecins du prestataire") . " : " . $nomPrestataire ?> </legend>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("No OM") ?> </th>
<th> <?= _("Nom") ?> </th>
<th> <?= _("Prénoms") ?> </th>
<th style='text-align:center'>Sex</th>
<td> <?= _("Spécialité") ?> </td>
<th style='text-align:center'> <?= _("Téléphone") ?> </th>
<th style='text-align:center'> E-mail </th>
</tr>
</thead>
<tbody>
<?php foreach ($medecins as $medecin):
$idMedecin=$medecin['idMedecin'];
$codeMedecin=$medecin['codeMedecin'];
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($medecin['noOrdreMedecin']) ?> </td>
<td><?= $this->nettoyer($medecin['nom']) ?></td>
<td><?= $this->nettoyer($medecin['prenoms']) ?></td>
<td align='center'> <?= $this->nettoyer($medecin['sexe']) ?> </td>
<?php if(isset($_SESSION['lang']) && $_SESSION['lang']=="en_US"): ?>
<td><?= $this->nettoyer($medecin['libellespecialite']) ?></td>
<?php else: ?>
<td><?= $this->nettoyer($medecin['libellespecialite']) ?></td>
<?php endif; ?>
<td align='center'> <?= $this->nettoyer($medecin['telephone']) ?> </td>
<td align='center'> <?= $this->nettoyer($medecin['email']) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</fieldset>
</div>
<div id ="div_export_a">
</div>