prestation/Vue/Relevecompteprestaire/index.php
2025-12-01 18:54:33 +00:00

84 lines
3.4 KiB
PHP

<?php
$this->titre = "INTER-SANTE - Relevé de Compte Prestataire";
$codePrestataire = $this->nettoyer($prestataire['codePrestataire']);
$idPrestataire = $this->nettoyer($prestataire['idPrestataire']);
$nom_prestataire = $this->nettoyer($prestataire['prestataire']);
?>
<input class="sr-only" type="text" id="codePrestataire" name="codePrestataire" value="<?= $codePrestataire ?>">
<input class="sr-only" type="text" id="idPrestataire" name="idPrestataire" value="<?= $idPrestataire ?>" >
<legend> <?= _("Relevé de Compte Prestataire") . " : " . $nom_prestataire ." ( ".$codePrestataire." )" ?> </legend>
<table class="table table-responsive table-condensed" style='font-size:9pt;'>
<tbody>
<tr>
<td width="10%" > <?= _("Période de") ?> </td>
<td width="20%">
<SELECT class="form-control" id="codeMois1" NAME="codeMois1" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($periode, $_SESSION['codeMois1_C']); ?>
</SELECT>
</td>
<td width="15%">
<SELECT class="form-control" id="codeExercice1" NAME="codeExercice1" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($exercice, $_SESSION['codeExercice1_C']); ?>
</SELECT>
</td>
<td width="5%" align="center"> <?= _("à") ?> </td>
<td width="20%">
<SELECT class="form-control" id="codeMois2" NAME="codeMois2" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($periode2, $_SESSION['codeMois2_C']); ?>
</SELECT>
</td>
<td width="15%">
<SELECT class="form-control" id="codeExercice2" NAME="codeExercice2" required AUTOCOMPLETE="OFF" style='font-size:9pt;' >
<?php liste_options($exercice2, $_SESSION['codeExercice2_C']); ?>
</SELECT>
</td>
<tr>
<td colspan="2"> <button style='font-size:9pt;' type="button" class="form-control btn btn-primary" onclick="javascript:detail_releve_compte_prestataire();"> <?= _("Afficher...") ?> </button> </td>
<td colspan="2">
<input class="form-control" style="text-align: center; font-size:9pt;" type="text" id="nbligne" name="nbligne" value="Lignes : 0" readonly>
</td>
<td colspan="2"> <button style='font-size:9pt;' type="button" class="form-control btn btn-primary" onclick="javascript:detail_releve_compte_prestataire_export();"> <?= _("Exporter vers Excel...") ?> </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:8pt;">
<thead>
<tr>
<th style='text-align:center'> <?= _("Exercice") ?> </th>
<th style='text-align:center'> <?= _("Mois") ?> </th>
<th style='text-align:center'> <?= _("No Lot") ?> </th>
<th style='text-align:center'> <?= _("Réception") ?> </th>
<th style='text-align:center'> <?= _("Mont Fact") ?> </th>
<th style='text-align:center'> <?= _("Dde Rgt") ?> </th>
<th style='text-align:center'> <?= _("A payer") ?> </th>
<th style='text-align:center'> <?= _("Date Rgt") ?> </th>
<th style='text-align:center'> <?= _("Date Cpt") ?> </th>
<th style='text-align:center'> <?= _("Réglé") ?> </th>
<th colspan="3" style='text-align:center'> <?= _("Références paiement") ?> </th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="inforegle">
<input class="sr-only" type="text" id="regle" name="regle" >
</div>