prestation/Vue/Ajaxcomposantetarif/affichercomposantetarifcons.php
2025-12-05 10:42:46 +00:00

27 lines
874 B
PHP
Executable File

<div id="div_compsante_tarif">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabliste compact" style="font-size:9pt;">
<thead>
<tr>
<th width="10%" style='text-align:center'> Code </th>
<th style='text-align:center'> <?= _("Actes") ?> </th>
<th width="15%" style='text-align:center'> <?= _("Prix") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($actes_in as $acte_in):
$idDetailtarifacte = $acte_in['id'];
?>
<tr valign="top">
<td style='text-align:center'> <?= $this->nettoyer($acte_in['codeActe']) ?> </td>
<td style='text-align:center'> <?= $this->nettoyer($acte_in['libelleActe']) ?></td>
<td style='text-align:center'> <?= format_N($this->nettoyer($acte_in['prix'])) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>