This commit is contained in:
KONE SOREL 2026-03-10 12:17:52 +00:00
parent 5df477def1
commit bb139b6425
2 changed files with 12 additions and 5 deletions

View File

@ -33,9 +33,8 @@ class ControleurFicheprestataire extends Controleur
$societe = $this->societe->getSocieteSimple($codeSociete);
$chemin = $this->menuvue->getChemin('Ficheprestataire');
$this->genererVue(array('prestataire' => $prestataire, 'societe' => $societe,
'hactivationderogationfingerprestataires' => $hactivationderogationfingerprestataires, 'chemin' => $chemin));
'hactivationderogationfingerprestataires' => $hactivationderogationfingerprestataires
));
}
}

View File

@ -270,12 +270,20 @@
<tr>
<td> <?= _("Mode de biométrie") ?> </td>
<td colspan="3"><INPUT class="form-control" TYPE="text" value="<?= $modeBiometrie?>" readonly></td>
<td ><INPUT class="form-control" TYPE="text" value="<?= $modeBiometrie?>" readonly></td>
<td align="center" > <?= _("Prix Modifiable ?") ?> </td>
<td >
<?php if ($prestataire['prixActeModifiable']=="1"): ?>
<INPUT class="form-control" TYPE="text" value="<?= _("Oui") ?>" readonly>
<?php else: ?>
<INPUT class="form-control" TYPE="text" value="<?= _("Non") ?>" readonly>
<?php endif; ?>
</td>
<td align="center" > <?= _("Latitude | Longitude") ?> </td>
<td colspan="3"><INPUT class="form-control" TYPE="text" value="<?=$prestataire['latitude'].' | '.$prestataire['longitude'] ?>" readonly></td>
</tr>
</tbody>
</table>