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

33 lines
1.3 KiB
PHP
Executable File

<div id="detail_facture">
<?php
$valideAs = $this->nettoyer($reglement['valideAs']);
?>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th rowspan="2" style='text-align:center'> <?= _("Exercice") ?> </th>
<th rowspan="2" style='text-align:center'> <?= _("Mois") ?> </th>
<th rowspan="2" style='text-align:center'> <?= _("Nb Carte") ?> </th>
<th rowspan="2" style='text-align:center'> <?= _("Montant") ?> </th>
<th rowspan="2" style='text-align:center'> <?= _("TVA") ?> </th>
<th rowspan="2" style='text-align:center'> <?= _("TTC") ?> </th>
</thead>
<tbody>
<?php foreach ($gcs as $gc):
$idTemp=$this->nettoyer($gc['idTemp']);
?>
<tr valign="top">
<td align='center'> <?= $this->nettoyer($gc['codeExercice']) ?> </td>
<td align='center'> <?= $this->nettoyer($gc['codeMois']) ?> </td>
<td align='center'> <?= format_N($this->nettoyer($gc['nbCarte'])) ?> </td>
<td align='center'> <?= format_N($this->nettoyer($gc['montantFrais'])) ?> </td>
<td align='center'> <?= format_N($this->nettoyer($gc['tvaFrais'])) ?> </td>
<td align='center'> <?= format_N($this->nettoyer($gc['ttcFrais'])) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>