61 lines
2.1 KiB
PHP
Executable File
61 lines
2.1 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - PRESTATAIRES PROPOSES AU PAYEMENT";
|
|
|
|
?>
|
|
|
|
<legend> <?= _("PRESTATAIRES PROPOSES AU PAYEMENT") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:9pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td align="center" width="5%" > <?= _("Début") ?> </td>
|
|
<td>
|
|
<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>
|
|
<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"> <?= _("Fin") ?> </td>
|
|
|
|
<td>
|
|
<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>
|
|
<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> </td>
|
|
|
|
<td colspan="2"> <button style='font-size:9pt;' type="button" class="form-control btn btn-primary" onclick="javascript:propositions_paiement_prestataire();"> <?= _("Afficher...") ?> </button> </td>
|
|
|
|
<td width="15%" colspan="1">
|
|
<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:propositions_paiement_prestataire_export();"> <?= _("Exporter vers Excel...") ?> </button> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_detail">
|
|
</div>
|
|
|
|
|
|
|
|
<div id="inforegle">
|
|
<input class="sr-only" type="text" id="regle" name="regle" >
|
|
</div>
|