radiantproduction/Vue/Ajaxmouvementsrh/index.php
2026-01-19 12:31:50 +00:00

26 lines
1.4 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):
$idPolice = $this->nettoyer($v['idPolice']);
?>
<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> <button type="button" class="form-control btn btn-primary" onclick="javascript:selectionner_consulter_mvt_police(<?= $idPolice ?>);"> <?= format_N($this->nettoyer($v['nbMvt'])) ?> </button> </td>
<td> <button type="button" class="form-control btn btn-info" onclick="javascript:selectionner_valider_mvt_police(<?= $idPolice ?>);"> <?= format_N($this->nettoyer($v['nbAttente'])) ?> </button> </td>
<td align='center'><?= format_N($this->nettoyer($v['nbValide'])) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>