prestation/Vue/Ajaxnotesfeuillemaladie/index.php
2025-12-05 10:42:46 +00:00

32 lines
1.2 KiB
PHP
Executable File

<div id="div_notes">
<table class="table table-striped table-bordered table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th width="8%" style="text-align:center"> Date </th>
<th style="text-align:center"> Notes </th>
<th width="15%" colspan="2" style="text-align:center"> <?= _("Auteur") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($notesfeuillemaladie as $notefeuillemaladie):
$idNote = $this->nettoyer($notefeuillemaladie['idNote']);
$source = $this->nettoyer($notefeuillemaladie['source']);
?>
<tr valign="top">
<td align='center'><?= dateheureLang($this->nettoyer($notefeuillemaladie['dateSysteme'])) ?></td>
<td> <textarea style="font-size:12pt;" rows="6" cols="115" readonly ><?= $this->nettoyer($notefeuillemaladie['notes']) ?></textarea> </td>
<td align='center'>
<?php if($source=='C'): ?>
<?= $this->nettoyer($_SESSION['p_adherent_C']) ?>
<?php else: ?>
<?= $this->nettoyer($notefeuillemaladie['redacteur']) ?>
<?php endif; ?>
</td>
<td width="2%" align='center'> <?= $this->nettoyer($notefeuillemaladie['source']) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>