57 lines
2.1 KiB
PHP
Executable File
57 lines
2.1 KiB
PHP
Executable File
<?php
|
|
$actVisible = $_SESSION['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 colspan="2" width="15%" style='text-align:center'> <input class = "form-control btn btn-info" type="button" value=" + " onClick="javascript:init_new_ecart_decompte_non_saisi();" style='font-size:15pt;' > </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>
|
|
<th width="7%" style='text-align:center'> <?= _("Modifier") ?> </th>
|
|
<th width="7%" style='text-align:center'> <?= _("Supprimer") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($ecartnonsaisis as $facture):
|
|
$idEcart = $this->nettoyer($facture['id']);
|
|
|
|
if (est_anglophone())
|
|
{
|
|
$libelleEcart = $this->nettoyer($facture['libelleEcartEng']);
|
|
}
|
|
else
|
|
{
|
|
$libelleEcart = $this->nettoyer($facture['libelleEcart']);
|
|
}
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?=$idEcart ?> </td>
|
|
<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>
|
|
|
|
<td align="center"> <input type="button" value="<?= _("Modifier") ?>"
|
|
onClick="javascript:maj_ecart_facture(<?= $idEcart ?>);">
|
|
</td>
|
|
|
|
<td align="center"> <input type="button" value="<?= _("Supprimer") ?>"
|
|
onClick="javascript:supprimer_ecart_facture(<?= $idEcart ?>);">
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|