46 lines
1.5 KiB
PHP
Executable File
46 lines
1.5 KiB
PHP
Executable File
<?php
|
|
$actVisible = $_SESSION['p_actVisible'];
|
|
?>
|
|
|
|
<div id="div_ecart_decompte">
|
|
<div id="div_saisie_ecart">
|
|
|
|
</div>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="15%" style='text-align:center'> Date </th>
|
|
<th colspan="2" style='text-align:center;'> <?= _("Bénéficiaire") ?> </th>
|
|
<th style='text-align:center;'> <?= _("Montants") ?> </th>
|
|
<th style='text-align:center'> Sens </th>
|
|
<th style='text-align:center'>Observations</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($ecartnonsaisis as $facture):
|
|
$idEcart = $this->nettoyer($facture['id']);
|
|
|
|
if (isset($_SESSION['p_lang']) && $_SESSION['p_lang']=="en_US")
|
|
{
|
|
$libelleEcart = $this->nettoyer($facture['libelleEcartEng']);
|
|
}
|
|
else
|
|
{
|
|
$libelleEcart = $this->nettoyer($facture['libelleEcart']);
|
|
}
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'><?= dateLang($this->nettoyer($facture['dateFacture'])) ?></td>
|
|
<td align='center'> <?= $this->nettoyer($facture['numeroBeneficiaire']) ?> </td>
|
|
<td> <?= $this->nettoyer($facture['beneficiaire']) ?> </td>
|
|
<td align='center'> <?= format_N($this->nettoyer($facture['montantPrestataire'])) ?> </td>
|
|
<td align='center'> <?= $libelleEcart ?> </td>
|
|
<td> <?= $this->nettoyer($facture['observations']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|