production/Vue/Ajaximportertarifacte/affichercomposantetarif.php
2025-12-01 16:12:12 +00:00

31 lines
1.0 KiB
PHP
Executable File

<div id="div_compsante_tarif">
<div class="row">
<div id="div_acte_2" class="col-12">
<table id="dataliste" class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:9pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Actes tarifés")." (".count($actes_in).")" ?> </th>
<th style='text-align:center'> <?= _("Prix Jour Ouvrable") ?> </th>
<th style='text-align:center'> <?= _("Prix Nuit et Ferié") ?> </th>
</tr>
</thead>
<tbody>
<?php
foreach ($actes_in as $acte_in):
$prix = $this->nettoyer($acte_in['prix']);
$prixNuitFerier = $this->nettoyer($acte_in['prixNuitFerier']);
?>
<tr valign="top">
<td ><?= $this->nettoyer($acte_in['libelleActe']) ?></td>
<td align='center'><?= format_N($prix)?></td>
<td align='center'><?= format_N($prixNuitFerier)?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
</div>