Damien LASSERRE 6302def1c6 Modification bug sur le controller Finance
Création de la géolocalisation de google sur les fiche identité
2011-05-06 14:34:12 +00:00

42 lines
1.5 KiB
PHTML

<div id="center">
<h1>ÉLÉMENTS FINANCIERS - BILANS</h1>
<div class="paragraph">
<table class="identite">
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">
Num&eacute;ro identifiant Siren
</td>
<td width="350" class="StyleInfoData">
<?php echo $this->SirenTexte($this->siren);?>
</td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Raison Sociale</td>
<td width="350" class="StyleInfoData"><?php echo $this->raisonSociale;?></td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td class="StyleInfoLib" width="200">Bilan de banque/assurance non gérés</td>
<td class="StyleInfoData" width="350"></td>
</tr>
</table>
<?php foreach ($this->listeBilan as $bilan):?>
<?php if(!empty($this->$bilan)):?>
<?php echo $this->partial('finance/bilansPartials/'.$bilan.'.partial.phtml',
array(
'date' => $this->date,
'duree' => $this->duree,
'dateFunction' => $this->dateFunction,
$bilan => $this->$bilan
));
?><br />
<?php else :?>
<?php $banqueAssurance = true;?>
<?php endif;?>
<?php endforeach;?>
</div>
<?php echo $this->render('cgu.phtml', $this->cgu);?>
</div>