a
This commit is contained in:
parent
3d633269e6
commit
a6c80ad67a
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
|
@ -15,6 +15,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th style='text-align:center'> <?= _("Lettres clés disponibles")." (".count($lettrecles).")" ?> </th>
|
<th style='text-align:center'> <?= _("Lettres clés disponibles")." (".count($lettrecles).")" ?> </th>
|
||||||
|
<th style='text-align:center'><?= _("Désignation") ?> </th>
|
||||||
<th width="7%" style='text-align:center'><?= _("Tarifé") ?> </th>
|
<th width="7%" style='text-align:center'><?= _("Tarifé") ?> </th>
|
||||||
<th width="7%" style='text-align:center'> => </th>
|
<th width="7%" style='text-align:center'> => </th>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
@ -24,19 +25,28 @@
|
||||||
<?php foreach ($lettrecles as $v):
|
<?php foreach ($lettrecles as $v):
|
||||||
$idLettre = $v['id'];
|
$idLettre = $v['id'];
|
||||||
|
|
||||||
//$lettreCle = $v['lettreCle'];
|
|
||||||
|
|
||||||
$dansDetailTarif = $v['dansDetailTarif'];
|
$dansDetailTarif = $v['dansDetailTarif'];
|
||||||
|
|
||||||
$tarife = $dansDetailTarif == "1"? "Oui" : "Non";
|
$tarife = $dansDetailTarif == "1"? "Oui" : "Non";
|
||||||
|
|
||||||
|
if (est_anglophone())
|
||||||
|
{
|
||||||
|
$description = $v['descriptionEng'];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$description = $v['description'];
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if($dansDetailTarif=='1'): ?>
|
<?php if($dansDetailTarif=='1'): ?>
|
||||||
<tr valign="top" style="color:blue;font-style: italic;">
|
<tr valign="top" style="color:blue;font-style: italic;">
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<td align='center'><?= $v['lettreCle'] ?></td>
|
<td align='center'><?= $v['lettreCle'] ?></td>
|
||||||
|
<td align='center'><?= $description ?></td>
|
||||||
<td align='center'><?= $tarife ?></td>
|
<td align='center'><?= $tarife ?></td>
|
||||||
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_une_lettre_cle_tarif('<?=$idLettre?>');" ></td>
|
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_une_lettre_cle_tarif('<?=$idLettre?>');" ></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
$libelleSecteur = $client['libelleSecteurEng'];
|
$libelleSecteur = $client['libelleSecteurEng'];
|
||||||
$libelleTypeClient = $client['libelleTypeClientEng'];
|
$libelleTypeClient = $client['libelleTypeClientEng'];
|
||||||
$libelleTitre = $client['libelleTitreEng'];
|
$libelleTitre = $client['libelleTitreEng'];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$libelleSecteur = $client['libelleSecteur'];
|
$libelleSecteur = $client['libelleSecteur'];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user