30 lines
1.4 KiB
PHP
30 lines
1.4 KiB
PHP
<?php
|
|
// var_dump(array("debutMois_C" => $_SESSION['debutMois_C'] ));
|
|
?>
|
|
|
|
<input class="form-control" style="text-align: center; font-size:10pt;" type="text" id="nbligne" name="nbligne" value="<?= _("RECAPITULATIF MOUVEMMENTS RH") ?>" readonly>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"> <?= _("Période du") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="debut" NAME="debut" value="<?= dateLang($_SESSION['debutMois_C'], $_SESSION['lang']) ?>" required </td>
|
|
|
|
<td width="3%" align="center"> <?= _("au") ?> </td>
|
|
<td width="15%"> <INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="fin" NAME="fin" value="<?= dateCouranteLang($_SESSION['lang']) ?>" required> </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:apercu_mouvement_assures();"> <?= _("Afficher résultats")."..." ?> </button> </td>
|
|
|
|
<td> </td>
|
|
<td> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:apercu_mouvement_assures_export();"> <?= _("Exporter vers Excel...") ?> </button> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_mvt">
|
|
<?php
|
|
require 'Vue/Ajaxmouvementsrh/index.php';
|
|
?>
|
|
</div>
|
|
|