r
This commit is contained in:
parent
dd3d8f6d94
commit
725aebc459
|
|
@ -69,7 +69,61 @@
|
|||
</div>
|
||||
|
||||
<div class="card shadow-sm border-0">
|
||||
|
||||
<div class="table-responsive shadow-sm rounded border">
|
||||
<table class="table table-hover align-middle mb-0" style="font-size: 8pt; min-width: 1100px;"> <thead class="table-dark text-uppercase" style="font-size: 7pt;">
|
||||
<tr class="text-center">
|
||||
<th class="ps-2">Cat</th>
|
||||
<th class="text-start" style="min-width: 150px;"><?= _("Nom & Prénoms") ?></th>
|
||||
<th>Type</th>
|
||||
<th>N°</th>
|
||||
<th>Entrée</th>
|
||||
<th>Durée</th>
|
||||
<th>Ratio</th>
|
||||
<th>S/P</th>
|
||||
<th class="bg-secondary text-white"><?= _("Non Acquise") ?></th>
|
||||
<th class="bg-info text-dark"><?= _("P. Nette Rist") ?></th>
|
||||
<th class="bg-info text-dark"><?= $taxLabel ?></th>
|
||||
<th class="bg-primary text-white"><?= _("TTC Rist") ?></th>
|
||||
<th class="pe-2">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($beneficiaires_sel as $b): ?>
|
||||
<tr class="text-center">
|
||||
<td class="fw-bold text-muted"><?= $this->nettoyer($b['codeProduit']) ?></td>
|
||||
<td class="text-start fw-bold"><?= $this->nettoyer($b['nomBeneficiaire']) ?></td>
|
||||
<td><span class="badge bg-light text-dark border"><?= $this->nettoyer($b['codeLienParente']) ?></span></td>
|
||||
<td class="text-muted small"><?= $this->nettoyer($b['numeroBeneficiaire']) ?></td>
|
||||
<td class="text-nowrap"><?= dateLang($this->nettoyer($b['dateEntree']), $_SESSION['lang']) ?></td>
|
||||
<td><?= $this->nettoyer($b['duree']) ?></td>
|
||||
<td><?= $this->nettoyer($b['ratioNonAcquise']) ?></td>
|
||||
<td><?= $this->nettoyer($b['rapportsp']) ?>%</td>
|
||||
<td class="fw-bold text-danger text-nowrap"><?= format_N($this->nettoyer($b['primeNonAcquise'])) ?></td>
|
||||
<td class="text-nowrap"><?= format_N($this->nettoyer($b['primeHt'])) ?></td>
|
||||
<td class="text-nowrap"><?= format_N($this->nettoyer($b['taxe'])) ?></td>
|
||||
<td class="fw-bold text-primary text-nowrap"><?= format_N($this->nettoyer($b['primeTtc'])) ?></td>
|
||||
<td>
|
||||
<div class="form-check form-switch d-inline-block">
|
||||
<input class="form-check-input" type="checkbox" style="cursor:pointer"
|
||||
<?= ($b['choix'] == '1') ? 'checked' : '' ?>
|
||||
onclick="beneficiaire_a_retirer(this.checked ? '1' : '0', <?= $b['idBeneficiaire_temp'] ?>);">
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
<tfoot class="table-light fw-bold">
|
||||
<tr class="text-center">
|
||||
<td colspan="8" class="text-end pe-3 text-uppercase small"><?= _("Totaux") ?></td>
|
||||
<td class="text-danger"><?= format_N($this->nettoyer($avenant['primeNonAcquise'])) ?></td>
|
||||
<td><?= format_N($this->nettoyer($avenant['primeHt'])) ?></td>
|
||||
<td><?= format_N($this->nettoyer($avenant['taxe'])) ?></td>
|
||||
<td class="text-primary fs-6"><?= format_N($this->nettoyer($avenant['primeTtc'])) ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user