66 lines
2.5 KiB
PHP
66 lines
2.5 KiB
PHP
<?php $this->titre = "INTER-SANTE - Prestataire"; ?>
|
|
|
|
<legend> <?= _("PRATICIENS") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Corporation") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeMetier" NAME="codeMetier" style='font-size:10pt;'>
|
|
<?php liste_options_consultation($corporation, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="10%" align="center"> <?= _("Nom") ?> </td>
|
|
<td width="25%" > <INPUT style='font-size:10pt;' class="form-control" type="text" id="nom" name="nom" onkeypress="javascript:ctrlkeypress_liste_medecins(event);" > </td>
|
|
|
|
<td width="10%" align="center"> <?= _("Prénoms") ?> </td>
|
|
<td width="25%" > <INPUT style='font-size:10pt;' class="form-control" type="text" id="prenoms" name="prenoms" onkeypress="javascript:ctrlkeypress_liste_medecins(event);" > </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td width="10%"> <?= _("Spécialité") ?> </td>
|
|
<td>
|
|
<SELECT class="form-control" id="codeSpecialite" NAME="codeSpecialite" style='font-size:10pt;'>
|
|
<?php liste_options_consultation($specialite, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="10%" align="center"> <?= _("No Ordre") ?> </td>
|
|
<td> <INPUT style='font-size:10pt;' class="form-control" type="text" id="noOrdreMedecin" name="noOrdreMedecin" onkeypress="javascript:ctrlkeypress_liste_medecins(event);" > </td>
|
|
|
|
<td> </td>
|
|
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficher_liste_medecins();"> <?= _("Afficher...") ?> </button> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="6"> <input class="form-control" style="text-align: center; font-size:10pt;" type="text" id="nbligne" name="nbligne" value="Lignes : 0" readonly> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<div id="div_liste_medeins">
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th> <?= _("Nom") ?> </th>
|
|
<th> <?= _("Prénoms") ?> </th>
|
|
<!-- <th style="text-align:center" width="5%" >Code</th> -->
|
|
<th> <?= _("Spécialité") ?> </th>
|
|
<th style="text-align:center" > <?= _("No Ordre") ?> </th>
|
|
<th style="text-align:center" width="5%" >Genre</th>
|
|
<th style="text-align:center" > Tel </th>
|
|
<th style="text-align:center" > E-mail </th>
|
|
<th style="text-align:center" > Cons </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|