extranet/www/pages/competences.php

365 lines
14 KiB
PHP
Raw Normal View History

<?php
2009-08-24 14:55:44 +00:00
if (!$_SESSION['connected']){
echo ('Vous devez <20>tre connect<63> afin de pouvoir utiliser cette fonctionnalit<69>');
}
2009-04-01 12:45:45 +00:00
2009-08-24 14:55:44 +00:00
$type = trim(@$_REQUEST['type']);
$siret = trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
$tabInfo = $_SESSION['tabInfo'];
2009-08-24 14:55:44 +00:00
if ($type<>'tri' && //Tribunaux
$type<>'pre' && // Pr<50>fectures
$type<>'jal' && // Journaux d'Annonces L<>gales
$type<>'adm' && // Mandataires
$type<>'hui' && // Huissiers
$type<>'cad' && // Cadastre
$type<>'avo' && // Avocats
$type<>'not' && // Notaires
// CFE
2009-08-24 14:55:44 +00:00
/*
$type<>'cci' && // Chambres de Commerce
$type<>'cma' && // Chambres des m<>tiers
$type<>'cag' && // Chambres d'agriculture
$type<>'cba' && // Chambre nationale de la batellerie artisanale
$type<>'cur' && // URSSAF
$type<>'cdi' && // Centres des imp<6D>ts
2009-08-24 14:55:44 +00:00
*/
$type<>'cfe' && // Centres de Formalit<69>s des Entreprises
$type<>'') {
2009-07-20 16:17:33 +00:00
echo ('Comp<6D>tence territoriale inexistante');
}
else
{
2009-08-24 14:55:44 +00:00
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Param<61>tres incorrects !');
2009-08-24 14:55:44 +00:00
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1; // Si id=0 alors non communiqu<71>
if (($siret*1)==0 && $idEntreprise==0) die('Param<61>tres incorrects !');
$siren=substr($siret,0,9);
2009-08-24 14:55:44 +00:00
if (isset($_REQUEST['id']) && $_REQUEST['id']*1<>0) $idCom=$_REQUEST['id'];
else $idCom=false;
2009-08-24 14:55:44 +00:00
require_once 'cache/cache.php';
require_once 'partenaires/classMTva.php';
require_once 'partenaires/classMMap.php';
require_once 'partenaires/classMCoface.php';
require_once 'common/dates.php';
2009-08-24 14:55:44 +00:00
if (($siret*1)==0 || ($siren*1)<100){ $fileName = $page2.'-'.$idEntreprise;
}else{ $fileName = $page2.'-'.$siret; }
if($type!=''){ $fileName.= '-'.$type; }
cache_filename($fileName);
if( cache_exist() && !( preg_match('/saisie/i', $_SESSION['tabInfo']['droits']) || $_SESSION['tabInfo']['mode_edition']==1 ) ){
$competences = cache_get('competences');
}else{
try {
$O = $client->getListeCompetences($siret, $type, $_SESSION['tabInfo']['entrep']['codeCommune']);
$competences = $O['result'];
$firephp->log($competences, 'Competences');
cache_delete();
cache_add('competences', $competences);
} catch (SoapFault $fault) {
require_once 'soaperror.php';
processSoapFault($client,$fault,$tabInfo);
die();
}
}
2009-08-24 14:55:44 +00:00
$raisonSociale=$tabInfo['entrep']['raisonSociale'];
?>
2009-08-17 14:35:12 +00:00
<div id="center">
<h1 class="titre">COMP&Eacute;TENCES TERRITORIALES</h1>
<table>
<tr>
<td width="30">&nbsp;</td>
<td width="200" colspan="2" 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>
2009-08-17 14:35:12 +00:00
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" colspan="2" class="StyleInfoLib">Raison Sociale</td>
<td width="350" class="StyleInfoData"><?=$raisonSociale?></td>
2009-08-17 14:35:12 +00:00
</tr>
<tr><td colspan="4" class="StyleInfoData">&nbsp;</td></tr>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=tri">Tribunaux</a></td>
2009-08-17 14:35:12 +00:00
</tr>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=adm">Administrateurs &amp; Mandataires judiciaires</a></td>
2009-08-17 14:35:12 +00:00
</tr>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=hui">Huissiers de justice</a></td>
2009-08-17 14:35:12 +00:00
</tr>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=pre">Pr&eacute;fectures &amp; Sous-pr&eacute;fectures</a></td>
2009-08-17 14:35:12 +00:00
</tr>
<?php
if ($_SERVER['REMOTE_ADDR']=='83.206.102.217' || $_SERVER['REMOTE_ADDR']=='88.185.121.243')
{
?>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=cfe">Centres de formalit&eacute;s des Entreprises (CCI, Greffes, M&eacute;tiers, Artisanat, Agriculture, URSSAF, Imp&ocirc;ts, etc...)</a></td>
2009-08-17 14:35:12 +00:00
</tr>
<?php
}
?>
<tr>
<td width="30">&nbsp;</td>
2009-03-11 07:51:18 +00:00
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=jal">Journaux d'Annonces L&eacute;gales</a></td>
2009-08-17 14:35:12 +00:00
</tr>
</table>
<?php
2009-08-17 14:35:12 +00:00
if ($type=='tri')
{
?>
<h2>Tribunaux</h2>
<table>
<?php
foreach ($competences as $comp)
{
?>
<tr>
<td width="30">&nbsp;</td>
2009-08-17 14:35:12 +00:00
<td width="550" colspan="3" class="StyleInfoData">
<b><ul><li>
<?php
print strtr(' '.$comp['Nom'],array(' TGI '=>'TRIBUNAL DE GRANDE INSTANCE DE ',' TI '=>'TRIBUNAL D\'INSTANCE DE ', ' TC '=>'TRIBUNAL DE COMMERCE DE ', ' TGIcc '=>'TRIBUNAL DE GRANDE INSTANCE A COMPETENCE COMMERCIALE '));
?>
</b><br/>
<?php
if (trim($comp['Siret'])<>'')
{
?>
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><br/>
<?php
}
?>
<?=$comp['Adr'];?><br/>
<?if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<?if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<?if ($comp['Remarque']<>'')echo $comp['Remarque'].'<br/>';?>
2009-08-26 07:23:37 +00:00
<?php if($comp['IdentifiantGreffe']>0) echo 'Identifiant Greffe : '.$comp['IdentifiantGreffe']; ?>
</li>
</ul>
</td>
</td>
2009-08-17 14:35:12 +00:00
</tr>
<?php
2009-08-17 16:25:42 +00:00
}
?>
</table>
<?php
2009-08-17 14:35:12 +00:00
} elseif ($type=='cfe') {
?>
<h2>Centre de formalit<EFBFBD>s des entreprises</h2>
<table>
<?php foreach ($competences as $comp) {?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="3" class="StyleInfoData"><b><ul><li><?=strtr(' '.$comp['Nom'],array(' TGI '=>'TRIBUNAL DE GRANDE INSTANCE DE ',
' TI '=>'TRIBUNAL D\'INSTANCE DE ', ' TC '=>'TRIBUNAL DE COMMERCE DE ', ' TGIcc '=>'TRIBUNAL DE GRANDE INSTANCE A COMPETENCE COMMERCIALE '))?></b><br/>
<? if (trim($comp['Siret'])<>'') { ?>
2009-03-11 07:51:18 +00:00
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><br/><?}?>
<?=$comp['Adr'];?><br/>
<?if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<?if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<?if ($comp['Remarque']<>'')echo $comp['Remarque'].'<br/>';?>
</li></ul></td></td>
</tr>
<?php
}
2009-08-17 14:35:12 +00:00
?>
</table>
<?php
} elseif ($type=='pre')
{
?>
<h2>Pr<EFBFBD>fectures et Sous-Pr<EFBFBD>fectures</h2>
<table>
<?php foreach ($competences as $comp) {?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="3" class="StyleInfoData"><b><ul><li><?=$comp['Nom']?></b><br/>
<? if (trim($comp['Siret'])<>'') { ?>
2009-03-11 07:51:18 +00:00
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><br/><?}?>
<?=$comp['Adr'];?><br/>
<?if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<?if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<? if ($comp['Remarque']<>'') echo $comp['Remarque'].'<br/>';?>
</li></ul></td></td>
</tr>
<?php
}
2009-08-17 14:35:12 +00:00
?>
</table>
<?php
} elseif ($type=='jal') {
?>
<h2>Jounaux d'Annonces L<EFBFBD>gales</h2>
<table>
<?php foreach ($competences as $comp) {?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="3" class="StyleInfoData"><b><ul><li><?=$comp['Nom']?></b><br/>
<? if (trim($comp['Siret'])<>'') { ?>
2009-03-11 07:51:18 +00:00
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><br/><?}?>
<?=$comp['Adr'];?><br/>
<?if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<?if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<? if ($comp['Remarque']<>'') echo $comp['Remarque'].'<br/>';?>
</li></ul></td></td>
</tr>
<?php
}
2009-08-17 14:35:12 +00:00
?>
</table>
<?php
} elseif ($type=='adm') {
?>
2009-08-17 14:35:12 +00:00
<h2>Administrateur(s) / Mandataire(s) judiciaires</h2>
<table>
<?php foreach ($competences as $comp) {?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="3" class="StyleInfoData"><b><ul><li><?=$comp['Nom']?></b><br/>
<?php
if ($comp['Type']=='A') echo '<i>Administrateur judiciaire</i><br/>';
elseif ($comp['Type']=='M') echo '<i>Mandataire judiciaire</i><br/>';
if (trim($comp['Siret'])<>'') { ?>
2009-03-11 07:51:18 +00:00
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><?if (trim($comp['IdSup'])*1>0) { ?>(SCP : <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['IdSup']?>"><?=substr($comp['IdSup'],0,3).' '.substr($comp['IdSup'],3,3).' '.substr($comp['IdSup'],6,3);?></a>)<?}?><br/><?}?>
<?=$comp['Adr'];?><br/>
<? if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<? if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<? if ($comp['Remarque']<>'') echo 'Remarque : '.$comp['Remarque'].'<br/>';?>
</li></ul></td>
</tr>
<?php
}
2009-08-17 14:35:12 +00:00
?>
</table>
<?php
} elseif ($type=='hui') {
?>
2009-08-17 14:35:12 +00:00
<h2>Huissiers</h2>
<table>
<?php foreach ($competences as $comp) {?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="3" class="StyleInfoData"><b><ul><li><?=$comp['Nom']?></b><br/>
<i>Huissier de justice</i><br/>
<?
if (trim($comp['Siret'])<>'' && trim($comp['Siret'])*1<>0) { ?>
2009-03-11 07:51:18 +00:00
<b>RCS <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['Siret']?>"><?=substr($comp['Siret'],0,3).' '.substr($comp['Siret'],3,3).' '.substr($comp['Siret'],6,3).' <i>'.substr($comp['Siret'],9,5);?></i></a></b><?if (trim($comp['IdSup'])*1>0) { ?>(SCP : <a href="./?page=identite&idEntreprise=<?=$idEntreprise?>&siret=<?=$comp['IdSup']?>"><?=substr($comp['IdSup'],0,3).' '.substr($comp['IdSup'],3,3).' '.substr($comp['IdSup'],6,3);?></a>)<?}?><br/><?}?>
<?=$comp['Adr'];?><br/>
<? if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
<?if ($comp['Tel']<>'') echo 'T&eacute;l : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
<?if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
<?if (trim($comp['Web'])<>'') {
if (substr($comp['Web'],0,7)<>'http://')
$siteWeb='http://'.$comp['Web'];
else
$siteWeb=$comp['Web'];
echo 'Site internet : <a href="'.$siteWeb.'" target="_blank">'.$siteWeb.'</a><br/>';
}?>
<? if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
<? if ($comp['Remarque']<>'') echo 'Remarque : '.$comp['Remarque'].'<br/>';?>
</li></ul></td>
</tr>
<?php
2009-08-17 14:35:12 +00:00
}
?>
</table>
<?php
} elseif ($type=='cad') {
?>
2009-08-17 14:35:12 +00:00
<h2>Cadastre et Hypoth<EFBFBD>ques</h2>
<?php
} elseif ($type=='pre') {
2009-08-17 14:35:12 +00:00
?>
<h2>Pr<EFBFBD>fectures et Sous-Pr<EFBFBD>fectures</h2>
<?php
} elseif ($type=='avo') {
?>
2009-08-17 14:35:12 +00:00
<h2>Avocat(s)</h2>
<?php
}
2009-08-17 14:35:12 +00:00
?>
<br>
</div>
<?php
2009-07-20 16:17:33 +00:00
/** @todo
*
* Cadastre
* Hypoth<EFBFBD>ques
* Avocats http://www.cnb.avocat.fr/annuaire/resultats.php
2009-07-20 16:17:33 +00:00
*
* A voir 1 :
* Experts Comptables http://www.bretagne.experts-comptables.fr/annuaire/resultats.php
* Commisaires aux comptes
2009-07-20 16:17:33 +00:00
*
* A voir 2 :
* Notaires http://www.notaires.fr/notaires/annuaire.nsf/F_RN_RECH_PUB?OpenForm&comLangue=FR
* Forme : Profession liberale (1500) SCP de notaires (6565)
* Activit<EFBFBD> : Organisations professionnelles (911C)
* Activites des organisations professionnelles (9412Z) Activites juridiques (6910Z)
2009-07-20 16:17:33 +00:00
* *
* Faire des scripts g<EFBFBD>n<EFBFBD>riques qui <EFBFBD> partir de l'INSEE et de la cr<EFBFBD>ation, maj ou suppression de de SIREN/SIRET dans certaines CJ ou NAF
**/
}
2009-08-17 14:35:12 +00:00
?>