der
This commit is contained in:
parent
924d881bcf
commit
7571292e7d
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<?php if(count($familleacte) > 0): ?>
|
||||
<div class="table-responsive shadow-sm rounded">
|
||||
<table class="table table-sm table-hover table-bordered align-middle mb-0" style="font-size: 0.85rem;">
|
||||
<table class="table table-sm table-hover table-bordered align-middle mb-0" style="font-size: 0.45rem;">
|
||||
<thead class="table-light border-secondary">
|
||||
<tr class="text-center small">
|
||||
<th rowspan="2" class="align-middle bg-light"><?= _("Effet") ?></th>
|
||||
|
|
@ -36,23 +36,29 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($familleacte as $v):
|
||||
$idGarantie = $v['id'];
|
||||
$supprime = $v['supprime'];
|
||||
$isActif = ($this->nettoyer($v['actif']) == "1");
|
||||
$idGarantie = $v['id'];
|
||||
$supprime = $v['supprime'];
|
||||
$isActif = ($this->nettoyer($v['actif']) == "1");
|
||||
|
||||
$plafondFamille = ($this->nettoyer($v['forfaitPlafondFamille'])=="9999999999") ? _("Illimité"): format_N($this->nettoyer($v['forfaitPlafondFamille']));
|
||||
$transacFamille = ($this->nettoyer($v['nbreTransactionFamille'])=="999") ? _("Illimité"): format_N($this->nettoyer($v['nbreTransactionFamille']));
|
||||
|
||||
$plafond = ($this->nettoyer($v['forfaitPlafond'])=="9999999999") ? _("Illimité"): format_N($this->nettoyer($v['forfaitPlafond']));
|
||||
$transac = ($this->nettoyer($v['nbreTransaction'])=="999") ? _("Illimité"): format_N($this->nettoyer($v['nbreTransaction']));
|
||||
?>
|
||||
|
||||
<tr class="text-center <?= ($supprime == '1') ? 'table-danger opacity-50' : ''; ?>">
|
||||
<td class="fw-bold text-nowrap"><?= datefr($this->nettoyer($v['dateEffet'])); ?></td>
|
||||
|
||||
<td class="bg-primary bg-opacity-10"><?= format_N($this->nettoyer($v['forfaitPlafondFamille'])); ?></td>
|
||||
<td class="bg-primary bg-opacity-10 small"><?= $this->nettoyer($v['codePeriodicitePlafondFamille']);?></td>
|
||||
<td class="bg-primary bg-opacity-10"><?= $this->nettoyer($v['nbreTransactionFamille']);?></td>
|
||||
<td class="bg-primary bg-opacity-10 small"><?= $this->nettoyer($v['codePeriodiciteFamille']);?></td>
|
||||
<td class="bg-info-subtle small"><?= $plafondFamille; ?></td>
|
||||
<td class="bg-info-subtle small"><?= $this->nettoyer($v['codePeriodicitePlafondFamille']);?></td>
|
||||
<td class="bg-info-subtle small"><?= $transacFamille;?></td>
|
||||
<td class="bg-info-subtle small"><?= $this->nettoyer($v['codePeriodiciteFamille']);?></td>
|
||||
|
||||
<td class="bg-dark bg-opacity-10"><?= format_N($this->nettoyer($v['forfaitPlafond']));?></td>
|
||||
<td class="bg-dark bg-opacity-10 small"><?= $this->nettoyer($v['codePeriodicitePlafond']);?></td>
|
||||
<td class="bg-dark bg-opacity-10"><?= $this->nettoyer($v['nbreTransaction']);?></td>
|
||||
<td class="bg-dark bg-opacity-10 small"><?= $this->nettoyer($v['codePeriodicite']); ?></td>
|
||||
<td class="bg-warning-subtle small"><?= $plafond;?></td>
|
||||
<td class="bg-warning-subtle small"><?= $this->nettoyer($v['codePeriodicitePlafond']);?></td>
|
||||
<td class="bg-warning-subtle small"><?= $transac;?></td>
|
||||
<td class="bg-warning-subtle small"><?= $this->nettoyer($v['codePeriodicite']); ?></td>
|
||||
|
||||
<td class="small fw-bold text-primary"><?= $this->nettoyer($v['codeTypeRemboursement']); ?></td>
|
||||
<td><?= $this->nettoyer($v['delaiCarenceFamilleActe']);?> m</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user