2012-04-19 12:37:08 +00:00

150 lines
4.2 KiB
PHTML

<?php if (empty($this->AutrePage)):?>
<div id="center">
<?php endif;?>
<?php if (empty($this->AutrePage)):?>
<h1 class="titre">ANNONCES L&Eacute;GALES</h1>
<div class="paragraph">
<table class="identite">
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">
Num&eacute;ro identifiant Siren
</td>
<td width="350" class="StyleInfoData">
<?=$this->SirenTexte($this->siren)?>
</td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Raison Sociale</td>
<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>
</tr>
<?php if ($this->surveillance) {?>
<tr>
<td width="30">&nbsp;</td>
<td colspan="2" width="550" class="StyleInfoData">
<?=$this->action('infos','surveillance', null, array(
'source' => 'annonces',
'siret' => $this->siret
))?>
</td>
</tr>
<?php }?>
</table>
</div>
<?php endif;?>
<style>
.lienType {
display:block;
float:left;
width:120px;
height:45px;
border:1px solid;
padding:5px;
margin:5px;
}
</style>
<div class="paragraph">
<div class="clearfix" style="margin:0 auto; width:600px;">
<a class="lienType" href="<?=$this->url(array('controller'=>'juridique', 'action'=>'annonces', 'type'=>'bodacc', 'siret'=>$this->siret, 'id'=>$this->id))?>">Annonces Légales</a>
<a class="lienType" href="<?=$this->url(array('controller'=>'juridique', 'action'=>'annonces', 'type'=>'balo', 'siret'=>$this->siret, 'id'=>$this->id))?>">Bulletin des Annonces Légales Obligatoires</a>
<a class="lienType" href="<?=$this->url(array('controller'=>'juridique', 'action'=>'annonces', 'type'=>'bomp', 'siret'=>$this->siret, 'id'=>$this->id))?>">Bulletin officiel des annonces des marchés publics</a>
<a class="lienType" href="<?=$this->url(array('controller'=>'juridique', 'action'=>'annonces', 'type'=>'asso', 'siret'=>$this->siret, 'id'=>$this->id))?>">Journal Officiel des Associations</a>
</div>
</div>
<?php if ($this->type=='legales'){ ?>
<h2>EV&Eacute;NEMENTS L&Eacute;GAUX</h2>
<div class="paragraph">
<?php if(count($this->annoncesBodacc)==0){ ?>
Néant
<?php } else {?>
<table>
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBodacc)?>
</table>
<?php }?>
</div>
<?php }?>
<?php if ($this->type=='balo'){ ?>
<h2>BALO</h2>
<div class="paragraph">
<?php if(count($this->annoncesBalo)==0){ ?>
Néant
<?php } else {?>
<table>
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBalo)?>
</table>
<?php }?>
</div>
<?php }?>
<?php if ($this->type=='boamp'){ ?>
<div class="paragraph" style="margin:0 0 0 40px;">
<form name="filtreBoamp" method="post" action="<?=$this->url(array('controller'=>'juridique',
'action'=>'annonces','type'=>'bomp','siret'=>$this->siret,'id'=>$this->id),null,true)?>">
<label>Type d'annonce</label>
<select name="filtre">
<option value="A"<?=($this->filtre=='A')?' selected':'';?>>Avis d'attribution</option>
<option value="M"<?=($this->filtre=='M')?' selected':'';?>>Avis de marchés</option>
</select>
</form>
<script>
$('select[name=filtre]').on('change',function(){
$(this).parent('form').submit();
});
</script>
</div>
<h2>March&eacute;s publics</h2>
<div class="paragraph">
<?php if(count($this->annoncesBomp)==0){ ?>
Néant
<?php } else {?>
<table>
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesBomp)?>
</table>
<?php }?>
</div>
<?php }?>
<?php if ($this->type=='asso'){ ?>
<h2>Associations</h2>
<div class="paragraph">
<?php if(count($this->annoncesAsso)==0){ ?>
Néant
<?php } else {?>
<table>
<?=$this->partialLoop('juridique/annonces-resume.phtml', $this->annoncesAsso)?>
</table>
<?php }?>
</div>
<?php }?>
<?php if (empty($this->AutrePage)):?>
<?php if ($this->lienPagePrecedente) { ?>
<a href="<?=$this->lienPagePrecedente?>" title="Page précédente...">&lt;&lt;</a>
<?php }?>
<?php if ($this->nbPages>1) { ?>
<span>Page <?=$this->p?>/<?=$this->nbPages?></span>
<?php } ?>
<?php if ($this->lienPageSuivante) {?>
<a href="<?=$this->lienPageSuivante?>" title="Page suivante...">&gt;&gt;</a>
<?php }?>
</div>
<?php endif;?>