0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Numéro identifiant Siret';
$val = substr($Siret,0,3).' '.substr($Siret,3,3).' '.substr($Siret,6,3).' '.substr($Siret,9,5).'';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_siretsiege($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Numéro identifiant Siret du siège';
$val = substr($SiretSiege,0,3).' '.substr($SiretSiege,3,3).' '.substr($SiretSiege,6,3).' '.substr($SiretSiege,9,5).'';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_tvanumero($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Numéro de TVA Intracom.';
if($Dept*1==97)
{
$val = 'Non attribué dans les D.O.M.';
}
else
{
$val = substr($TvaNumero,0,2).' '.substr($TvaNumero,2,2).' '.substr($TvaNumero,-9);
if (!$TvaAttribue)
$val.= ' ';
}
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_isin($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Code ISIN';
$return = FALSE;
if( $Isin != '' )
{
$val = ''.$Isin.'';
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_capitalisation($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$return = FALSE;
$lib = 'Capitalisation';
if( $Isin!='' && $Bourse['capitalisation']!= 0 )
{
$val = number_format($Bourse['capitalisation'],0,'', ' ').' € au '.WDate::dateT('Y-m-d','d/m/Y',$Bourse['derCoursDate']);
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_logo()
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$return = false;
/* On recherche un logo */
$urlImg='';
$siteWeb='';
$locImg=PATH_LOGOS.$etab['Siren'];
if (file_exists($locImg.'.gif')) { $urlImg='./logos/'.$etab['Siren'].'.gif'; $ext='.gif'; }
elseif (file_exists($locImg.'.png')) { $urlImg='./logos/'.$etab['Siren'].'.png'; $ext='.png'; }
elseif (file_exists($locImg.'.jpg')) { $urlImg='./logos/'.$etab['Siren'].'.jpg'; $ext='.jpg'; }
elseif (file_exists($locImg.'.jpeg')) { $urlImg='./logos/'.$etab['Siren'].'.jpeg'; $ext='.jpeg'; }
print '';
if ($urlImg=='' && $etab['Isin']<>'')
{
$locImg=PATH_LOGOS.$etab['Isin'];
if (file_exists($locImg.'.gif')) { $urlImg='./logos/'.$etab['Isin'].'.gif'; $ext='.gif'; }
elseif (file_exists($locImg.'.png')) { $urlImg='./logos/'.$etab['Isin'].'.png'; $ext='.png'; }
elseif (file_exists($locImg.'.jpg')) { $urlImg='./logos/'.$etab['Isin'].'.jpg'; $ext='.jpg'; }
elseif (file_exists($locImg.'.jpeg')) { $urlImg='./logos/'.$etab['Isin'].'.jpeg'; $ext='.jpeg'; }
}
if (trim($etab['Web'])<>'')
{
if (substr($etab['Web'],0,7)<>'http://') $siteWeb='http://'.$etab['Web'];
else $siteWeb=$etab['Web'];
if ($urlImg=='' && ($_SESSION['tabInfo']['login']=='ylenaour' ||
$_SESSION['tabInfo']['login']=='mpurcarin' ||
$_SESSION['tabInfo']['login']=='mcochet' ||
$_SESSION['tabInfo']['login']=='aegasse' ||
$_SESSION['tabInfo']['login']=='jmartory' ||
$_SESSION['tabInfo']['login']=='mricois') )
$urlImg=getLogo($siteWeb, $etab['Siren']);
}
$lib = 'Logo';
//Ne pas afficher le logo si il n'existe pas OU si le siren est à 0 OU si le siren est inférieur a 100
if(($siren*1!=0 ) || ($siren*1>100))
{
if ($urlImg!='')
{
$tabTmp=@getimagesize($locImg.$ext);
$w=$tabTmp[0];
$h=$tabTmp[1];
if ($w>350) $strSize=@redimage($locImg.$ext,350,150);
else $strSize='';
$val = '';
$return = array( 'lib'=>$lib, 'val'=>$val);
}
}
return $return;
}
function info_numrc($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$return = FALSE;
if( isset($NumRC) && $NumRC!='')
{
$lib = 'Numéro R.C';
$val = $NumRC;
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_autreid($info)
{
global $firephp;
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$return = FALSE;
if (isset($AutreId) && $AutreId!='' && ( !(isset($NumRC) && $NumRC!='') || substr($AutreId,0,1)=='W'))
{
if (substr($AutreId,0,1)=='W')
{
$lib = 'Identifiant Association WALDEC';
$val = $AutreId;
}
elseif (preg_match('/(A|B|C|D)/i', $AutreId))
{
$lib = 'Numéro R.C.';
$val = $AutreId.' RCS '.preg_replace('/(^TC |^TI |^TGIcc |^TMX )/i','',$TribunalLib);
$firephp->log($val, 'val');
}
elseif (preg_match('/(P)/i', $AutreId))
{
$lib = 'Numéro R.S.A.C.';
$val = $AutreId.' RSAC '.preg_replace('/(^TC |^TI |^TGIcc |^TMX )/i','',$TribunalLib);
}
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_actif($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Etablissement actif';
if ($Siege==0)
{
$lib.= ' '.$Adresse.'
Accès à la fiche du siège';
}
if ($Actif==1) $val = 'Oui';
else
{
$val = 'NON';
$dateCloture = str_replace('-','',$DateClotEt);
if ($dateCloture!='')
$val.= ' (Fin d\'activité en '.WDate::dateT('Ymd', 'm/Y', $dateCloture).')';
}
if ($Siren*1!=0 && preg_match('/AVISINSEE/i', $_SESSION['tabInfo']['droits']))
$val.= ' (Situation au répertoire SIRENE)';
$return = array('intitule'=>$lib, 'valeur'=>$val);
return $return;
}
function info_situationjuridique($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Situation juridique';
$dateRadiation = '';
if(isset($DateRadiation) && $DateRadiation!='' && $DateRadiation!='0000-00-00'){
$dateRadiation = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$DateRadiation));
}
$val = '';
//Procédure collective
if ($etab['SituationJuridique']=='P')
{
$val = 'En procédure collective';
if($dateRadiation!=''){ $val.= '
Radié du RCS le '.$dateRadiation; }
}
//Radiation
if($etab['SituationJuridique']=='RR')
{
$val = 'Radié du RCS ';
if($dateRadiation!=''){ $val.=' le '.$dateRadiation; }
}
elseif($etab['SituationJuridique']=='RP')
{
$val = 'Radiation publiée ';
if($dateRadiation!=''){ $val.=' le '.$dateRadiation; }
}
if ($_SESSION['tabInfo']['mode_edition']==1)
{
$val.='(Edition)';
}
if ( $SituationJuridique=='P' || $SituationJuridique[0]=='R' || $_SESSION['tabInfo']['mode_edition']==1)
{
$return = array('intitule'=>$lib, 'valeur'=>$val);
}else{
$return = FALSE;
}
return $return;
}
function info_bodacc($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'';
$lib.= '';
$tabSource=explode('-', $BodaccCode);
$source=$tabSource[0];
$idSource=@$tabSource[1];
if ($source[0] == 'B'){
$lib.= '';
}elseif ($source[0] == 'G' || $source[0] == 'T'){
$lib.= '';
}elseif ($source[0] == 'P'){
$lib.= '';
}else{
$lib.= '';
}
$lib.= '';
$val .= '';
foreach ($evenements as $i=>$even) {
$val.= $even['LibEven'];
$numEven=$even['CodeEven']*1;
if ($numEven>3000 && $numEven<3999) $val.= ' (clôture au '.WDate::dateT('Y-m-d','d/m/Y',$dateEffet).')';
$val.= '
';
}
$val.='';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_balo($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'';
$lib.= '';
$lib.= '';
$lib.= '';
$val = '';
foreach ($evenements as $i=>$even) {
$val.= $even['LibEven'];
$numEven=$even['CodeEven']*1;
if ($numEven>3000 && $numEven<3999) print ' (clôture au '.WDate::dateT('Y-m-d','d/m/Y',$dateEffet).')';
$val.= '
';
}
$val.='';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_asso($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'';
$lib.= '';
$lib.= '';
$lib.= '';
$val.= '';
foreach ($evenements as $i=>$even) {
$val.= $even['LibEven'];
$numEven=$even['CodeEven']*1;
if ($numEven>3000 && $numEven<3999) $val.= ' (clôture au '.WDate::dateT('Y-m-d','d/m/Y',$dateEffet).')';
$val.= '
';
}
$val.= '';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_raisonsociale($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$title = '';
if(isset($NomLong) && $NomLong!='' && $NomLong!=$Nom ) $title = $NomLong;
$lib = 'Raison Sociale';
$val = ''.$Nom;
if ($Nom2!='') $val.= '
'.$Nom2;
$val.= '';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_enseignesigle($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$titre = '';
if ($Enseigne!='' && $Sigle!='')
{
$titre='Enseigne / Sigle';
$val=$etab['Enseigne'].' / '.$etab['Sigle'];
}
elseif($Enseigne!='' && $Sigle=='' && $SigleLong!='' )
{
$titre='Enseigne / Sigle';
$val=$Enseigne.' / '.$SigleLong;
}
elseif($Enseigne!='' && $Sigle=='')
{
$titre='Enseigne';
$val=$Enseigne;
}
elseif($Enseigne=='' && $Sigle!='')
{
$titre='Sigle';
$val=$Sigle;
}
elseif($Enseigne=='' && $Sigle=='' && $SigleLong!='')
{
$titre='Sigle';
$val=$SigleLong;
}
$title = '';
if( isset($SigleLong) && $SigleLong!='' && $SigleLong!=$Sigle)
{
$title = $SigleLong;
}
$return = FALSE;
if ($titre!='')
{
$lib = $titre;
$val = ''.$val.'';
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_formejuridique($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Forme Juridique';
$val = $FJ.' : '.strWsToHtml($FJ_lib);
if(isset($FJ2) && $FJ2!='' && isset($FJ2_Lib) && $FJ2_Lib!='')
{
$val.= '';
}
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_immatriculation($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$dateImmat = '';
if(isset($DateImmat) && $DateImmat!='' && $DateImmat!='0000-00-00')
{
$dateImmat = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$DateImmat));
}
$return = FALSE;
if($dateImmat!='')
{
$lib = 'Date d\'immatriculation';
$val = $dateImmat;
$return = array('intitule'=>$lib, 'valeur'=>$val);
}
return $return;
}
function info_creationentreprise($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Création de l\'entreprise';
$dateCreationEn=str_replace('-','',$DateCreaEn);
if (substr($dateCreationEn,-2)*1==0)
$val = WDate::dateT('Ymd', 'm/Y', $dateCreationEn);
else
$val = WDate::dateT('Ymd', 'd/m/Y', $dateCreationEn);
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_creationetablissement($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Création de l\'établissement';
$dateCreationEt=str_replace('-','',$DateCreaEt);
if ($dateCreationEt*1<>0) {
if (substr($dateCreationEt,-2)*1==0)
$val = WDate::dateT('Ymd', 'm/Y', $dateCreationEt);
else
$val = WDate::dateT('Ymd', 'd/m/Y', $dateCreationEt);
} else $val = 'N/C';
return array('intitule'=>$lib, 'valeur'=>$val);
}
function info_adresse($info)
{
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$lib = 'Adresse';
if($AdresseRue == ''){ $voie = $Adresse2; }else{ $voie = $AdresseRue; }
$val = '';
$val.= '
'.$Adresse2.'
'; $cp=$CP*1; if ($cp<>0) $val.= ''.$CP.' '.strWsToHtml($Ville).'
'; if ($Pays<>'' && strtoupper(substr($Pays,0,3))<>'FRA') $val.= ''.strWsToHtml($Pays).'
'; $val.= ''; return array('intitule'=>$lib, 'valeur'=>$val); } function info_zonesprioritaires($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $return = false; if ($GeoInfos['ZUS']=='OUI' || $GeoInfos['ZFU']=='OUI' || $GeoInfos['ZRU']=='OUI' || $GeoInfos['CUCS']=='OUI' || $GeoInfos['ZRR']=='OUI' || $GeoInfos['AFR']=='OUI') { $lib = 'Zones prioritaires'; $val = ''; if ($GeoInfos['ZUS']=='OUI') $val.= 'ZUS n°'.$GeoInfos['NZUS'].''; if (trim($Tel)=='') $val.= 'N/C'; else $val.= $Tel; if ($Enseigne!='') $libNom=urlencode($Enseigne); else $libNom=urlencode($Nom); $adresse=$Adresse; $i_adr=0; while (substr($adresse,0,1)=='0') { $i_adr++; $adresse=substr($adresse,1,strlen($adresse)-1); if ($i_adr>4) break; } $val.= '(Recherche annuaire)
'; return array('intitule'=>$lib, 'valeur'=>$val); } function info_fax($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $return = false; if ($Fax*1>0) { $lib = 'Fax'; $val = $Fax; $return = array('intitule'=>$lib, 'valeur'=>$val); } return $return; } function info_siteweb($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $return = false; if (trim($Web)!='') { if (substr($Web,0,7)!='http://') $siteWeb='http://'.$Web; else $siteWeb=$Web; } if ($siteWeb!='') { $lib = 'Site Internet'; $val = ''.$siteWeb.''; $return = array('intitule'=>$lib, 'valeur'=>$val); } return $return; } function info_email($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $return = false; if (trim($Mail)!='') { $lib = 'Courriel'; $val = ''.$Mail.''; $return = array('intitule'=>$lib, 'valeur'=>$val); } return $return; } function info_activiteentreprise($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $lib = 'Activité de l\'entreprise'; if ($Activite!='' && !preg_match('/non pr(e|é)cis(e|é)/i',utf8_decode($Activite))) { $texte=preg_replace_callback("/((?:[0-9]{9,9})|(?:[0-9]{3,3} [0-9]{3,3} [0-9]{3,3})|(?:[0-9]{3,3}\.[0-9]{3,3}\.[0-9]{3,3})|(?:[0-9]{3,3}-[0-9]{3,3}-[0-9]{3,3}))/", replace_siren, strWsToHtml($Activite)); $val = $texte.' ('.$NafEnt.' : '. strWsToHtml($NafEntLib).')'; } else { $val = $NafEnt.' : '. strWsToHtml($NafEntLib); } return array('intitule'=>$lib, 'valeur'=>$val); } function info_activiteetablissement($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $lib = 'Activité de l\'établissement'; $val = $NafEtab.' : '. strWsToHtml($NafEtabLib); return array('intitule'=>$lib, 'valeur'=>$val); } function info_naf4($info) { if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } $return = false; if (preg_match('/NAF4/i', $_SESSION['tabInfo']['pref']) && trim($Naf4Ent)!='') { $lib = 'Anciens codes NAF'; $val = 'Entr. : '.$Naf4Ent.' - '.strWsToHtml($Naf4EntLib).''.strWsToHtml(ucfirst($dir1Titre)).'';
$val.= '
'.strWsToHtml($dir1NomPrenom);
if($dir1NaissText!=''){$val .= ', '.$dir1NaissText; }
$val .= '
'.strWsToHtml(ucfirst($dir2Titre)).':';
$val.= '
'.strWsToHtml($dir2NomPrenom);
if($dir2NaissText!=''){$val.=', '.$dir2NaissText; }
$val.= '