maj pour le rapport de synthese
This commit is contained in:
parent
fa770c1944
commit
ef2b7271a9
@ -135,7 +135,7 @@ function block_bilans($wsresult)
|
||||
{
|
||||
$lignes[] = array( 'class'=>'right', 'content'=>dRatio($nb_bilans-$cptBilan,'r63') );
|
||||
}
|
||||
$lignes[] = array( 'class'=>'right', 'content'=>dPercent(0,'r62','r22') );
|
||||
$lignes[] = array( 'class'=>'right', 'content'=>dPercent(0,'r63','r22') );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
$lignes = array();
|
||||
|
@ -121,7 +121,7 @@ function info_logo()
|
||||
else $strSize='';
|
||||
|
||||
$val = '<img src="'.$urlImg.'" '.$strSize.'/>';
|
||||
$return = array( 'lib'=>$lib, 'val',=>$val);
|
||||
$return = array( 'lib'=>$lib, 'val'=>$val);
|
||||
}
|
||||
}
|
||||
return $return;
|
||||
|
835
includes/scoresws/identite2.php
Normal file
835
includes/scoresws/identite2.php
Normal file
@ -0,0 +1,835 @@
|
||||
<?php
|
||||
|
||||
function block_identite($wsresult)
|
||||
{
|
||||
global $firephp, $ratiosEntrep, $siren;
|
||||
|
||||
$page = array();
|
||||
$page['titre'] = 'IDENTITÉ DE l\'ENTREPRISE';
|
||||
$page['blocks'] = array();
|
||||
|
||||
$i=0;
|
||||
$page['blocks'][$i]['table'] = array();
|
||||
$lignes = array();
|
||||
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['titre'] = 'Raison sociale & Coordonnées';
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['table'] = array();
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro identifiant Siret' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>substr($wsresult['Siret'],0,3).' '.substr($wsresult['Siret'],3,3).' '.substr($wsresult['Siret'],6,3).' <i>'.substr($wsresult['Siret'],9,5).'</i>' );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro identifiant Siret du siège' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>substr($wsresult['SiretSiege'],0,3).' '.substr($wsresult['SiretSiege'],3,3).' '.substr($wsresult['SiretSiege'],6,3).' <i>'.substr($wsresult['SiretSiege'],9,5).'</i>' );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro de TVA Intracom.' );
|
||||
if($wsresult['Dept']*1==97)
|
||||
{
|
||||
$content = '<a href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=CELEX:31991L0680:FR:HTML" target="_blank">Non attribué dans les D.O.M.</a>';
|
||||
}
|
||||
else
|
||||
{
|
||||
$content = substr($wsresult['TvaNumero'],0,2).' '.substr($wsresult['TvaNumero'],2,2).' '.substr($wsresult['TvaNumero'],-9);
|
||||
if (!$wsresult['TvaAttribue'])
|
||||
$val.= ' <img src="./img/exclamation.png" title="Non validé. Obligatoire sur factures, déclarations d\'échange de biens et de TVA !">';
|
||||
}
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
if( $wsresult['Isin']!='' )
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Code ISIN' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>'<a href="./?page=bourse&siret='.$wsresult['Siret'].'" title="Voir les informations boursiéres">'.$wsresult['Isin'].'</a>' );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
if( $wsresult['Isin']!='' && $wsresult['Bourse']['capitalisation']!= 0 )
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Capitalisation' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>number_format($wsresult['Bourse']['capitalisation'],0,'', ' ').' € au '.WDate::dateT('Y-m-d','d/m/Y',$wsresult['Bourse']['derCoursDate']) );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//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))
|
||||
{
|
||||
$logo = imgLogo($wsresult['Siren'], $wsresult['Isin'], $wsresult['Web']);
|
||||
if($logo)
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Logo' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>'<img src="'.$logo['urlImg'].'" '.$logo['strSize'].'/>';);
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
}
|
||||
|
||||
if( isset($wsresult['NumRC']) && $wsresult['NumRC']!='')
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro R.C' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$wsresult['NumRC'] );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
if (isset($wsresult['AutreId']) && $wsresult['AutreId']!='' && ( !(isset($wsresult['NumRC']) && $wsresult['NumRC']!='') || substr($wsresult['AutreId'],0,1)=='W'))
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
if (substr($wsresult['AutreId'],0,1)=='W')
|
||||
{
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Identifiant Association WALDEC' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$wsresult['AutreId'] );
|
||||
}
|
||||
elseif (preg_match('/(A|B|C|D)/i', $wsresult['AutreId']))
|
||||
{
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro R.C.' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$wsresult['AutreId'].' RCS '.preg_replace('/(^TC |^TI |^TGIcc |^TMX )/i','',$wsresult['TribunalLib']) );
|
||||
}
|
||||
elseif (preg_match('/(P)/i', $wsresult['AutreId']))
|
||||
{
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Numéro R.S.A.C.' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$wsresult['AutreId'].' RSAC '.preg_replace('/(^TC |^TI |^TGIcc |^TMX )/i','',$wsresult['TribunalLib'] );
|
||||
}
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$content = '';
|
||||
if ($wsresult['Siege']==0)
|
||||
{
|
||||
$content = '<br/><a title="Voir la fiche d\'identité du siège de l\'entreprise" href="/?page=identite&siret='.$wsresult['Siren'].'&idEntreprise='.$idEntreprise.'">Accès à la fiche du siège</a>';
|
||||
}
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Etablissement actif'.$content );
|
||||
$content = '';
|
||||
if ($Actif==1)
|
||||
{
|
||||
$content = 'Oui';
|
||||
}
|
||||
else
|
||||
{
|
||||
$content = '<b>NON</b>';
|
||||
$dateCloture = str_replace('-','',$wsresult['DateClotEt']);
|
||||
if ($dateCloture!='')
|
||||
$content.= '<i> (Fin d\'activité en '.WDate::dateT('Ymd', 'm/Y', $dateCloture).')</i>';
|
||||
}
|
||||
if ($wsresult['Siren']*1!=0 && preg_match('/AVISINSEE/i', $_SESSION['tabInfo']['droits']))
|
||||
$content.= ' <a title="Voir l\'avis de situation correspondant de l\'INSEE" target="_blank" href="/?page=avis&siret='.$wsresult['Siret'].'">(Situation au répertoire SIRENE)</a>';
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content);
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Situation Juridique + affichage date de radiation
|
||||
if ( $SituationJuridique=='P' || $SituationJuridique[0]=='R' || $_SESSION['tabInfo']['mode_edition']==1)
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Situation juridique' );
|
||||
|
||||
$dateRadiation = '';
|
||||
if(isset($wsresult['DateRadiation']) && $wsresult['DateRadiation']!='' && $wsresult['DateRadiation']!='0000-00-00'){
|
||||
$dateRadiation = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$wsresult['DateRadiation']);
|
||||
}
|
||||
$content = '';
|
||||
//Procédure collective
|
||||
if ($wsresult['SituationJuridique']=='P')
|
||||
{
|
||||
$content = '<a href="./?page=annonces&siret='.$wsresult['Siret'].'&idEntreprise='.$idEntreprise.'"><font color="red"><b>En procédure collective</b></font></a>';
|
||||
if($dateRadiation!=''){ $content.= '<br/>Radié du RCS le '.$dateRadiation; }
|
||||
}
|
||||
//Radiation
|
||||
if($wsresult['SituationJuridique']=='RR')
|
||||
{
|
||||
$content = 'Radié du RCS ';
|
||||
if($dateRadiation!=''){ $content.=' le '.$dateRadiation; }
|
||||
}
|
||||
elseif($wsresult['SituationJuridique']=='RP')
|
||||
{
|
||||
$content = 'Radiation publiée ';
|
||||
if($dateRadiation!=''){ $content.=' le '.$dateRadiation; }
|
||||
}
|
||||
if ($_SESSION['tabInfo']['mode_edition']==1)
|
||||
{
|
||||
$content.='<a href="./?page=saisie&siret='.$wsresult['Siret'].'&idEntreprise='.$idEntreprise.'">(Edition)</a>';
|
||||
}
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['titre'] = 'Raison sociale & Coordonnées';
|
||||
|
||||
//Nom
|
||||
$title = '';
|
||||
if(isset($wsresult['NomLong']) && $wsresult['NomLong']!='' && $wsresult['NomLong']!=$wsresult['Nom'] )
|
||||
$title = $wsresult['NomLong'];
|
||||
$content = $wsresult['Nom'];
|
||||
if ($wsresult['Nom2']!='') $content.= '<br/>'.$wsresult['Nom2'];
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Raison Sociale' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'title'=>$title, 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Enseigne / Sigle
|
||||
$titre = '';
|
||||
if ($wsresult['Enseigne']!='' && $wsresult['Sigle']!=''){
|
||||
$titre='Enseigne / Sigle';
|
||||
$lib=$wsresult['Enseigne'].' / '.$wsresult['Sigle'];
|
||||
}elseif($wsresult['Enseigne']!='' && $wsresult['Sigle']=='' && $wsresult['SigleLong']!='' ){
|
||||
$titre='Enseigne / Sigle';
|
||||
$lib=$wsresult['Enseigne'].' / '.$wsresult['SigleLong'];
|
||||
}elseif($wsresult['Enseigne']!='' && $wsresult['Sigle']==''){
|
||||
$titre='Enseigne';
|
||||
$lib=$wsresult['Enseigne'];
|
||||
}elseif($wsresult['Enseigne']=='' && $wsresult['Sigle']!=''){
|
||||
$titre='Sigle';
|
||||
$lib=$wsresult['Sigle'];
|
||||
}elseif($wsresult['Enseigne']=='' && $wsresult['Sigle']=='' && $wsresult['SigleLong']!=''){
|
||||
$titre='Sigle';
|
||||
$lib=$wsresult['SigleLong'];
|
||||
}
|
||||
|
||||
$title = '';
|
||||
if( isset($wsresult['SigleLong']) && $wsresult['SigleLong']!='' && $wsresult['SigleLong']!=$wsresult['Sigle'])
|
||||
$title = $wsresult['SigleLong'];
|
||||
|
||||
if ($titre!='')
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>$titre );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'title'=>$title, 'content'=>$lib );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//Forme juridique
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Forme juridique' );
|
||||
$content = '';
|
||||
if(isset($etab['FJ2']) && $etab['FJ2']!='' && isset($etab['FJ2_Lib']) && $etab['FJ2_Lib']!='')
|
||||
{
|
||||
$content = '<img src="./img/exclamation.png" title="Forme jurique au RCS : '.$etab['FJ2_Lib'].' ('.$etab['FJ2'].')';
|
||||
}
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$etab['FJ'].' : '.strWsToHtml($etab['FJ_lib']).$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Date d'immatriculation
|
||||
$dateImmat = '';
|
||||
if(isset($etab['DateImmat']) && $etab['DateImmat']!='' && $etab['DateImmat']!='0000-00-00'){
|
||||
$dateImmat = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$etab['DateImmat']));
|
||||
}
|
||||
if($dateImmat!=''){
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Date d\'immatriculation' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$dateImmat );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//Date de création de l'entreprise
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Création de l\'entreprise' );
|
||||
$dateCreationEn=str_replace('-','',$etab['DateCreaEn']);
|
||||
if (substr($dateCreationEn,-2)*1==0)
|
||||
$content = WDate::dateT('Ymd', 'm/Y', $dateCreationEn);
|
||||
else
|
||||
$content = WDate::dateT('Ymd', 'd/m/Y', $dateCreationEn);
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Date de création de l'établissement
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Création de l\'établissement' );
|
||||
$dateCreationEt=str_replace('-','',$etab['DateCreaEt']);
|
||||
if ($dateCreationEt*1!=0)
|
||||
{
|
||||
if (substr($dateCreationEt,-2)*1==0) $content = WDate::dateT('Ymd', 'm/Y', $dateCreationEt);
|
||||
else $content = WDate::dateT('Ymd', 'd/m/Y', $dateCreationEt);
|
||||
} else $content = 'N/C';
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Adresse
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Adresse' );
|
||||
|
||||
if($etab['AdresseRue'] == ''){ $voie = $etab['Adresse2']; }else{ $voie = $etab['AdresseRue']; }
|
||||
|
||||
$content = '<a href="/?page=recherche&vue=list&formR[type]=ent&formR[numVoie]='.urlencode($etab['AdresseNum']).'&formR[voie]='.urlencode($voie).'&formR[cpVille]='.urlencode($etab['CP']).'" title="Rechercher à partir de cette adresse">';
|
||||
$content.= '<p class="adresse">'.$etab['Adresse'].'</p>';
|
||||
if (preg_match('/CHEZ SOFRADOM/i',$etab['Adresse2']))
|
||||
$etab['Adresse2']='<a title="Voir la fiche d\'identité du domiciliataire de cette entreprise" href="/?page=identite&siret=42495045900018&idEntreprise=6720043">CHEZ SOFRADOM</a>';
|
||||
if ($etab['Adresse2']!='')
|
||||
$content.= '<p class="adresse">'.$etab['Adresse2'].'</p>';
|
||||
|
||||
$cp = $etab['CP']*1;
|
||||
if ($cp!=0)
|
||||
$content.= '<p class="adresse">'.$etab['CP'].' '.strWsToHtml($etab['Ville']).'</p>';
|
||||
if ($etab['Pays']<>'' && strtoupper(substr($etab['Pays'],0,3))<>'FRA')
|
||||
$content.= '<p class="adresse">'.strWsToHtml($etab['Pays']).'</p>';
|
||||
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Zones prioritaires
|
||||
if ($GeoInfos['ZUS']=='OUI' ||
|
||||
$GeoInfos['ZFU']=='OUI' ||
|
||||
$GeoInfos['ZRU']=='OUI' ||
|
||||
$GeoInfos['CUCS']=='OUI' ||
|
||||
$GeoInfos['ZRR']=='OUI' ||
|
||||
$GeoInfos['AFR']=='OUI')
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Zones prioritaires' );
|
||||
|
||||
$content = '';
|
||||
if ($GeoInfos['ZUS']=='OUI') $content.= '<a href="http://sig.ville.gouv.fr/Territoire/'.$GeoInfos['NZUS'].'" target="_blank">ZUS n°'.$GeoInfos['NZUS'].'</a><br/>';
|
||||
if ($GeoInfos['ZFU']=='OUI') $content.= '<a href="http://sig.ville.gouv.fr/Territoire/'.$GeoInfos['NZFU'].'" target="_blank">ZFU n°'.$GeoInfos['NZFU'].'</a><br/>';
|
||||
if ($GeoInfos['ZRU']=='OUI') $content.= '<a href="http://sig.ville.gouv.fr/Territoire/'.$GeoInfos['NZRU'].'" target="_blank">ZRU n°'.$GeoInfos['NZRU'].'</a><br/>';
|
||||
if ($GeoInfos['ZRR']=='OUI') $content.= '<a href="http://www.diact.gouv.fr/IMG/Fichiers/Rural%20/ZRR/carte_zrr_20090409.pdf" target="_blank">ZRR n°'.$GeoInfos['NZRR'].'</a><br/>';
|
||||
if ($GeoInfos['AFR']=='OUI') $content.= '<a href="http://www.diact.gouv.fr/IMG/Fichiers/AFR/com_fr_AFR0907.pdf" target="_blank">AFR n°'.$GeoInfos['NAFR'].'</a><br/>';
|
||||
if ($GeoInfos['CUCS']=='OUI') $content.= '<a href="http://sig.ville.gouv.fr/Territoire/'.$GeoInfos['NCUCS'].'" target="_blank">CUCS n°'.$GeoInfos['NCUCS'];
|
||||
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//Téléphone
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Téléphone' );
|
||||
|
||||
$content = '<div class="txtAdresse">'."\n";
|
||||
$content.= '<p>'."\n";
|
||||
|
||||
if (trim($etab['Tel'])=='') $content.= 'N/C';
|
||||
else $content.= $etab['Tel'];
|
||||
if ($etab['Enseigne']<>'') $libNom = urlencode($etab['Enseigne']);
|
||||
else $libNom = urlencode($etab['Nom']);
|
||||
$adresse = $etab['Adresse'];
|
||||
$i_adr=0;
|
||||
while (substr($adresse,0,1)=='0')
|
||||
{
|
||||
$i_adr++;
|
||||
$adresse=substr($adresse,1,strlen($adresse)-1);
|
||||
if ($i_adr>4) break;
|
||||
}
|
||||
$content.= '<a title="Rechercher le numéro de téléphone dans l\'annuaire"';
|
||||
$content.= 'target="_blank" href="http://local.search.ke.voila.fr/S/searchproxi?act=&nom='.$libNom.'&adr='.urlencode(utf8_decode($adresse)).'&loc='.urlencode(utf8_decode($etab['CP'].' '.$etab['Ville'])).'&x=0&y=0&bhv=searchproxi&profil=enville&guidelocid=&guideregid=&guidedepid=&actid=&ke=&locid=">(Recherche annuaire)</a></p>';
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$content );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
//Fax
|
||||
if ($etab['Fax']*1>0)
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Fax' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>$etab['Fax'] );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//Site web
|
||||
if (substr($etab['Web'],0,7)!='http://') $siteWeb = 'http://'.$etab['Web'];
|
||||
else $siteWeb = $etab['Web'];
|
||||
if ($siteWeb!='')
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Site Internet' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>'<a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a>' );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
//Email
|
||||
if (trim($etab['Mail'])<>'')
|
||||
{
|
||||
$lignes = array();
|
||||
$lignes[] = array( 'width'=>30, 'content'=>' ' );
|
||||
$lignes[] = array( 'width'=>200, 'class'=>'StyleInfoLib', 'content'=>'Courriel' );
|
||||
$lignes[] = array( 'width'=>350, 'class'=>'StyleInfoData', 'content'=>'<a href="mailto:'.$etab['Mail'].'" target="_blank">'.$etab['Mail'].'</a>' );
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['titre'] = 'Activité(s) & Chiffre d\'affaire';
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['table'] = array();
|
||||
$lignes = array();
|
||||
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['titre'] = 'Localisation géographique & Recherche presse';
|
||||
|
||||
$i++;
|
||||
$page['blocks'][$i]['table'] = array();
|
||||
$lignes = array();
|
||||
|
||||
$page['blocks'][$i]['table']['row'][] = array( 'content'=>$lignes );
|
||||
}
|
||||
|
||||
function imgLogo($siren, )
|
||||
{
|
||||
/* 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'; }
|
||||
|
||||
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']);
|
||||
}
|
||||
|
||||
if ($urlImg!='')
|
||||
{
|
||||
$tabTmp=@getimagesize($locImg.$ext);
|
||||
$w=$tabTmp[0];
|
||||
$h=$tabTmp[1];
|
||||
if ($w>350) $strSize=@redimage($locImg.$ext,350,150);
|
||||
else $strSize='';
|
||||
|
||||
return array( 'urlImg'=>$urlImg, 'strSize'=>$strSize);
|
||||
}else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
function info_bodacc($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
|
||||
$lib = '<span id="annoncesDate">Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'</span>';
|
||||
$lib.= '<span id="annoncesImg">';
|
||||
|
||||
$tabSource=explode('-', $BodaccCode);
|
||||
$source=$tabSource[0];
|
||||
$idSource=@$tabSource[1];
|
||||
if ($source[0] == 'B'){
|
||||
$lib.= '<img src="./img/logo_jo.png" title="Source BODACC '.$BodaccNum.' '.substr($source,-1).' '.substr($DateParution,0,4).'"/>';
|
||||
}elseif ($source[0] == 'G' || $source[0] == 'T'){
|
||||
$lib.= '<img src="./img/logo_greffe.png" title="Source Collecte Greffe"/>';
|
||||
}elseif ($source[0] == 'P'){
|
||||
$lib.= '<img src="./img/logo_inpi.png" title="Source Collecte RNCS"/>';
|
||||
}else{
|
||||
$lib.= '<img src="./img/logo_jal.png" title="Source Collecte JAL';
|
||||
if ($idSource>0) $html.= ' '.$idSource;
|
||||
$lib.= '"/>';
|
||||
}
|
||||
$lib.= '</span>';
|
||||
|
||||
$val .= '<a href="/?page=annonces&siret='.$Siret.'&idan='.$id.'&vue=bodacc">';
|
||||
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.= '<br/>';
|
||||
}
|
||||
$val.='</a>';
|
||||
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_balo($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
|
||||
$lib = '<span id="annoncesDate">Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'</span>';
|
||||
$lib.= '<span id="annoncesImg">';
|
||||
$lib.= '<img src="./img/logo_jo.png" title="Source BALO n°'.$ann['BodaccNum'].'"/>';
|
||||
$lib.= '</span>';
|
||||
|
||||
$val = '<a href="/?page=annonces&siret='.$Siret.'&idan='.$id.'&vue=balo">';
|
||||
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.= '<br/>';
|
||||
}
|
||||
$val.='</a>';
|
||||
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_asso($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
|
||||
$lib = '<span id="annoncesDate">Le '.WDate::dateT('Y-m-d','d/m/Y',$DateParution).'</span>';
|
||||
$lib.= '<span id="annoncesImg">';
|
||||
$lib.= '<img src="./img/logo_jo.png" title="Source JO ASSOCIATION n°'.$BodaccNum.'"/>';
|
||||
$lib.= '</span>';
|
||||
|
||||
|
||||
$val.= '<a href="/?page=annonces&siret='.$Siret.'&idan='.$id.'&vue=asso">';
|
||||
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.= '<br/>';
|
||||
}
|
||||
$val.= '</a>';
|
||||
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_telephone($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
|
||||
$lib = 'Téléphone';
|
||||
|
||||
|
||||
$val = '<div class="txtAdresse">';
|
||||
$val.= '<p>';
|
||||
|
||||
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.= '<a title="Rechercher le numéro de téléphone dans l\'annuaire" target="_blank" href="http://local.search.ke.voila.fr/S/searchproxi?act=&nom='.$libNom.'&adr='.urlencode(utf8_decode($adresse)).'&loc='.urlencode(utf8_decode($CP.' '.$Ville)).'&x=0&y=0&bhv=searchproxi&profil=enville&guidelocid=&guideregid=&guidedepid=&actid=&ke=&locid=">(Recherche annuaire)</a></p>';
|
||||
|
||||
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 = '<a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a>';
|
||||
$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 = '<a href="mailto:'.$Mail.'" target="_blank">'.$Mail.'</a>';
|
||||
$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 = '<b>Entr. : </b>'.$Naf4Ent.' - '.strWsToHtml($Naf4EntLib).'<br/><b>Étab. :</b> '.$Naf4Etab.' - '. strWsToHtml($Naf4EtabLib);
|
||||
$return = array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
function info_natureactivite($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$return = false;
|
||||
if ($NatureActivite==1 && $Actif==1)
|
||||
{
|
||||
$lib = 'Nature de l\'activité';
|
||||
$val = 'Saisonnière';
|
||||
$return = array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
function info_originefond($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$return = false;
|
||||
if ( ($OrigineCreation*1>0 && $OrigineCreation*1<9) || $OrigineCreation=='A' || $OrigineCreation=='B' || $OrigineCreation=='C' || $OrigineCreation=='D' || $OrigineCreation=='E' )
|
||||
{
|
||||
$tabCreation=array( 'a1'=>'Création',
|
||||
'a3'=>'Achat',
|
||||
'a4'=>'Apport',
|
||||
'a6'=>'Prise en location gérance',
|
||||
'a7'=>'Partage',
|
||||
'a8'=>'Reprise',
|
||||
'aA'=>'Reprise globale de l\'exploitation agricole',
|
||||
'aB'=>'Poursuite de l\'exploitation agricole par le conjoint',
|
||||
'aC'=>'Transfert de propriété de l\'exploitation agricole',
|
||||
'aD'=>'Apport d\'exploitation(s) agricole(s) individuelle(s)',
|
||||
'aE'=>'Reprise d\'exploitation agricole individuelle',
|
||||
);
|
||||
$lib ='Origine du fonds';
|
||||
$val = $tabCreation['a'.$OrigineCreation];
|
||||
$return = array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
//TODO : A simplifier
|
||||
function info_nbetabactif($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$return = false;
|
||||
if ($NbEtab!='N/C')
|
||||
{
|
||||
$lib = 'Nombre d\'établissements actifs';
|
||||
$val = '<a title="Voir la liste des établissements" href="/?page=etablissements&siret='.$Siret.'&idEntreprise='.$idEntreprise.'">'.number_format($NbEtab*1,null,null,' ').'</a>';
|
||||
if ($NbEtab*1>1)
|
||||
{
|
||||
$val.= ' <a title="Voir la liste des établissements" href="/?page=etablissements&siret='.$Siret.'&idEntreprise='.$idEntreprise.'">(Liste)</a>';
|
||||
}
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
function info_capital($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$return = false;
|
||||
if (isset($Capital) && $Capital*1>0)
|
||||
{
|
||||
$title = '';
|
||||
if(isset($Bilan['Capital'])) $title.='Capital de '.moneyKM($Bilan['Capital']).deviseText($Bilan['Devise']);
|
||||
if(isset($Bilan['Cloture'])) $title.=' au '.WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$Bilan['Cloture']));
|
||||
|
||||
$lib = 'Capital';
|
||||
if (isset($CapitalType) && $CapitalType=='V'){ $lib.= 'variable'; }
|
||||
|
||||
$val = '<span title="'.$title.'">'.number_format($Capital,0,',',' ').' ';
|
||||
if ($CapitalDev=='EUR') { $val.= '€'; }
|
||||
else {
|
||||
$val.= $CapitalDev.' ('.strWsToHtml($CapitalLib).')';
|
||||
}
|
||||
$val.= '</span>';
|
||||
$return = array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
function info_chiffreaffaire($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$title = '';
|
||||
if(isset($Bilan['CA'])) $title.='Chiffre d\'affaire de '.moneyKM($Bilan['CA']).deviseText($Bilan['Devise']);
|
||||
if(isset($Bilan['Resultat'])) $title.=' et Résultat de '.moneyKM($Bilan['Resultat']).deviseText($Bilan['Devise']);
|
||||
if(isset($Bilan['Cloture'])) $title.=' au '.WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$Bilan['Cloture']));
|
||||
|
||||
$lib = 'Chiffre d\'affaire';
|
||||
|
||||
$val = '<span title="'.$title.'">';
|
||||
if(isset($Bilan['CA']) && (!isset($TrancheCALib) || $TrancheCALib=='N/C'))
|
||||
{
|
||||
$val.= moneyKM($Bilan['CA']).deviseText($Bilan['Devise']).' au '.WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$Bilan['Cloture']));
|
||||
}elseif(isset($TrancheCALib) && $TrancheCALib!='N/C'){
|
||||
$val.= strWsToHtml($TrancheCALib);
|
||||
}else{
|
||||
$val.= 'N/C';
|
||||
}
|
||||
$val.= '</span>';
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_dirigeants($info)
|
||||
{
|
||||
global $firephp;
|
||||
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
if(isset($dir1DateNaiss) && $dir1DateNaiss!='' && $dir1DateNaiss!='0000-00-00'){
|
||||
$dir1DateNaiss = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$dir1DateNaiss));
|
||||
}
|
||||
if(isset($dir1LieuNaiss) && $dir1LieuNaiss!=''){
|
||||
$dir1LieuNaiss = $dir1LieuNaiss;
|
||||
}
|
||||
if(isset($dir2DateNaiss) && $dir2DateNaiss!='' && $dir2DateNaiss!='0000-00-00'){
|
||||
$dir2DateNaiss = WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$dir2DateNaiss));
|
||||
}
|
||||
if(isset($dir2LieuNaiss) && $dir2LieuNaiss!=''){
|
||||
$dir2LieuNaiss = $dir2LieuNaiss;
|
||||
}
|
||||
$dir1NaissText = '';
|
||||
if($dir1DateNaiss!='') $dir1NaissText.= 'né(e) le '.$dir1DateNaiss;
|
||||
if($dir1LieuNaiss!='' && $dir1NaissText!='') $dir1NaissText.= ' à '.$dir1LieuNaiss;
|
||||
elseif($dir1LieuNaiss!='' && $dir1NaissText=='') $dir1NaissText.= 'né(e) à '.$dir1LieuNaiss;
|
||||
$dir2NaissText = '';
|
||||
if($dir2DateNaiss!='') $dir2NaissText.= 'né(e) le '.$dir2DateNaiss;
|
||||
if($dir2LieuNaiss!='' && $dir2NaissText!='') $dir2NaissText.= ' à '.$dir2LieuNaiss;
|
||||
elseif($dir2LieuNaiss!='' && $dir2NaissText=='') $dir2NaissText.= 'né(e) à '.$dir2LieuNaiss;
|
||||
|
||||
$lib = 'Principaux Dirigeants';
|
||||
|
||||
$val = '<div class="txtAdresse">';
|
||||
$val.= '<p><u><b>'.strWsToHtml(ucfirst($dir1Titre)).'</b></u>';
|
||||
$val.= '<br/>'.strWsToHtml($dir1NomPrenom);
|
||||
if($dir1NaissText!=''){$val .= ', '.$dir1NaissText; }
|
||||
$val .= '</p></div>';
|
||||
if ($dir2Titre<>'')
|
||||
{
|
||||
$val.= '<br/>';
|
||||
$val.= '<div class="txtAdresse">';
|
||||
$val.= '<p><u><b>'.strWsToHtml(ucfirst($dir2Titre)).'</b>:</u>';
|
||||
$val.= '<br/>'.strWsToHtml($dir2NomPrenom);
|
||||
if($dir2NaissText!=''){$val.=', '.$dir2NaissText; }
|
||||
$val.= '</p></div>';
|
||||
}
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_effectif($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$title = '';
|
||||
if(isset($Bilan['Effectif'])) $title.=$Bilan['Effectif'].' salarié(s)';
|
||||
if(isset($Bilan['Cloture'])) $title.=' au '.WDate::dateT('Ymd', 'd/m/Y', str_replace('-','',$Bilan['Cloture']));
|
||||
$lib = 'Effectif de l\'entreprise';
|
||||
|
||||
$val = '<span title="'.$title.'">';
|
||||
if( (!isset($Effectif) || $Effectif=='N/C' || $Effectif==0) && isset($Bilan['Effectif']))
|
||||
{
|
||||
$val.= $title;
|
||||
}elseif(isset($Effectif) && $Effectif!='N/C' && $Effectif!=0 ){
|
||||
$val.= number_format($Effectif*1,null,null,' ').' salarié(s)';
|
||||
}else{
|
||||
$val.= 'N/C';
|
||||
}
|
||||
return array('intitule'=>$lib, 'valeur'=>$val);
|
||||
}
|
||||
|
||||
function info_infogeo(){}
|
||||
function info_news(){}
|
||||
|
||||
function info_datecloture($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
if(isset($dateCloture)) {
|
||||
return substr($dateCloture,6,2).'/'.substr($dateCloture,4,2).'/'.substr($dateCloture,0,4).'<br/>'.$duree.' mois';
|
||||
}else{ return '-'; }
|
||||
}
|
||||
|
||||
function info_ratiosmillesime($info)
|
||||
{
|
||||
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
|
||||
$html = '';
|
||||
$html .= '<form name="selectBilan" method="post" action="index.php?'.$_SERVER['QUERY_STRING'].'">'."\n";
|
||||
$html .= '<select name="bilan">'."\n";
|
||||
|
||||
$countBilans = 0;
|
||||
if(count($bilansInfos)>0)
|
||||
{
|
||||
foreach($bilansInfos as $bilanItem)
|
||||
{
|
||||
if(isset($bilanItem['dateCloture']))
|
||||
{
|
||||
$select = '';
|
||||
if($bilan==$countBilans){ $select = 'selected="selected"'; }
|
||||
$html.= '<option value="'.$countBilans.'" '.$select.'>'.substr($bilanItem['dateCloture'],6,2).'/'.substr($bilanItem['dateCloture'],4,2).'/'.substr($bilanItem['dateCloture'],0,4).'</option>'."\n";
|
||||
}
|
||||
$countBilans++;
|
||||
}
|
||||
}else{ $html.= '-'; }
|
||||
|
||||
$html .= '</select>';
|
||||
$html .= ' <a href="javascript:document.selectBilan.submit();">Ok</a>';
|
||||
$html .= '</form>';
|
||||
return $html;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user