valder
This commit is contained in:
parent
9b717d870d
commit
40043a56df
|
|
@ -23,7 +23,7 @@
|
||||||
<th><?= _("Adhérent / Bénéficiaire") ?></th>
|
<th><?= _("Adhérent / Bénéficiaire") ?></th>
|
||||||
<th class="text-center"><?= _("État") ?></th>
|
<th class="text-center"><?= _("État") ?></th>
|
||||||
<th width="20%"><?= _("Motif / Commentaire") ?></th>
|
<th width="20%"><?= _("Motif / Commentaire") ?></th>
|
||||||
<th width="20%"><?= _("Nb Facture") ?></th>
|
<th class="text-center" width="10%"><?= _("Nb Factures") ?></th>
|
||||||
<th class="text-center"><?= _("Actions") ?></th>
|
<th class="text-center"><?= _("Actions") ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
@ -31,10 +31,8 @@
|
||||||
<?php foreach ($demandes as $v):
|
<?php foreach ($demandes as $v):
|
||||||
$idDemande = $this->nettoyer($v['id']);
|
$idDemande = $this->nettoyer($v['id']);
|
||||||
$statusPaiement = $v['codeStatutPaiement'];
|
$statusPaiement = $v['codeStatutPaiement'];
|
||||||
|
$statut = est_anglophone() ? $v['statutEng'] : $v['statut'];
|
||||||
$statut = est_anglophone()? $v['statutEng']: $v['statut'];
|
$nbDemandeRemb = (int)$v['nbDemandeRemb'];
|
||||||
$nbDemandeRemb = $v['nbDemandeRemb'];
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="text-center px-3">
|
<td class="text-center px-3">
|
||||||
|
|
@ -71,13 +69,13 @@
|
||||||
<td class="text-truncate" style="max-width: 200px;" title="<?= $this->nettoyer($v['motifRejetRh']) ?>">
|
<td class="text-truncate" style="max-width: 200px;" title="<?= $this->nettoyer($v['motifRejetRh']) ?>">
|
||||||
<small class="text-muted italic"><?= $v['motifRejetRh'] ?: '-' ?></small>
|
<small class="text-muted italic"><?= $v['motifRejetRh'] ?: '-' ?></small>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-center w-5" >
|
<td class="text-center">
|
||||||
<small class="text-muted italic"><?= $nbDemandeRemb ?></small>
|
<span class="fw-bold text-secondary"><?= $nbDemandeRemb ?></span>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<div class="btn-group shadow-sm">
|
<div class="btn-group shadow-sm">
|
||||||
<?php if($statusPaiement=="2" && $nbDemandeRemb > 0): ?>
|
<?php if($statusPaiement=="2" && $nbDemandeRemb > 0): ?>
|
||||||
<button class="btn btn-sm btn-primary me-2" title="<?= _("Valider") ?>"
|
<button class="btn btn-sm btn-primary me-1" title="<?= _("Valider") ?>"
|
||||||
onClick="valider_remboursement('<?= $idDemande ?>');">
|
onClick="valider_remboursement('<?= $idDemande ?>');">
|
||||||
<i class="fas fa-check"></i>
|
<i class="fas fa-check"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user