44 lines
1.5 KiB
PHP
Executable File
44 lines
1.5 KiB
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Demande de Décompte "; ?>
|
|
|
|
<form id="frmconsultation" name="frmconsultation" method="post" >
|
|
|
|
<legend><?= _("Fiche sélection Décompte") ?> </legend>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%" > <?= _("Exercice") ?> </td>
|
|
<td width="35%">
|
|
<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="15%" align="center"> <?= _("Période") ?> </td>
|
|
<td>
|
|
<div id="listeacte">
|
|
<SELECT class="form-control" id="codeMois" NAME="codeMois" required AUTOCOMPLETE="OFF" style='font-size:10pt;' >
|
|
<?php liste_options($periode, $_SESSION['p_codeMois_C']); ?>
|
|
</SELECT>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td colspan="3"> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Poursuivre...") ?>" onClick="initierdemandedecompte();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div id ="msgErreur" class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</form>
|
|
|
|
<div id="inforegle" style='font-size:10pt;'>
|
|
<input class="sr-only" type="text" id="regle" name="regle" value="-1">
|
|
</div>
|