67 lines
1.5 KiB
PHTML
67 lines
1.5 KiB
PHTML
<div id="center">
|
|
|
|
<h1>PIÈCES OFFICIELLES</h1>
|
|
<div class="paragraph">
|
|
<table class="identite">
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">
|
|
Numéro identifiant Siren
|
|
</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<?=$this->SirenTexte($this->siren)?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<h2>Compte annuels</h2>
|
|
<div class="paragraph">
|
|
<table class="greffe">
|
|
<thead>
|
|
<tr><th>Date de clôture</th><th>Type</th><th>Décisions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($this->InfosBilans as $bilan):?>
|
|
<tr>
|
|
<td class="date"><?=$bilan['date']?></td>
|
|
<td class="type"><?=$bilan['type']?>
|
|
<?php
|
|
switch($bilan['mode'])
|
|
{
|
|
case 'fichier':
|
|
case 'T':
|
|
?>
|
|
<span class="fichier">
|
|
<a href="<?=$bilan['href']?>" title="<?=$bilan['title']?>">
|
|
<img alt="PDF" src="/themes/default/images/interfaces/icone_pdf.gif"/>
|
|
</a>
|
|
</span>
|
|
<?php
|
|
break;
|
|
case 'courrier':
|
|
case 'C':
|
|
?>
|
|
<a class="dialogcmd" href="<?=$bilan['href']?>" title="<?=$bilan['title']?>">
|
|
<img alt="Courrier" src="/themes/default/images/interfaces/icone_courrier.png"/>
|
|
</a>
|
|
<?php
|
|
break;
|
|
}
|
|
//Attention mode edition affichage lien factice
|
|
?>
|
|
</td>
|
|
<td class="decision"><?=$bilan['decision']?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|