93 lines
1.8 KiB
PHTML
93 lines
1.8 KiB
PHTML
<div id="center">
|
|
<h1 class="titre">ANNONCES LÉGALES</h1>
|
|
<div class="paragraph">
|
|
<table>
|
|
<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>
|
|
|
|
<?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">
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData">
|
|
<?php
|
|
echo $this->annonce['Desc'].' '.
|
|
$this->annonce['Entree'].' '.
|
|
$this->annonce['EntreeSD'];
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoLib">
|
|
<b>
|
|
<?=$this->annonce['Even']?>
|
|
</b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4"> </td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3">
|
|
<code><?=$this->RemplaceSiren($this->annonce['Texte'])?></code>
|
|
</td>
|
|
</tr>
|
|
<tr><td colspan="4"> </td></tr>
|
|
<tr>
|
|
<td colspan="4" align="center" class="StyleInfoData">
|
|
<?php
|
|
$source = $_SESSION['tabInfo']['entrep']['Source'];
|
|
$sourceId = $_SESSION['tabInfo']['entrep']['SourceId'];
|
|
?>
|
|
<a href="./?page=annonces&siret=<?=$siret?>
|
|
&idEntreprise=<?=$idEntreprise?>
|
|
&source=<?=$source?>
|
|
<?=($siret*1==0) ? '&idan='.$sourceId : '';?>
|
|
">
|
|
Revenir à la liste des annonces
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|