69 lines
2.0 KiB
PHP
69 lines
2.0 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Notes du dossier";
|
|
$numeroFeuilleMaladie = $_SESSION['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 notte... </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> Libellé </th>
|
|
<th style="text-align:center"> ID </th>
|
|
<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>
|