159 lines
4.0 KiB
PHP
159 lines
4.0 KiB
PHP
<?
|
|
if (!page_checkParams()) die('Paramètres incorrects !');
|
|
|
|
require_once 'partenaires/classMTva.php';
|
|
require_once 'partenaires/classMMap.php';
|
|
require_once 'common/dates.php';
|
|
require_once 'cache/cache.php';
|
|
require_once 'scoresws/scoresws.php';
|
|
|
|
$dirs = scoresws_dirigeants($siret, $siren, $idEntreprise);
|
|
?>
|
|
<div id="center">
|
|
<h1>DIRIGEANTS</h1>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
|
<td width="350" class="StyleInfoData"><?=substr($siren,0,3).' '.substr($siren,3,3).' '.substr($siren,6,3)?></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
<td width="350" class="StyleInfoData"><?=$raisonSociale?></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<?php
|
|
require_once 'surveillance/surveillance.php';
|
|
echo getSurveillance('dirigeants', $siret);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
if (isset($_REQUEST['vue']) && $_REQUEST['vue']=='histo')
|
|
{
|
|
?>
|
|
<h2>Historique des dirigeants</h2>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<table>
|
|
<?php
|
|
if (count($dirs)>0)
|
|
{
|
|
foreach ($dirs as $i=>$dir)
|
|
{
|
|
$nom=$dir['Societe'].' '.$dir['Nom'].' '.$dir['Prenom'];
|
|
?>
|
|
<tr><td class="StyleInfoData" width="100"><?=$dir['Titre']?></td>
|
|
<td class="StyleInfoData" width="200"><?=$nom?></td>
|
|
<td class="StyleInfoData" width="230">
|
|
<?php
|
|
if ($dir['DateFct']<>'') {
|
|
//if ($dir['Ancien']) echo 'Fonction abandonée le ';
|
|
//else echo 'Prise de fonction le ';
|
|
echo 'Modification le ';
|
|
echo WDate::dateT('Y-m-d', 'd/m/Y',$dir['DateFct']);
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
}else
|
|
{
|
|
echo '<tr><td class="StyleInfoData" width="550"> Aucune donnée n\'est présente dans notre base</td></tr>';
|
|
}
|
|
?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<h2>Liste des dirigeants actifs</h2>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<table>
|
|
<?php
|
|
if (count($dirs)>0)
|
|
{
|
|
foreach ($dirs as $i=>$dir)
|
|
{
|
|
$societe = str_replace('&#160;',' ', $dir['Societe']);
|
|
$nom = str_replace('&#160;',' ', $dir['Societe'].' '.$dir['Nom'].' '.$dir['Prenom']);
|
|
if(isset($dir['Civilite']) && $dir['Civilite']!=''){$nom = $dir['Civilite'].'. '.$nom;}
|
|
?>
|
|
<tr>
|
|
<td class="StyleInfoData" width="120"><?=$dir['Titre'];?></td>
|
|
<td class="StyleInfoData" width="200">
|
|
<?php
|
|
if($societe != '')
|
|
{
|
|
?>
|
|
<a href="/?page=recherche&vue=list&formR[type]=ent&formR[raisonSociale]=<?=$societe?>" title="Recherche à partir de la raison sociale">
|
|
<?=$societe?>
|
|
</a>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
if($nom != '')
|
|
{
|
|
?>
|
|
<a href="/?page=recherche&vue=list&formR[type]=dir&formR[dirNom]=<?=$dir['Nom']?>&formR[dirPrenom]=<?=$dir['Prenom']?>&formR[dirDateNaissJJ]=<?=substr($dir['NaissDate'],0,2)?>&formR[dirDateNaissMM]=<?=substr($dir['NaissDate'],3,2)?>&formR[dirDateNaissAAAA]=<?=substr($dir['NaissDate'],6,4)?>" title="Recherche à partir du nom du dirigeant">
|
|
<?=$nom?>
|
|
</a>
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
<td class="StyleInfoData" width="230"><?
|
|
if (trim($dir['NaissDate'])<>'' && trim($dir['NaissVille'].' '.$dir['NaissDepPays'])<>'') {
|
|
echo 'né(e) le '.$dir['NaissDate'].' à '.$dir['NaissVille'];
|
|
if (trim($dir['NaissDepPays'])<>'')
|
|
echo ' ('.$dir['NaissDepPays'].')';
|
|
} elseif (trim($dir['NaissDate'])<>'') {
|
|
echo 'né(e) le '.$dir['NaissDate'];
|
|
} elseif (trim($dir['NaissVille'].' '.$dir['NaissDepPays'])<>'') {
|
|
echo 'né(e) à '.$dir['NaissVille'];
|
|
echo ' ('.$dir['NaissDepPays'].')';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?
|
|
}
|
|
}
|
|
else
|
|
{
|
|
echo '<tr><td class="StyleInfoData" width="550"> Aucune donnée n\'est présente dans notre base</td></tr>';
|
|
}
|
|
?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
<p class="confidentiel blockh2">
|
|
<?php
|
|
require_once 'cgu/cgu.php';
|
|
echo afficheCgu();
|
|
?>
|
|
</p>
|
|
|
|
</div>
|
|
<?php
|
|
require_once 'export/genexport.php';
|
|
?>
|