60 lines
2.1 KiB
PHP
Executable File
60 lines
2.1 KiB
PHP
Executable File
<?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 tabliste compact" 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'>Genre</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['p_lang']) && $_SESSION['p_lang']=="en_US"): ?>
|
|
<td><?= $this->nettoyer($medecin['specialite']) ?></td>
|
|
<?php else: ?>
|
|
<td><?= $this->nettoyer($medecin['specialiteEng']) ?></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>
|
|
|