74 lines
3.6 KiB
PHP
74 lines
3.6 KiB
PHP
<div id="div_fraisgestion">
|
|
|
|
<?php
|
|
$this->titre = "INTER-SANTE - "._("Frais de gestion");
|
|
$regle = $entetefraisgestion['regle'];
|
|
$facture = $entetefraisgestion['facture'];
|
|
$regle = $entetefraisgestion['regle'];
|
|
?>
|
|
<input class="sr-only" type="text" id="regle" name="regle" value="<?= $regle ?>" >
|
|
<input class="sr-only" type="text" id="codeGcAssureur" name="codeGcAssureur" value="<?= $this->nettoyer($entetefraisgestion['codeGcAssureur']) ?>" >
|
|
<input class="sr-only" type="text" id="codeExercice" name="codeExercice" value="<?= $this->nettoyer($entetefraisgestion['codeExercice']) ?>" >
|
|
<input class="sr-only" type="text" id="codeMois" name="codeMois" value="<?= $this->nettoyer($entetefraisgestion['codeMois']) ?>" >
|
|
|
|
<legend>
|
|
FRAIS DE GESTION =>
|
|
<?= _("Facturé?") ?>
|
|
<?php if ($facture=="1"): ?>
|
|
<td align='center'> <input type="checkbox" checked disabled></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" disabled></td>
|
|
<?php endif; ?>
|
|
=>
|
|
<?= _("Réglé?") ?>
|
|
<?php if ($regle=="1"): ?>
|
|
<td align='center'> <input type="checkbox" checked disabled></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" disabled></td>
|
|
<?php endif; ?>
|
|
</legend>
|
|
<table class="table table-responsive table-condensed" style='font-size:9pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%">
|
|
<?php if (isset($_SESSION['lang']) && $_SESSION['lang']=="en_US"): ?>
|
|
<input class="form-control" style="text-align: center; font-size:9pt;" type="text" value="<?= $this->nettoyer($entetefraisgestion['periodeEng']) ?>" readonly>
|
|
<?php else: ?>
|
|
<input class="form-control" style="text-align: center; font-size:9pt;" type="text" value="<?= $this->nettoyer($entetefraisgestion['periode']) ?>" readonly>
|
|
<?php endif; ?>
|
|
</td>
|
|
|
|
<td width="5%" align="center"> Date </td>
|
|
<td><INPUT style='font-size:9pt; text-align:center;' class="form-control" TYPE="text" value="<?= dateheureFr($this->nettoyer($entetefraisgestion['dateSysteme'])) ?>" readonly ></td>
|
|
|
|
<td width="7%" align="center" > <?= _("Nb cartes") ?> </td>
|
|
<td width="8%" > <INPUT style='font-size:9pt; text-align:center;' class="form-control" TYPE="text" value="<?= format_N($this->nettoyer($entetefraisgestion['nbCarte'])) ?>" readonly > </td>
|
|
|
|
<td width="7%" align="center" > <?= _("Montant") ?> </td>
|
|
<td > <INPUT style='font-size:9pt; text-align:center;' class="form-control" TYPE="text" value="<?= format_N($this->nettoyer($entetefraisgestion['montantFrais'])) ?>" readonly > </td>
|
|
|
|
<td width="5%" align="center" > <?= _("Tva") ?> </td>
|
|
<td > <INPUT style='font-size:9pt; text-align:center;' class="form-control" TYPE="text" value="<?= format_N($this->nettoyer($entetefraisgestion['tvaFrais'])) ?>" readonly > </td>
|
|
|
|
<td width="5%" align="center" > <?= _("TTC") ?> </td>
|
|
<td > <INPUT style='font-size:9pt; text-align:center;' class="form-control" TYPE="text" value="<?= format_N($this->nettoyer($entetefraisgestion['ttcFrais'])) ?>" readonly > </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="4"> <input class = "form-control btn btn-primary" type="button" value="<?= _("Détail...") ?>" onClick="afficher_detail_gcfraisgestion();" style='font-size:9pt;' > </td>
|
|
|
|
<td colspan="2"> </td>
|
|
|
|
<td colspan="5"> <input class = "form-control btn btn-primary" type="button" value="<?= _("Cumul par souscripteur...") ?>" onClick="cumul_gc_frais_gestion_par_client();" style='font-size:9pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<div id="div_detail_fraisgestion">
|
|
</div>
|
|
|
|
<div id="div_export_a">
|
|
</div>
|
|
</div>
|