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

51 lines
1.8 KiB
PHP
Executable File

<?php
$this->titre = "INTER-SANTE - Historique des décomptes";
?>
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
<tbody>
<tr>
<td width="10%" > <?= _("Exercice") ?> </td>
<td width="20%">
<SELECT class="form-control" id="codeExercice" NAME="codeExercice" required AUTOCOMPLETE="OFF" style='font-size:10pt;' >
<?php liste_options($exercice, $_SESSION['p_codeExercice_C']); ?>
</SELECT>
</td>
<td width="10%" align="center"> <?= _("Etat") ?> </td>
<td width="30%">
<div id="listeacte">
<SELECT class="form-control" id="codeEtatDecompte" NAME="codeEtatDecompte" required AUTOCOMPLETE="OFF" style='font-size:10pt;' >
<?php liste_options_consultation($etatdecompte, ""); ?>
</SELECT>
</div>
</td>
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:listerdecomptes();"> <?= _("Actualiser...") ?> </button> </td>
</tr>
</tbody>
</table>
<div id="div_detail">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Exercice") ?> </th>
<th style='text-align:center'> <?= _("Mois") ?> </th>
<th style='text-align:center'> <?= _("No Déc") ?> </th>
<th style='text-align:center'> <?= _("A régler") ?> </th>
<th style='text-align:center'> <?= _("Etat") ?> </th>
<th style='text-align:center'> <?= _("Règlement") ?> </th>
<th style='text-align:center'> <?= _("Mod Rgt") ?> </th>
<th style='text-align:center'> <?= _("Réf Règt") ?> </th>
<th style='text-align:center'> <?= _("Mont Réglé") ?> </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>