2011-09-02 09:43:09 +00:00
|
|
|
<?php if (empty($this->AutrePage)):?>
|
2011-05-02 06:30:32 +00:00
|
|
|
<div id="center">
|
2011-09-02 09:43:09 +00:00
|
|
|
<?php endif;?>
|
|
|
|
|
2011-06-07 15:01:03 +00:00
|
|
|
<?php if (empty($this->AutrePage)):?>
|
2011-05-02 06:30:32 +00:00
|
|
|
<h1 class="titre">ANNONCES LÉGALES</h1>
|
|
|
|
<div class="paragraph">
|
2011-05-10 08:59:28 +00:00
|
|
|
<table class="identite">
|
2011-05-02 06:30:32 +00:00
|
|
|
<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>
|
2011-06-15 14:14:56 +00:00
|
|
|
<td width="350" class="StyleInfoData">
|
|
|
|
<?=$this->raisonSociale?>
|
|
|
|
<?php if($this->hasModeEdition) : ?>
|
|
|
|
<a href="<?=$this->url(array(
|
|
|
|
'controller' => 'saisie',
|
|
|
|
'action' => 'fiche',
|
|
|
|
'siret' => $this->siret,
|
|
|
|
'id' => $this->id,
|
|
|
|
))?>">(Edition)</a>
|
|
|
|
<?php endif ?>
|
|
|
|
</td>
|
2011-05-02 06:30:32 +00:00
|
|
|
</tr>
|
2012-03-01 13:10:25 +00:00
|
|
|
<?php if ($this->surveillance) {?>
|
2011-05-10 08:59:28 +00:00
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
|
|
<?=$this->action('infos','surveillance', null, array(
|
|
|
|
'source' => 'annonces',
|
|
|
|
'siret' => $this->siret
|
|
|
|
))?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-03-01 13:10:25 +00:00
|
|
|
<?php }?>
|
2011-05-02 06:30:32 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
2011-06-07 15:01:03 +00:00
|
|
|
<?php endif;?>
|
2011-05-02 06:30:32 +00:00
|
|
|
|
2011-10-24 15:21:28 +00:00
|
|
|
<?php if (count($this->annoncesBodacc)+count($this->annoncesBalo)+count($this->annoncesBomp)+count($this->annoncesAsso)==0):?>
|
|
|
|
<h2>EVÉNEMENTS LÉGAUX</h2>
|
|
|
|
<div class="paragraph">
|
|
|
|
Néant
|
|
|
|
</div>
|
|
|
|
<?php endif;?>
|
|
|
|
|
2011-05-02 06:30:32 +00:00
|
|
|
<?php if(count($this->annoncesBodacc)>0){ ?>
|
|
|
|
<h2>EVÉNEMENTS LÉGAUX</h2>
|
|
|
|
<div class="paragraph">
|
|
|
|
<table>
|
|
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBodacc)?>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<?php }?>
|
|
|
|
|
|
|
|
<?php if(count($this->annoncesBalo)>0){ ?>
|
|
|
|
<h2>BALO</h2>
|
|
|
|
<div class="paragraph">
|
|
|
|
<table>
|
|
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBalo)?>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<?php }?>
|
|
|
|
|
|
|
|
<?php if(count($this->annoncesBomp)>0){ ?>
|
|
|
|
<h2>Marchés publics</h2>
|
|
|
|
<div class="paragraph">
|
|
|
|
<table>
|
|
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBomp)?>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<?php }?>
|
|
|
|
|
|
|
|
<?php if(count($this->annoncesAsso)>0){ ?>
|
|
|
|
<h2>Associations</h2>
|
|
|
|
<div class="paragraph">
|
|
|
|
<table>
|
|
|
|
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesAsso)?>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<?php }?>
|
|
|
|
|
2011-09-02 09:43:09 +00:00
|
|
|
<?php if (empty($this->AutrePage)):?>
|
|
|
|
</div>
|
|
|
|
<?php endif;?>
|