This commit is contained in:
KONE SOREL 2026-03-04 08:58:15 +00:00
parent 240d5dde1d
commit e4d331ffdd

View File

@ -204,26 +204,28 @@
</tr>
</thead>
<tbody>
<?php
$centres_bool = [
['01', _("Limiter la recherche des praticiens au centre de soins courant."), 'envoismsactif', $envoismsactifOuinon, 's_envoismsactif'],
['02', _("Activer la modification du prix de l'acte dans le centre de soins."), 'envoismswhatsappactif', $envoismswhatsappactifOuinon, 's_envoismswhatsappactif'],
['03', _("Autoriser la prescription malgré un blocage indiqué dans le barème de prestations."), 'smsAssure', $smsAssureOuinon, 's_smsAssure'],
['04', _("Exiger un bon principal pour tout bon de consultation gratuite."), 'smsmParFacture', $smsmParFactureOuinon, 's_smsmParFacture'],
['05', _("Permettre l'exécution anticipée d'un bon d'hospitalisation issu d'une proforma."), 'emailParFacture', $emailParFactureOuinon, 's_emailParFacture'],
['06', _("Bloquer les prestations en cas de prime impayée."), 'copieSmsPrestataireAssure', $copieSmsAssureOuinon, 's_copieSmsAssure']
];
foreach($centres_bool as $b):
$status = ($societeuser[$b[2]] == "1"); ?>
<tr class="searchable-row">
<td width="5%" class="text-center"><span class="badge-ghost bg-success-ghost">06</span></td>
<td class="text-muted fw-bold"><?= _("Mode de biométrie activé") ?></td>
<td width="15%" class="text-center bg-light text-muted fw-bold">
<?= est_anglophone() ? $this->nettoyer($societeuser['biometrieEng']) : $this->nettoyer($societeuser['biometrie']) ?>
</td>
<td width="22%">
<select class="form-select form-select-sm fw-bold border-warning" id="s_codeModeBiometrie" name="s_codeModeBiometrie">
<?php liste_options($modeBiometrie, $this->nettoyer($societeuser['codeModeBiometrie']), true); ?>
<td class="text-center"><span class="badge-ghost bg-primary-ghost"><?= $b[0] ?></span></td>
<td class="text-muted fw-bold"><?= $b[1] ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= $status ? _("Oui") : _("Non") ?></td>
<td>
<select class="form-select form-select-sm fw-bold border-warning" id="<?= $b[4] ?>" name="<?= $b[4] ?>">
<?php liste_options($b[3], $this->nettoyer($societeuser[$b[2]]), true); ?>
</select>
</td>
</tr>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-success-ghost">07</span></td>
<td class="text-muted fw-bold"><?= _("Tentatives biométrie avant alerte") ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= $this->nettoyer($societeuser['nbTentativeBiometrie']) ?></td>
<td>
<input class="form-control form-control-sm text-center fw-bold border-warning" id="s_nbTentativeBiometrie" name="s_nbTentativeBiometrie" type="text" value="<?= $this->nettoyer($societeuser['nbTentativeBiometrie']) ?>">
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>