This commit is contained in:
KONE SOREL 2026-04-04 16:43:26 +00:00
parent 18c68193b1
commit e02a10410a
2 changed files with 12 additions and 9 deletions

View File

@ -10,7 +10,10 @@
</div>
<div class="flex-grow-1">
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= $this->nettoyer($produit['libelle']) ?></h4>
<p class="text-muted small mb-0"><?= _("Code Produit :") ?> <span class="badge bg-light text-muted fw-bold border"><?= $this->nettoyer($produit['codeProduit']) ?></span></p>
<p class="text-muted small mb-0"><?= _("Code Produit") ?> :
<span class="badge bg-light text-primary fw-bold border"><?= $this->nettoyer($produit['codeProduit']) ?></span>
<span class="badge bg-light text-primary fw-bold border"><?= $this->nettoyer($produit['libelle']) ?></span>
</p>
</div>
</div>
</div>
@ -18,13 +21,13 @@
<input type="hidden" id="idProduit" name="idProduit" value="<?= $this->nettoyer($produit['idProduit']) ?>">
<div class="card border-0 shadow-sm mb-1">
<div class="card-header bg-white py-3">
<h6 class="mb-0 fw-bold text-primary text-uppercase"><i class="fas fa-info-circle me-2"></i><?= _("Configuration Générale") ?></h6>
<div class="card-header border-bottom bg-light py-3">
<h6 class="mb-0 fw-bold text-primary text-uppercase small"><i class="fas fa-info-circle me-2"></i><?= _("Configuration Générale") ?></h6>
</div>
<div class="card-body p-4">
<div class="row g-4">
<div class="col-md-3">
<label class="form-label small text-muted fw-bold text-uppercase"><?= _("État du Produit") ?></label>
<label class="form-label small text-muted fw-bold"><?= _("État du Produit") ?></label>
<?php if (!empty($produit['codeEtatProduit'])): ?>
<select class="form-control bg-light border-0 fw-bold" disabled>
<?php liste_options($etatproduit,$this->nettoyer($produit['codeEtatProduit']),false); ?>
@ -34,7 +37,7 @@
<?php endif; ?>
</div>
<div class="col-md-5">
<label class="form-label small text-muted fw-bold text-uppercase"><?= _("Garant") ?></label>
<label class="form-label small text-muted fw-bold"><?= _("Garant") ?></label>
<?php if (!empty($produit['codeGcAssureur'])): ?>
<select class="form-control bg-light border-0 fw-bold" disabled>
<?php liste_options($garant,$this->nettoyer($produit['codeGcAssureur']),false); ?>
@ -44,7 +47,7 @@
<?php endif; ?>
</div>
<div class="col-md-4">
<label class="form-label small text-muted fw-bold text-uppercase"><?= _("Mode de Calcul Prime") ?></label>
<label class="form-label small text-muted fw-bold"><?= _("Mode de Calcul Prime") ?></label>
<?php if (!empty($produit['codeModecalculPrime'])): ?>
<select class="form-control bg-light border-0 fw-bold" disabled>
<?php liste_options($calculprime,$this->nettoyer($produit['codeModecalculPrime']),false); ?>
@ -54,8 +57,8 @@
<?php endif; ?>
</div>
<div class="col-md-4">
<label class="form-label small text-muted fw-bold text-uppercase"><?= _("Plafond Famille") ?></label>
<div class="h5 fw-bold mb-0 text-dark"><?= format_N($this->nettoyer($produit['plafondAdherent'])) ?></div>
<label class="form-label small text-muted fw-bold"><?= _("Plafond Famille") ?></label>
<div class="h5 fw-bold mb-0 bg-light text-dark"><?= format_N($this->nettoyer($produit['plafondAdherent'])) ?></div>
</div>
</div>
</div>

View File

@ -12,7 +12,7 @@
</div>
<div>
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase fs-5 text-warning"><?= _("Modifier Produit Santé") ?></h4>
<p class="text-muted small mb-0 d-none d-md-block"><?= _("Code :") ?>
<p class="text-muted small mb-0 d-none d-md-block"><?= _("Code") ?> :
<span class="badge bg-light text-primary fw-bold border"><?= $this->nettoyer($produit['codeProduit']) ?></span>
<span class="badge bg-light text-primary fw-bold border"><?= $this->nettoyer($produit['libelle']) ?></span>
</p>