57 lines
2.4 KiB
PHTML
Raw Normal View History

<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>
<form method="POST" action="<?php echo $this->url();?>">
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Type de bilan</td>
<td width="350" class="StyleInfoData">
<input <?php echo ($this->typeBilan == 'N')?$this->isChecked:$this->isNotChecked;?> onclick="submit();" type="radio" value="N" name="typeBilan" />Réel, Normal, Simplifié
<input <?php echo ($this->typeBilan == 'C')?$this->isChecked:$this->isNotChecked;?> onclick="submit();" type="radio" value="C" name="typeBilan" />Consolidé
</td>
</form>
</tr>
<?php if (!isset($this->listeBilan)):?>
<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>
<?php endif;?>
</table>
<?php foreach ($this->listeBilan as $bilan):?>
2011-05-13 16:33:21 +00:00
<?php $reference = 'reference'.$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,
'siren' => $this->siren,
$bilan => $this->$bilan,
2011-05-13 16:33:21 +00:00
'typeBilan'=> $this->typeBilan,
$reference => $this->$reference,
));
?><br />
<?php else :?>
<?php $banqueAssurance = true;?>
<?php endif;?>
<?php endforeach;?>
</div>
<?php echo $this->render('cgu.phtml', $this->cgu);?>
</div>