radiantproduction/Vue/Ajaxmouvementsrh/index.php
2026-01-17 18:40:00 +00:00

24 lines
1.1 KiB
PHP

<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Souscripteur") ?> </th>
<th style='text-align:center'> <?= _("No Client") ?> </th>
<th style='text-align:center'> <?= _("ID Police") ?> </th>
<th style='text-align:center'> <?= _("Total") ?> </th>
<th style='text-align:center'> <?= _("En attente") ?> </th>
<th style='text-align:center'> <?= _("Validé") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($mouvementassures as $v): ?>
<tr valign="top">
<td align='center'><?= $this->nettoyer($v['souscripteur']) ?></td>
<td align='center'><?= $this->nettoyer($v['numeroClient']) ?></td>
<td align='center'><?= $this->nettoyer($v['idPolice']) ?></td>
<td align='center'><?= format_N($this->nettoyer($v['nbMvt'])) ?></td>
<td align='center'><?= format_N($this->nettoyer($v['nbAttente'])) ?></td>
<td align='center'><?= format_N($this->nettoyer($v['nbValide'])) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>