39 lines
1.7 KiB
PHP
Executable File
39 lines
1.7 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - ". _("Prestataire");
|
|
?>
|
|
|
|
<legend> <?= _("Liste Assureurs") ?></legend>
|
|
|
|
<div id="div_gcs" >
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:10pt;' >
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2" style="text-align:center" width="10%" > Code </th>
|
|
<th rowspan="2" width="30%" style="text-align:center" > <?= _("Nom") ?></th>
|
|
<th colspan="3" width="30%" style="text-align:center" > <?= _("Taux ( % )") ?></th>
|
|
<th rowspan="2" style="text-align:center" > E-mail </th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th style="text-align:center" > Comm</th>
|
|
<th style="text-align:center" > <?= _("Redr") ?> </th>
|
|
<th style="text-align:center" > <?= _("TVA") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($gcs as $gc):
|
|
$idGc = $this->nettoyer($gc['id']);
|
|
$codeGcAssureur = $this->nettoyer($gc['codeGcAssureur']);
|
|
?>
|
|
<tr ondblclick="javascript:afficher_gc_assureur('<?=$idGc?>');" valign="top">
|
|
<td align="center"> <input type="button" style='font-size:10pt;' class = "form-control btn btn-primary" value="<?= $codeGcAssureur ?>" onClick="javascript:afficher_gc_assureur('<?=$idGc?>');" > </td>
|
|
<td align="center"> <?= $this->nettoyer($gc['libelle']) ?> </td>
|
|
<td align="center"> <?= $this->nettoyer($gc['gcTauxFraisReel']) ?> </td>
|
|
<td align="center"> <?= $this->nettoyer($gc['gcTauxRedressement']) ?> </td>
|
|
<td align="center"> <?= $this->nettoyer($gc['gcTauxTva']) ?> </td>
|
|
<td align="center"> <?= $this->nettoyer($gc['email']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|