This commit is contained in:
KONE SOREL 2025-12-27 09:28:40 +00:00
parent eb72dadc1b
commit c07faffb15

View File

@ -3,7 +3,7 @@
<table class="table table-hover align-middle bg-white mb-0" style="font-size: 0.9rem;"> <table class="table table-hover align-middle bg-white mb-0" style="font-size: 0.9rem;">
<thead class="table-light text-nowrap"> <thead class="table-light text-nowrap">
<tr> <tr>
<th class="text-center" width="5%"><?= _("ID") ?></th> <th class="text-center" width="5%" style="display:none;"><?= _("ID") ?></th>
<th class="text-center"><?= _("Émission") ?></th> <th class="text-center"><?= _("Émission") ?></th>
<th class="text-center"><?= _("Date") ?></th> <th class="text-center"><?= _("Date") ?></th>
<th><?= _("Libellé") ?></th> <th><?= _("Libellé") ?></th>
@ -23,7 +23,7 @@
$soldeClass = ($solde <= 0) ? 'bg-success-soft text-success' : 'bg-danger-soft text-danger'; $soldeClass = ($solde <= 0) ? 'bg-success-soft text-success' : 'bg-danger-soft text-danger';
?> ?>
<tr> <tr>
<td class="text-center text-muted fw-bold"><?= $idQuittance ?></td> <td class="text-center text-muted fw-bold" style="display:none;"><?= $idQuittance ?></td>
<td class="text-center"> <td class="text-center">
<button class="btn btn-sm btn-outline-info px-2 py-0" <button class="btn btn-sm btn-outline-info px-2 py-0"
@ -52,11 +52,8 @@
<td class="text-center"> <td class="text-center">
<div class="btn-group shadow-sm"> <div class="btn-group shadow-sm">
<button title="<?= _("Assureur") ?>" class="btn btn-sm btn-primary" onclick="imprimer_quittance(<?= $idQuittance ?>);">
<i class="bi bi-printer"></i>
</button>
<button title="<?= _("Client") ?>" class="btn btn-sm btn-outline-primary" onclick="imprimer_quittance_client(<?= $idQuittance ?>);"> <button title="<?= _("Client") ?>" class="btn btn-sm btn-outline-primary" onclick="imprimer_quittance_client(<?= $idQuittance ?>);">
<i class="bi bi-person-badge"></i> <i class="bi bi-printer"></i>
</button> </button>
</div> </div>
</td> </td>