415 lines
14 KiB
PHP
415 lines
14 KiB
PHP
<?php
|
|
$type = trim(@$_REQUEST['type']);
|
|
$tabInfo = $_SESSION['tabInfo'];
|
|
|
|
if (!page_checkParams()) die('Paramètres incorrects !');
|
|
|
|
if ($type<>'tri' && //Tribunaux
|
|
$type<>'pre' && // Préfectures
|
|
$type<>'jal' && // Journaux d'Annonces Légales
|
|
$type<>'adm' && // Mandataires
|
|
$type<>'hui' && // Huissiers
|
|
$type<>'cad' && // Cadastre
|
|
$type<>'avo' && // Avocats
|
|
$type<>'not' && // Notaires
|
|
// CFE
|
|
/*
|
|
$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ôts
|
|
*/
|
|
$type<>'cfe' && // Centres de Formalités des Entreprises
|
|
$type<>'') {
|
|
echo ('Compétence territoriale inexistante');
|
|
}
|
|
else
|
|
{
|
|
if (isset($_REQUEST['id']) && $_REQUEST['id']*1<>0) $idCom=$_REQUEST['id'];
|
|
else $idCom=false;
|
|
|
|
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';
|
|
|
|
if (($siret*1)==0 || ($siren*1)<100){ $fileName = $page2.'-'.$idEntreprise;
|
|
}else{ $fileName = $page2.'-'.$siret; }
|
|
if($type!=''){ $fileName.= '-'.$type; }
|
|
cache_filename($fileName);
|
|
if( cache_exist() && !hasModeEdition() ){
|
|
$competences = cache_get('competences');
|
|
}else{
|
|
try {
|
|
$O = $client->getListeCompetences($siret, $type, $_SESSION['tabInfo']['entrep']['codeCommune']);
|
|
$competences = $O['result'];
|
|
cache_delete();
|
|
cache_add('competences', $competences);
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
die();
|
|
}
|
|
}
|
|
?>
|
|
<div id="center">
|
|
<h1 class="titre">COMPÉTENCES TERRITORIALES</h1>
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" colspan="2" 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" colspan="2" class="StyleInfoLib">Raison Sociale</td>
|
|
<td width="350" class="StyleInfoData"><?=$raisonSociale?></td>
|
|
</tr>
|
|
<tr><td colspan="4" class="StyleInfoData"> </td></tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=tri">Tribunaux</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=adm">Administrateurs & Mandataires judiciaires</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=hui">Huissiers de justice</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=pre">Préfectures & Sous-préfectures</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=cfe">Centres de formalités des Entreprises (CCI, Greffes, Métiers, Artisanat, Agriculture, URSSAF, Impôts, etc...)</a></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td colspan="3" class="StyleInfoData"><a href="./?page=competences&idEntreprise=<?=$idEntreprise?>&siret=<?=$siret?>&type=jal">Journaux d'Annonces Légales</a></td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
if ($type=='tri')
|
|
{
|
|
?>
|
|
<h2>Tribunaux</h2>
|
|
<table>
|
|
<?php
|
|
foreach ($competences as $comp)
|
|
{
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData">
|
|
<ul>
|
|
<li><b>
|
|
<?php
|
|
print strtr(' '.strtoupper($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 ',
|
|
' TICC ' => 'TRIBUNAL D\'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é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/>';?>
|
|
<?php if($comp['IdentifiantGreffe']>0) echo 'Identifiant Greffe : '.$comp['IdentifiantGreffe']; ?>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
} elseif ($type=='cfe') {
|
|
?>
|
|
<h2>Centre de formalités des entreprises</h2>
|
|
<table>
|
|
<?php foreach ($competences as $comp) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData">
|
|
<ul>
|
|
<li>
|
|
<b>
|
|
<?php
|
|
print strtr(' '.strtoupper($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 ',
|
|
' TICC ' => 'TRIBUNAL D\'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/>
|
|
<?php if ($comp['AdrComp']<>'') echo $comp['AdrComp'].'<br/>';?>
|
|
<b><?=$comp['CP'].' '.$comp['Ville']?></b><br/>
|
|
<?php if ($comp['Tel']<>'') echo 'Tél : '.wordwrap($comp['Tel'],2,".",true).'<br/>';?>
|
|
<?php if ($comp['Fax']<>'') echo 'Fax : '.wordwrap($comp['Fax'],2,".",true).'<br/>';?>
|
|
<?php 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/>';
|
|
}?>
|
|
<?php if ($comp['Mail']<>'') echo 'Courriel : <a href="mailto:'.$comp['Mail'].'">'.$comp['Mail'].'</a><br/>';?>
|
|
<?php if ($comp['Remarque']<>'') echo $comp['Remarque'].'<br/>';?>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
}
|
|
elseif ($type=='pre')
|
|
{
|
|
?>
|
|
<h2>Préfectures et Sous-Préfectures</h2>
|
|
<table>
|
|
<?php foreach ($competences as $comp) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData"><ul><li><b><?=$comp['Nom']?></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é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>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
} elseif ($type=='jal') {
|
|
?>
|
|
<h2>Jounaux d'Annonces Légales</h2>
|
|
<table>
|
|
<?php foreach ($competences as $comp) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData"><ul><li><b><?=$comp['Nom']?></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é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>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
} elseif ($type=='adm') {
|
|
?>
|
|
<h2>Administrateur(s) / Mandataire(s) judiciaires</h2>
|
|
<table>
|
|
<?php foreach ($competences as $comp) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData"><ul><li><b><?=$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'])<>'') { ?>
|
|
<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>
|
|
<?php 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é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
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
} elseif ($type=='hui') {
|
|
?>
|
|
<h2>Huissiers</h2>
|
|
<table>
|
|
<?php foreach ($competences as $comp) {?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoData"><ul><li><b><?=$comp['Nom']?></b><br/>
|
|
<i>Huissier de justice</i><br/>
|
|
<?
|
|
if (trim($comp['Siret'])<>'' && trim($comp['Siret'])*1<>0) { ?>
|
|
<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é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
|
|
}
|
|
?>
|
|
</table>
|
|
<?php
|
|
} elseif ($type=='cad') {
|
|
?>
|
|
<h2>Cadastre et Hypothèques</h2>
|
|
<?php
|
|
} elseif ($type=='pre') {
|
|
?>
|
|
<h2>Préfectures et Sous-Préfectures</h2>
|
|
<?php
|
|
} elseif ($type=='avo') {
|
|
?>
|
|
<h2>Avocat(s)</h2>
|
|
<?php
|
|
}
|
|
?>
|
|
<br>
|
|
|
|
<?php
|
|
// --------------------------------------------------------------------------- //
|
|
// Export
|
|
// --------------------------------------------------------------------------- //
|
|
if (empty($competences) == false) {
|
|
require_once 'export.php';
|
|
if (isset($siret) == true) {
|
|
$fileName = $page.'-'.$siret.'-'.$type;
|
|
} else {
|
|
$fileName = $page.'-'.$idEntreprise.'-'.$type;
|
|
}
|
|
|
|
$parseTab = new tabExport;
|
|
$parseTab->tab = array($competences);
|
|
|
|
$array2csv = new ExportCSV;
|
|
$array2csv->records = $parseTab->convertTable();
|
|
$array2csv->writeCSV($fileName);
|
|
|
|
$array2xml = new ExportXML;
|
|
$array2xml->rootName = $page.$type;
|
|
$array2xml->defaultTagName = substr($page, 0 , -1).$type;
|
|
$array2xml->records = $competences;
|
|
$array2xml->writeXML($fileName);
|
|
}
|
|
|
|
require_once 'cgu/cgu.php';
|
|
print '<p class="confidentiel blockh2">'.afficheCgu();
|
|
?>
|
|
|
|
</p>
|
|
</div>
|
|
<?php
|
|
/** @todo
|
|
*
|
|
* Cadastre
|
|
* Hypothèques
|
|
* Avocats http://www.cnb.avocat.fr/annuaire/resultats.php
|
|
*
|
|
* A voir 1 :
|
|
* Experts Comptables http://www.bretagne.experts-comptables.fr/annuaire/resultats.php
|
|
* Commisaires aux comptes
|
|
*
|
|
* 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é : Organisations professionnelles (911C)
|
|
* Activites des organisations professionnelles (9412Z) Activites juridiques (6910Z)
|
|
* *
|
|
* Faire des scripts génériques qui à partir de l'INSEE et de la création, maj ou suppression de de SIREN/SIRET dans certaines CJ ou NAF
|
|
**/
|
|
}
|
|
?>
|