106 lines
2.7 KiB
PHTML
106 lines
2.7 KiB
PHTML
<?php if (empty($this->AutrePage)):?>
|
|
<div id="center">
|
|
<?php endif;?>
|
|
|
|
<?php if (empty($this->AutrePage)):?>
|
|
<h1>DIRIGEANTS OPÉRATIONNELS</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>
|
|
<?php if ($this->surveillance) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<?=$this->action('infos','surveillance', null, array(
|
|
'source' => 'dirigeants',
|
|
'siret' => $this->siret
|
|
))?>
|
|
</td>
|
|
</tr>
|
|
<?php }?>
|
|
</table>
|
|
</div>
|
|
<?php endif;?>
|
|
|
|
<h2>Liste des dirigeants actifs</h2>
|
|
<div class="paragraph">
|
|
|
|
<?php if ( count($this->dirigeants)>0 ) {?>
|
|
<style>
|
|
table.data td { border:1px solid #ccc; padding:5px; }
|
|
</style>
|
|
<table class="data">
|
|
<?php foreach ($this->dirigeants as $dir) {?>
|
|
<tr>
|
|
<td class="StyleInfoData" width="120"><?=$dir->Titre?></td>
|
|
<td class="StyleInfoData" width="200">
|
|
<?php if ($dir->Societe != '') { ?>
|
|
<a href="<?=$this->url(array(
|
|
'controller' => 'recherche',
|
|
'action' => 'liste',
|
|
'type' => 'ent',
|
|
'raisonSociale' => $dir->Societe
|
|
), null, true)?>"
|
|
title="Recherche à partir de la raison sociale">
|
|
<?=$dir->Societe?>
|
|
</a>
|
|
|
|
<?php }?>
|
|
<?php if ($dir->Nom != '') { ?>
|
|
<a href="<?=$this->url(array(
|
|
'controller' => 'recherche',
|
|
'action' => 'liste',
|
|
'type' => 'dir',
|
|
'dirNom' => $dir->Nom,
|
|
'dirPrenom' => $dir->Prenom,
|
|
), null, true)?>" title="Recherche à partir du nom du dirigeant">
|
|
<?=$dir->Nom.' '.$dir->Prenom?>
|
|
</a>
|
|
<?php } ?>
|
|
</td>
|
|
<td class="StyleInfoData" width="230">
|
|
<?php if (trim($dir->NaissDate) != '' && trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
|
né(e) le <?=$dir->NaissDate?> à <?=$dir->NaissVille?>
|
|
<?php if (trim($dir->NaissDepPays) != '') { ?>
|
|
(<?=$dir->NaissDepPays?>)
|
|
<?php }
|
|
} else if (trim($dir->NaissDate) != '') {
|
|
?>
|
|
né(e) le <?=$dir->NaissDate?>
|
|
<?php
|
|
} else if (trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') {
|
|
?>
|
|
né(e) à <?=$dir->NaissVille?> (<?=$dir->NaissDepPays?>)
|
|
<?php } ?>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</table>
|
|
<?php } else { ?>
|
|
<table>
|
|
<tr>
|
|
<td class="StyleInfoData" width="550">
|
|
Aucune donnée n'est présente dans notre base
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<?php if (empty($this->AutrePage)):?>
|
|
<?=$this->render('cgu.phtml', $this->cgu)?>
|
|
</div>
|
|
<?php endif;?> |