154 lines
4.4 KiB
PHP
154 lines
4.4 KiB
PHP
<?
|
|
if (!$_SESSION['connected']) die();
|
|
|
|
require_once 'partenaires/classMTva.php';
|
|
require_once 'partenaires/classMMap.php';
|
|
require_once 'common/dates.php';
|
|
require_once 'cache/cache.php';
|
|
require_once 'cache.php';
|
|
|
|
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
|
|
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
|
|
|
|
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1; // Si id=0 alors non communiqué
|
|
if (($siret*1)==0 && $idEntreprise==0) die('Paramètres incorrects !');
|
|
$siren = substr($siret,0,9);
|
|
$mil = false;
|
|
|
|
//Générer un nom de fichier pour le cache et l'export des fichiers
|
|
if (($siret*1)==0 && ($siren*1)<100){
|
|
$fileName = $page2.'-'.$idEntreprise;
|
|
}else{
|
|
$fileName = $page2.'-'.$siret;
|
|
}
|
|
cache_filename($fileName);
|
|
|
|
if( cache_exist() && !( preg_match('/saisie/i', $_SESSION['tabInfo']['droits']) || $_SESSION['tabInfo']['mode_edition']==1 ) ){
|
|
$etabs = cache_get('etabs');
|
|
//Affichage d'un message d'erreur
|
|
if($etabs === FALSE) exit;
|
|
$firephp->info('CACHE');
|
|
}else{
|
|
try {
|
|
$O = $client->getListeEtablissements($siren);
|
|
$etabs = $O['result'];
|
|
cache_delete();
|
|
cache_add('etabs', $etabs);
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$_SESSION['tabInfo']);
|
|
die();
|
|
}
|
|
}
|
|
|
|
$raisonSociale = $_SESSION['tabInfo']['entrep']['raisonSociale'];
|
|
|
|
/*
|
|
if (count($etabs)>0)
|
|
{
|
|
?>
|
|
<script type="text/javascript">
|
|
<!--
|
|
$(document).ready(function(){
|
|
$('#carte').html('Chargement de la carte...');
|
|
$('#carte').load('./?page=carte&siret=<?=$siren?>');
|
|
});
|
|
//-->
|
|
</script>
|
|
<?php
|
|
}*/
|
|
?>
|
|
<div id="center">
|
|
<h1 class="titre">LISTE DES ÉTABLISSEMENTS</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>
|
|
</table>
|
|
<h2>Établissements</h2>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
<table>
|
|
<?php
|
|
foreach ($etabs as $i => $etab)
|
|
{
|
|
if ($etab['Siege']==1) $type='siège ';
|
|
else $type='établissement ';
|
|
if ($etab['Actif']==1) $type.='actif';
|
|
else $type.='inactif';
|
|
|
|
$lien='<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$siren.$etab['Nic'].'&idEntreprise='.$idEntreprise.'">';
|
|
?>
|
|
<tr>
|
|
<td class="StyleInfoData" width="30"><b><a title="Voir la fiche d'identité" href="/?page=identite&siret=<?=$siren.$etab['Nic']?>&idEntreprise=<?=$idEntreprise?>"><?=$lien.$etab['Nic']?></a></b></td>
|
|
<td class="StyleInfoData" width="120"><?=$type?></td>
|
|
<td class="StyleInfoData" width="150">
|
|
<?php
|
|
if ($etab['Enseigne']<>'') echo '<b>'.$etab['Enseigne'].'</b><br/>';
|
|
echo $etab['Adresse'] .'<br/>';
|
|
if ($etab['Adresse2']<>'') echo $etab['Adresse2'].'<br/>';
|
|
echo '<b>'.$etab['CP'].' '.$etab['Ville'].'</b>';
|
|
if ($etab['Tel']<>'') echo '<br/><i>Tél : '.$etab['Tel'].'</i> ';
|
|
if ($etab['Fax']<>'') echo '<br/><i>Fax : '.$etab['Fax'].'</i>';
|
|
?>
|
|
</td>
|
|
<td class="StyleInfoData" width="260"><?=$etab['NafEtab'].' : '.$etab['NafEtabLib']?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="2" width="506" class="StyleInfoData" id="carte">
|
|
<?php
|
|
if (count($etabs)==0)
|
|
{
|
|
echo 'Aucun établissement n\'est présente dans notre base';
|
|
}
|
|
elseif (preg_match('/CARTES/i', $_SESSION['tabInfo']['pref']))
|
|
{
|
|
echo '<iframe src="/?page=carte&siret='.$siren.'" width=506 height=505 marginheight="1" marginwidth="1" scrolling="No" frameborder=0></iframe>';
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</div>
|
|
<?php
|
|
|
|
//Exportation des données sous forme de fichier
|
|
function htmldecode($value){
|
|
$value = is_array($value) ? array_map('htmldecode', $value) : html_entity_decode($value, ENT_QUOTES, 'UTF-8');
|
|
return $value;
|
|
}
|
|
$tabForExport = htmldecode($etabs);
|
|
//@TODO a tester
|
|
|
|
if(count($tabForExport)>0){
|
|
require_once 'export.php';
|
|
|
|
$array2csv = new ExportCSV();
|
|
$array2csv->records = $tabForExport;
|
|
$array2csv->writeCSV($fileName);
|
|
|
|
$array2xml = new ExportXML();
|
|
$array2xml->rootName = $page.'s';
|
|
$array2xml->defaultTagName = $page;
|
|
$array2xml->records = $tabForExport;
|
|
$array2xml->writeXML($fileName);
|
|
}
|
|
?>
|