114 lines
3.4 KiB
PHP
114 lines
3.4 KiB
PHP
<?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 'scoresws/scoresws.php';
|
|
?>
|
|
<div id="center">
|
|
<h1 class="titre">LISTE DES ÉVÉNEMENTS</h1>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<?php echo 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>
|
|
<?php /*?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="2">
|
|
<?php
|
|
isset($_REQUEST['vue']) ? $vue = $_REQUEST['vue'] : $vue = '';
|
|
$nic = substr($siret,9,5);
|
|
if (empty($nic) || $siret == $_SESSION['tabInfo']['entrep']['SiretSiege']){
|
|
$siret = $_SESSION['tabInfo']['entrep']['SiretSiege'];
|
|
$nic = substr($siret,9,5);
|
|
}
|
|
$href = './?page=evenements&siret='.$siret.'&idEntreprise='.$idEntreprise;
|
|
if (!empty($vue) && $vue=='entreprise') {
|
|
$nic = 0;
|
|
?>
|
|
<a href="<?php echo $href?>">Afficher les modifications INSEE sur l'établissement.</a>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<a href="<?php echo $href.'&vue=entreprise'?>">Afficher les modifications INSEE sur toute l'entreprise.</a>
|
|
<?php
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php */?>
|
|
</table>
|
|
|
|
<h2>Événements INSEE</h2>
|
|
<table>
|
|
<?php
|
|
$nic = 0;
|
|
$evens = scoresws_evenements($siren, $nic, $idEntreprise, $vue);
|
|
if (is_array($evens) && count($evens)>0) {
|
|
foreach ($evens as $i=>$even)
|
|
{
|
|
if ($even['Siege']==1) $type='siège';
|
|
else $type='établissement';
|
|
$lien = '<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$siren.$even['Nic'].'&idEntreprise='.$idEntreprise.'">';
|
|
$lien2 = '<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$even['SiretAss'].'&idEntreprise='.$idEntreprise.'">';
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td class="StyleInfoLib" width="60" valign="top">
|
|
<?=WDate::dateT('Ymd','d/m/Y',$even['DateInfo'])?>
|
|
</td>
|
|
<td class="StyleInfoData" width="480">
|
|
<b><?=$even['EvenLib']?></b> <i> - NIC <?=$lien.$even['Nic'].'</a>'?>
|
|
le <?=WDate::dateT('Ymd','d/m/Y',$even['EvenDate'])?></i>
|
|
<?php
|
|
if (trim($even['EvenLibDet'])<>'') echo '<br/>'.str_replace(', ','<br/>', $even['EvenLibDet']);
|
|
if ($even['SiretAss']*1<>0 && $even['TypeSiretAss']<>'') echo '<br/>Siret du '.$even['TypeSiretAss'].' : '.$lien2.substr($even['SiretAss'],0,9).' '.substr($even['SiretAss'],9,5).'</a>';
|
|
elseif ($even['SiretAss']*1<>0 && $even['TypeSiretAss']=='') echo '<br/>Siret associé : '.$lien2.substr($even['SiretAss'],0,9).' '.substr($even['SiretAss'],9,5).'</a>';
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
} elseif (is_array($evens) && count($evens)==0) {
|
|
?>
|
|
<tr>
|
|
<td class="StyleInfoData" width="580">
|
|
|
|
Aucun évènement n\'est présent dans notre base
|
|
</td>
|
|
</tr>';
|
|
<?php
|
|
} elseif ($evens===false) {
|
|
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
require_once 'export/genexport.php';
|
|
?>
|
|
<table>
|
|
<td width="30"> </td>
|
|
<td colspan="3" width="550" class="StyleInfoData">
|
|
<?php
|
|
require_once 'surveillance/surveillance.php';
|
|
echo getSurveillance('insee', $siret);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<p class="confidentiel blockh2">
|
|
<?php
|
|
require_once 'cgu/cgu.php';
|
|
echo afficheCgu();
|
|
?>
|
|
</p>
|
|
</div>
|