Damien LASSERRE 9ef83fc34c Modification de la classe graphique
correction totale de la synthése a 100%
correction totale des ratios a 100%
correction totale des bilans a 100%
finalisation de indiscore2 ( quelque modif a faires ).
2011-05-26 15:56:16 +00:00

34 lines
908 B
PHTML

<style>
.identite, h1
{
display:none;
}
</style>
<div id="center">
<div id="paragraph">
<h2>Eléments Financiers</h2>
<?php $i = 0;?>
<table id="synthese">
<tr>
<th></th>
<?php foreach ($this->annees as $annee => $duree):?>
<th class="date" colspan="2"><?php echo $annee;?><br /><?php echo $duree;?> Mois</th>
<?php endforeach;?>
</tr>
<?php foreach ($this->synthese as $champ => $element):?>
<?php $nom = explode(':', $champ);?>
<tr>
<td style="cursor:help" class="tooltip" title="<?php echo $this->commentaires[$nom[0]]['commentaires'];?>" class="head">
<b><?php echo $nom[1];?></b>
</td>
<?php foreach ($element as $item):?>
<td><?php echo number_format($item['Valeur'], 0, '', ' ');?> K€</td>
<td><?php echo $item['percent'];?> %</td>
<?php endforeach;?>
</tr>
<?php $i++;?>
<?php endforeach;?>
</table>
</div>
</div>