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