2011-05-02 09:07:49 +00:00
|
|
|
<div id="center">
|
|
|
|
<h1 class="titre">ANNONCES LÉGALES</h1>
|
|
|
|
<div class="paragraph">
|
2011-05-10 08:59:28 +00:00
|
|
|
<table class="identite">
|
2011-05-02 09:07:49 +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>
|
2012-03-02 13:54:47 +00:00
|
|
|
<?php endif; ?>
|
2011-06-15 14:14:56 +00:00
|
|
|
</td>
|
2011-05-02 09:07:49 +00:00
|
|
|
</tr>
|
2012-03-01 13:10:25 +00:00
|
|
|
<?php if ($this->surveillance) {?>
|
2012-06-08 13:54:19 +00:00
|
|
|
<tr>
|
2011-05-10 08:59:28 +00:00
|
|
|
<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 09:07:49 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
switch ($this->annonce['Type']) {
|
|
|
|
case 'balo':
|
|
|
|
?><h2>BALO</h2><?php
|
|
|
|
break;
|
|
|
|
case 'bodacc':
|
|
|
|
case 'abod':
|
|
|
|
?><h2>ÉVÉNEMENTS LÉGAUX</h2><?php
|
|
|
|
break;
|
|
|
|
case 'asso':
|
|
|
|
?><h2>Associations</h2><?php
|
|
|
|
break;
|
|
|
|
case 'bomp'
|
|
|
|
?><h2>Marchés publics</h2><?php
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="paragraph">
|
2012-03-02 13:54:47 +00:00
|
|
|
<table style="width=100%;">
|
2011-05-02 09:07:49 +00:00
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
2012-03-02 13:54:47 +00:00
|
|
|
<td class="StyleInfoData">
|
2011-06-15 14:14:56 +00:00
|
|
|
<?=$this->annonce['Desc'].' '.$this->annonce['Entree'].' '.$this->annonce['EntreeSD'];?>
|
2011-12-11 11:50:51 +00:00
|
|
|
<div>
|
2011-05-02 09:07:49 +00:00
|
|
|
<?php
|
2011-06-15 14:14:56 +00:00
|
|
|
if ($this->hasModeEdition){
|
|
|
|
$liensEdit = array(
|
|
|
|
'edit' => array(
|
2011-07-01 12:44:12 +00:00
|
|
|
'class' => 'annonceSaisie',
|
2011-06-15 14:14:56 +00:00
|
|
|
'title' => 'Edition annonce',
|
|
|
|
'img' => '<img src="/themes/default/images/interfaces/editer.png"/>',
|
|
|
|
),
|
|
|
|
'delete' => array(
|
2011-07-01 12:44:12 +00:00
|
|
|
'class' => 'annonceSaisie',
|
2011-06-15 14:14:56 +00:00
|
|
|
'title' => 'Suppression annonce',
|
|
|
|
'img' => '<img src="/themes/default/images/interfaces/supprimer.png"/>',
|
|
|
|
),
|
|
|
|
'copy' => array(
|
2011-07-01 12:44:12 +00:00
|
|
|
'class' => 'annonceSaisie',
|
2011-06-15 14:14:56 +00:00
|
|
|
'title' => 'Dupliquer sur autre Siren',
|
|
|
|
'img' => '<img src="/themes/default/images/interfaces/save_copy.png"/>',
|
|
|
|
),
|
2011-12-11 11:50:51 +00:00
|
|
|
'even' => array(
|
|
|
|
'class' => 'annonceSaisie',
|
|
|
|
'title' => "Modifier le type d'événement",
|
|
|
|
'img' => '<img src="/themes/default/images/interfaces/even.png"/>',
|
|
|
|
),
|
2012-06-08 13:54:19 +00:00
|
|
|
|
2011-06-15 14:14:56 +00:00
|
|
|
);
|
2012-06-08 13:54:19 +00:00
|
|
|
|
2011-06-15 14:14:56 +00:00
|
|
|
foreach ( $liensEdit as $lienId => $lienItem ){
|
|
|
|
?>
|
2011-12-11 11:50:51 +00:00
|
|
|
<a class="<?=$lienItem['class']?>" title="<?=$lienItem['title']?>" href="<?=$this->url(array(
|
|
|
|
'controller' => 'saisie',
|
|
|
|
'action' => 'annoncedialog',
|
|
|
|
'siret' => $this->siret,
|
|
|
|
'op' => $lienId,
|
|
|
|
'code' => $this->annonce['Code'],
|
|
|
|
'idAnn' => $this->idAnn,), null, true)?>"><?=$lienItem['img']?></a>
|
2011-06-15 14:14:56 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
}
|
2011-05-02 09:07:49 +00:00
|
|
|
?>
|
2011-12-11 11:50:51 +00:00
|
|
|
</div>
|
2011-05-02 09:07:49 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
2012-03-02 13:54:47 +00:00
|
|
|
<td class="StyleInfoLib">
|
2011-05-02 09:07:49 +00:00
|
|
|
<b>
|
|
|
|
<?=$this->annonce['Even']?>
|
|
|
|
</b>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2012-03-02 13:54:47 +00:00
|
|
|
<td colspan="2"> </td>
|
2011-05-02 09:07:49 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
2012-03-02 13:54:47 +00:00
|
|
|
<td>
|
2012-06-08 13:54:19 +00:00
|
|
|
<code><?=$this->RemplaceSiren($this->annonce['Texte'])?></code>
|
2011-05-02 09:07:49 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2012-03-02 13:54:47 +00:00
|
|
|
<td colspan="2"> </td>
|
2011-05-02 09:07:49 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
2012-03-02 13:54:47 +00:00
|
|
|
<div style="width:100%;text-align:center;">
|
2012-08-27 11:29:03 +00:00
|
|
|
<?php if (intval($this->siret)!=0) {?>
|
2012-03-02 13:54:47 +00:00
|
|
|
<?php
|
|
|
|
$href = $this->url(array(
|
|
|
|
'controller' => 'juridique',
|
|
|
|
'action' => 'annonces',
|
|
|
|
'siret' => $this->siret,
|
|
|
|
'id' => $this->id,
|
|
|
|
'vue' => $this->vue
|
|
|
|
), null, true);
|
|
|
|
?>
|
|
|
|
<a href="<?=$href?>">Revenir à la liste des annonces</a>
|
2012-08-27 11:29:03 +00:00
|
|
|
<?php }?>
|
|
|
|
|
2012-03-02 13:54:47 +00:00
|
|
|
<?php if ( $this->lienBodacc ) { ?>
|
|
|
|
- <span id="bodacc"><a href="<?=$this->lienBodacc?>">
|
|
|
|
<img src="/themes/default/images/interfaces/pdf.png" alt="Bodacc au format PDF">
|
2012-03-05 17:01:07 +00:00
|
|
|
Télécharger le bulletin officiel</a>
|
2012-03-02 13:54:47 +00:00
|
|
|
</span>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
2011-05-02 09:07:49 +00:00
|
|
|
|
|
|
|
</div>
|
2012-06-08 13:54:19 +00:00
|
|
|
|
|
|
|
<?=$this->render('cgu.phtml', $this->cgu)?>
|
2011-05-02 09:07:49 +00:00
|
|
|
</div>
|