rt
This commit is contained in:
parent
0f3b2bb3dd
commit
dd71000022
|
|
@ -80,7 +80,9 @@ class College_temp extends Modele {
|
|||
|
||||
public function getPrestation($idCollegeTemp)
|
||||
{
|
||||
$sql = 'select A.*, B.libelle as reseausoin from prestation_temp A
|
||||
//
|
||||
$sql = 'select A.*, B.libelle as reseausoin,
|
||||
B.libelleEng as reseausoinEng from prestation_temp A
|
||||
join reseausoins B on (B.codeReseau=A.codeReseau)
|
||||
where (A.idCollegeTemp=?) order by A.tmBase, A.tm';
|
||||
|
||||
|
|
|
|||
|
|
@ -15,9 +15,13 @@
|
|||
<tbody>
|
||||
<?php foreach ($tableau_prestations as $prestation):
|
||||
$idPrestation = $this->nettoyer($prestation['id']);
|
||||
$reseausoin = est_anglophone()
|
||||
? $this->nettoyer($prestation['reseausoinEng'])
|
||||
: $this->nettoyer($prestation['reseausoin']);
|
||||
|
||||
?>
|
||||
<tr class="align-middle">
|
||||
<td><?= $this->nettoyer($prestation['reseausoin']) ?></td>
|
||||
<td><?= $reseausoin ?></td>
|
||||
<td><?= $this->nettoyer($prestation['tmBase']) ?></td>
|
||||
<td><?= $this->nettoyer($prestation['tauxRachatTm']) ?></td>
|
||||
<td><?= $this->nettoyer($prestation['tm']) ?></td>
|
||||
|
|
|
|||
|
|
@ -291,9 +291,11 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
|
|||
<a class="dropdown-item" href="javascript:change_password()">
|
||||
<i class="fas fa-user-circle me-2"></i> <?= _('Mon compte') ?>
|
||||
</a>
|
||||
<!--
|
||||
<a class="dropdown-item" href="javascript:appNotifications.showMessagesModal()">
|
||||
<i class="fas fa-envelope me-2"></i> <?= _('Messagerie') ?>
|
||||
</a>
|
||||
-->
|
||||
<div class="dropdown-divider"></div>
|
||||
<a class="dropdown-item text-danger" href="Connexion/deconnecter">
|
||||
<i class="fas fa-sign-out-alt me-2"></i> <?= _('Déconnexion') ?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user