2011-05-03 15:31:32 +00:00
|
|
|
<div id="center">
|
2011-05-06 14:34:12 +00:00
|
|
|
<h1>ÉLÉMENTS FINANCIERS - BILANS</h1>
|
2011-05-03 15:31:32 +00:00
|
|
|
<div class="paragraph">
|
2011-05-06 14:34:12 +00:00
|
|
|
<table class="identite">
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td width="200" class="StyleInfoLib">
|
|
|
|
Numéro identifiant Siren
|
|
|
|
</td>
|
|
|
|
<td width="350" class="StyleInfoData">
|
|
|
|
<?php echo $this->SirenTexte($this->siren);?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
|
|
<td width="350" class="StyleInfoData"><?php echo $this->raisonSociale;?></td>
|
|
|
|
</tr>
|
2011-05-12 16:18:20 +00:00
|
|
|
<tr>
|
|
|
|
<form method="POST" action="<?php echo $this->url();?>">
|
|
|
|
<td width="30"> </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)):?>
|
2011-05-06 14:34:12 +00:00
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td class="StyleInfoLib" width="200">Bilan de banque/assurance non gérés</td>
|
|
|
|
<td class="StyleInfoData" width="350"></td>
|
|
|
|
</tr>
|
2011-05-12 16:18:20 +00:00
|
|
|
<?php endif;?>
|
2011-05-06 14:34:12 +00:00
|
|
|
</table>
|
2011-05-03 15:31:32 +00:00
|
|
|
<?php foreach ($this->listeBilan as $bilan):?>
|
2011-05-13 16:33:21 +00:00
|
|
|
<?php $reference = 'reference'.$bilan; ?>
|
2011-05-06 14:34:12 +00:00
|
|
|
<?php if(!empty($this->$bilan)):?>
|
2011-05-03 15:31:32 +00:00
|
|
|
<?php echo $this->partial('finance/bilansPartials/'.$bilan.'.partial.phtml',
|
|
|
|
array(
|
|
|
|
'date' => $this->date,
|
|
|
|
'duree' => $this->duree,
|
|
|
|
'dateFunction' => $this->dateFunction,
|
2011-05-12 16:18:20 +00:00
|
|
|
'siren' => $this->siren,
|
|
|
|
$bilan => $this->$bilan,
|
2011-05-13 16:33:21 +00:00
|
|
|
'typeBilan'=> $this->typeBilan,
|
|
|
|
$reference => $this->$reference,
|
2011-05-03 15:31:32 +00:00
|
|
|
));
|
|
|
|
?><br />
|
2011-05-06 14:34:12 +00:00
|
|
|
<?php else :?>
|
|
|
|
<?php $banqueAssurance = true;?>
|
|
|
|
<?php endif;?>
|
2011-05-03 15:31:32 +00:00
|
|
|
<?php endforeach;?>
|
|
|
|
</div>
|
2011-05-06 14:34:12 +00:00
|
|
|
<?php echo $this->render('cgu.phtml', $this->cgu);?>
|
2011-05-03 15:31:32 +00:00
|
|
|
</div>
|