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>
|
||||
<tr>
|
||||
<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'> => </th>
|
||||
</tr>
|
||||
|
|
@ -24,19 +25,28 @@
|
|||
<?php foreach ($lettrecles as $v):
|
||||
$idLettre = $v['id'];
|
||||
|
||||
//$lettreCle = $v['lettreCle'];
|
||||
|
||||
$dansDetailTarif = $v['dansDetailTarif'];
|
||||
|
||||
$tarife = $dansDetailTarif == "1"? "Oui" : "Non";
|
||||
|
||||
if (est_anglophone())
|
||||
{
|
||||
$description = $v['descriptionEng'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$description = $v['description'];
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<?php if($dansDetailTarif=='1'): ?>
|
||||
<tr valign="top" style="color:blue;font-style: italic;">
|
||||
<tr valign="top" style="color:blue;font-style: italic;">
|
||||
<?php else: ?>
|
||||
<tr valign="top">
|
||||
<tr valign="top">
|
||||
<?php endif; ?>
|
||||
<td align='center'><?= $v['lettreCle'] ?></td>
|
||||
<td align='center'><?= $description ?></td>
|
||||
<td align='center'><?= $tarife ?></td>
|
||||
<td align='center'> <input type="button" value="=>" onClick="javascript:ajouter_une_lettre_cle_tarif('<?=$idLettre?>');" ></td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
$libelleSecteur = $client['libelleSecteurEng'];
|
||||
$libelleTypeClient = $client['libelleTypeClientEng'];
|
||||
$libelleTitre = $client['libelleTitreEng'];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$libelleSecteur = $client['libelleSecteur'];
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user