extranet/www/pages/evenements.php
2009-03-06 17:12:26 +00:00

134 lines
4.8 KiB
PHP

<?
if (!$_SESSION['connected']) die();
include_once(INCLUDE_PATH.'/partenaires/classMTva.php');
include_once(INCLUDE_PATH.'/partenaires/classMMap.php');
//include_once(INCLUDE_PATH.'partenaires/classMCoface.php');
include_once(FWK_PATH.'/common/dates.php');
require_once(realpath(dirname(__FILE__).'/../../includes/').'/cache.php');
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
$id=trim(preg_replace('/[^0-9]/', '', $_REQUEST['id']))*1; // Si id=0 alors non communiqué
if (($siret*1)==0 && $id==0) die('Paramètres incorrects !');
$siren=substr($siret,0,9);
$mil=false;
//Forcer la création de la page dans le cache lorsque l'utilisateur a le mode saisie
if(preg_match('/saisie/i', $_SESSION['tabInfo']['droits'])) $forceCache = TRUE;
else $forceCache = FALSE;
//Générer un nom de fichier pour le cache et l'export des fichiers
if ($siren==0){
$fileName = $page2.'-'.$idEntreprise;
}else{
$fileName = $page2.'-'.$siren;
}
//Mise en Cache
$cache = new Cache();
if ( $cache->startCapture($fileName.'.html',$forceCache) == FALSE){
print $cache->displayCache();
}else{
/** Utilisation du WS **/
$client = new SoapClient(null, array( 'trace' => 1,
'soap_version' => SOAP_1_1,
'location' => WEBSERVICE_URL,
'uri' => WEBSERVICE_URI,
'login' => $_SESSION['tabInfo']['login'],
'password' => $_SESSION['tabInfo']['password']));
try {
$O = $client->getListeEvenements($siren);
$evens=$O['result'];
} catch (SoapFault $fault) {
include_once(realpath(dirname(__FILE__).'/../../').'/includes/soaperror.php');
processSoapFault($client,$fault,$tabInfo);
die();
}
$raisonSociale=$tabInfo['entrep']['raisonSociale'];
?>
<table width="580" border="0" align="left" bgcolor="#FFFFFF">
<tr>
<td colspan="3" align="center"><img src="./img/rub_evenements.png" width="577" height="36" /></td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Num&eacute;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">&nbsp;</td>
<td width="200" class="StyleInfoLib">Raison Sociale</td>
<td width="350" class="StyleInfoData"><?=$raisonSociale?></td>
</tr>
<tr>
<td colspan="3">&nbsp;</td>
</tr>
<tr>
<td colspan="3"><img src="./img/srub_even_insee.png" width="576" height="27" /></td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td colspan="2" width="550" class="StyleInfoData"><table><?foreach ($evens as $i=>$even) {
if ($even['Siege']==1) $type='siège';
else $type='établissement';
/*
if ($etab['Actif']==1) $type.='actif';
else $type.='inactif';
'EvenCode' => $even['codeEven'],
'' => prepareString($even['libEven']),
'EvenLibDet'=> prepareString($even['libEvenDet']),
'' => $even['dateEven'],
'DateSD'
*/
$lien='<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$siren.$even['Nic'].'">';
$lien2='<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$even['SiretAss'].'">';
?><tr>
<td class="StyleInfoLib" width="60"><?=WDate::dateT('Ymd','d/m/Y',$even['DateInfo'])?></td>
<!-- <td class="StyleInfoData" width="70" align="center"><?=$type?></td>
<td class="StyleInfoData" width="120">-->
<td class="StyleInfoData" width="480"><b><?=$even['EvenLib']?></b>&nbsp;<i> - NIC <?=$lien.$even['Nic']?></a> le <?=WDate::dateT('Ymd','d/m/Y',$even['EvenDate'])?></i><?
if (trim($even['EvenLibDet'])<>'') echo '<br/>'.str_replace(', ','<br/>', $even['EvenLibDet']);
if ($even['SiretAss']*1<>0) echo '<br/>Siret associé : '.$lien2.substr($even['SiretAss'],0,9).' '.substr($even['SiretAss'],9,5).'</a>';
?></td>
</tr><?
}
if (count($evens)==0)
echo '<tr><td class="StyleInfoData" width="580">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Aucun &eacute;v&egrave;nement n\'est pr&eacute;sente dans notre base</td></tr>';
// echo '<tr><td><pre>'.print_r($etabs).'</pre></td></tr>';
?></table></td>
</tr>
</td>
</tr>
<tr>
</table>
<?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($evens);
$firephp->log($tabForExport, 'tabForExport');
if(count($tabForExport)>0){
require_once(realpath(dirname(__FILE__).'/../../includes/').'/export.php');
$array2csv = new ExportCSV();
$array2csv->records = $tabForExport;
$array2csv->writeCSV($fileName);
$array2xml = new ExportXML();
$array2xml->records = $tabForExport;
$array2xml->writeXML($fileName);
}
}//Fin test mise en cache
$cache->stopCapture(); //On arrete la capture pour le cache
?>