This commit is contained in:
KONE SOREL 2026-03-04 11:25:40 +00:00
parent 122b313ab1
commit a4a0781e2b

View File

@ -356,6 +356,35 @@
</table>
</div>
</div>
<div class="card border-0 shadow-sm mb-4">
<div class="card-header bg-danger py-3 d-flex align-items-center justify-content-between">
<h6 class="mb-0 text-white fw-bold text-uppercase">
<i class="fas fa-microscope me-2"></i><?= _("Laboratoires & Imageries") ?>
</h6>
<span class="badge bg-white text-primary rounded-pill"><?= _("01 Paramètre") ?></span>
</div>
<div class="card-body p-0">
<table class="table table-hover align-middle mb-0">
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-danger-ghost">01</span></td>
<td class="text-muted fw-bold"><?= _("Permettre aux laboratoires de compléter une prescription médicale.") ?></td>
<td class="text-center bg-light text-muted fw-bold">
<?php $labo = ($societeuser['ajoutPrescriptionExam'] == "1"); ?>
<span class="badge-ghost <?= $labo ? 'bg-success-ghost' : 'bg-danger-ghost' ?>">
<?= $labo ? _("OUI") : _("NON") ?>
</span>
</td>
<td>
<select class="form-select form-select-sm fw-bold border-warning" id="s_ajoutPrescriptionExam" name="s_ajoutPrescriptionExam">
<?php liste_options($ajoutPrescriptionExamOuinon, $this->nettoyer($societeuser['ajoutPrescriptionExam']), true); ?>
</select>
</td>
</tr>
</table>
</div>
</div>
</div>
</form>
</div>