a
This commit is contained in:
parent
d4736a4944
commit
50ce6c2ef8
30
Controleur/ControleurListeremboursementclassique.php
Normal file
30
Controleur/ControleurListeremboursementclassique.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
require_once 'Framework/Controleur.php';
|
||||
require_once 'Modele/Facture.php';
|
||||
require_once 'Modele/Adherent.php';
|
||||
require_once 'Modele/Beneficiaire.php';
|
||||
require_once 'Modele/Menuvueutilisateur.php';
|
||||
|
||||
class ControleurListeremboursementclassique extends Controleur {
|
||||
private $menuvue;
|
||||
private $facture;
|
||||
private $adherent;
|
||||
private $ben;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->menuvue = new Menuvueutilisateur();
|
||||
$this->menuvue->getMenuVue('Listeremboursementclassique');
|
||||
|
||||
$this->facture = new Facture();
|
||||
$this->adherent = new Adherent();
|
||||
$this->ben = new Beneficiaire();
|
||||
}
|
||||
|
||||
public function index() {
|
||||
$d1 = $_SESSION['dUneSemaineAvant_C'];
|
||||
$d2 = date('Y-m-d');
|
||||
|
||||
$this->genererVue();
|
||||
}
|
||||
}
|
||||
35
Vue/Listeremboursementclassique/index.php
Normal file
35
Vue/Listeremboursementclassique/index.php
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
$this->titre = "INTER SANTE - Remboursement classique";
|
||||
?>
|
||||
|
||||
<input class="sr-only" id="nomForm" name="nomForm" type="text" value= "remboursementClassic" >
|
||||
|
||||
<legend> <?= _("Liste des remboursements Hors Tiers Payant") ?></legend>
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:9pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="10%" > <?= _("Période du") ?> </td>
|
||||
<td width="20%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="d1" NAME="d1" value="<?= dateLang($_SESSION['dUneSemaineAvant_C'],$_SESSION['lang']) ?>" ></td>
|
||||
|
||||
<td width="10%" align="center" > <?= _("au") ?> </td>
|
||||
<td width="20%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control datepicker" TYPE="text" id="d2" NAME="d2" value="<?= dateCouranteLang($_SESSION['lang']) ?>" ></td>
|
||||
|
||||
<td> </td>
|
||||
<td width="10%" > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:lister_dossiers_classiques('0');"><?= _("Tous...") ?></button> </td>
|
||||
<td> </td>
|
||||
<td width="10%" > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:lister_dossiers_classiques('1');"><?= _("Filtre Assurés...") ?></button> </td>
|
||||
<td> </td>
|
||||
<td width="10%" > <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:lister_dossiers_classiques('2');"><?= _("Filtre Polices...") ?></button> </td>
|
||||
<td> </td>
|
||||
<td > <button style='font-size:10pt;' type="button" class="form-control btn btn-success" onclick="javascript:lister_dossiers_classiques_export();"><?= _("Exporter...") ?></button> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div id="div_export_a"></div>
|
||||
|
||||
<input id="libelleFiltre" name="libelleFiltre" style="text-align:center; font-size:11pt; background-color:#027BE3;color:white;" class="form-control" type="text" value="" readonly>
|
||||
<input id="filtre" name="filtre" class="sr-only" type="text" value="0" readonly>
|
||||
|
||||
<div id="div_dossiers"></div>
|
||||
Loading…
Reference in New Issue
Block a user