Import initial du projet Production
This commit is contained in:
41
Vue/Sppolice/index.php
Executable file
41
Vue/Sppolice/index.php
Executable file
@@ -0,0 +1,41 @@
|
||||
<?php $this->titre = "INTER SANTE - Rapport S/P police"; ?>
|
||||
|
||||
|
||||
<legend> <?= _("Rapport S / P de la police") . " : " . $this->nettoyer($_SESSION['numeroPolice_C'])?> </legend>
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="20%" style='text-align:center'> <?= _("Date Effet") ?> </th>
|
||||
<th width="20%" style='text-align:center'> <?= _("Date Echéance") ?> </th>
|
||||
<th width="20%" style='text-align:center'> <?= _("Durée Acquise") ?> </th>
|
||||
<th width="20%" style='text-align:center'> <?= _("Ratio Acquise") ?> </th>
|
||||
<th width="20%" style='text-align:center'> <?= _("Durée Contrat") ?> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
|
||||
<tr>
|
||||
<td> <?= dateLang($this->nettoyer($sppoliceentete['dateEffet'])) ?> </td>
|
||||
<td> <?= dateLang($this->nettoyer($sppoliceentete['dateEcheance'])) ?> </td>
|
||||
<td> <?= $this->nettoyer($sppoliceentete['duree_acquise']) ?> </td>
|
||||
<td> <?= $this->nettoyer($sppoliceentete['ratio_acquise']) ?> </td>
|
||||
<td> <?= $this->nettoyer($sppoliceentete['dureePolice']) ?> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;' >
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> <button type="button" style="font-size:10pt;" class="form-control btn btn-primary" onclick="javascript:sinistres_a_prime_police();" > <?= _("Police entière...") ?> </button> </td>
|
||||
<td> <button type="button" style="font-size:10pt;" class="form-control btn btn-primary" onclick="javascript:sinistres_a_prime_categorie();" > <?= _("Par Produit...") ?> </button> </td>
|
||||
<td> <button type="button" style="font-size:10pt;" class="form-control btn btn-primary" onclick="javascript:sinistres_a_prime_college();" > <?= _("Par Collège...") ?> </button> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div id="div_detail_sp">
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user