67 lines
2.0 KiB
PHP
67 lines
2.0 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Notes du dossier";
|
|
|
|
$numeroFeuilleMaladie = $_SESSION['p_numeroFeuilleMaladie_C'];
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<legend> <?= _("Notes du dossier") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="40%"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficher_notes_feuille();"> <?= _("Actualiser...") ?> </button> </td>
|
|
|
|
<td> </td>
|
|
|
|
<td width="40%"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:initiernotesfeuille();"> <?= _("Rédiger nouvelle note...") ?> </button> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<button id="btn_pop_note_new" NAME="btn_pop_note_new" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#pop_note_new"> <?= _("Saisir une nouvellee note...") ?> </button>
|
|
|
|
<div class="modal fade" id="pop_note_new" role="dialog">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
<h4 class="modal-title"> <?= _("Nouvelle note...") ?> </h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<div id="div_note_new">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button id="btn_pop_note_new_quit" NAME="btn_pop_note_new_quit" type="button" class="btn btn-default" data-bs-dismiss="modal"> <?= _("Fermer") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div id="div_notes">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center"> <?= _("Date") ?> </th>
|
|
<th width="80%" style="text-align:center"> <?= _("Notes") ?> </th>
|
|
<th style="text-align:center"> <?= _("Auteur") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|