Merge from branche 1.1
This commit is contained in:
commit
228b93d8c9
@ -166,6 +166,7 @@ class ProfilController extends Zend_Controller_Action
|
||||
require_once 'Scores/Enrichissement.php';
|
||||
$dico = new Enrichissement();
|
||||
|
||||
$this->view->assign('key', $key);
|
||||
$this->view->assign('lib', $dico->getDicoLib($key));
|
||||
$this->view->assign('help', $dico->getDicoHelp($key));
|
||||
$this->view->assign('columns', $dico->getDicoColumns($key));
|
||||
|
@ -1,4 +1,5 @@
|
||||
<p>Element : <?=$this->lib?></p>
|
||||
<p>Key : <?=$this->key?>
|
||||
<p><?=$this->help?></p>
|
||||
<br/>
|
||||
<p>Colonnes de sortie</p>
|
||||
|
@ -519,7 +519,7 @@ class Metier_Infogreffe_Ac extends Metier_Infogreffe
|
||||
$sql = $acteM->select()
|
||||
->where('siren=?', $list['num_siren'])
|
||||
->where('num_depot=?', intval($list['num_depot']))
|
||||
//->where('date_depot=?', $list['date_depot'])
|
||||
->where('date_depot=?', $list['date_depot'])
|
||||
//->where('date_acte=?', $depot['date_acte'])
|
||||
->where('num_acte=?', intval($depot['num_acte']))
|
||||
->order('dateInsert DESC');
|
||||
@ -547,6 +547,7 @@ class Metier_Infogreffe_Ac extends Metier_Infogreffe
|
||||
$result = $acteM->delete(array(
|
||||
'siren='.$this->siren,
|
||||
'num_depot='.intval($list['num_depot']),
|
||||
'date_depot="'.$list['date_depot'].'"',
|
||||
'num_acte='.intval($depot['num_acte']),
|
||||
'id!='.$item->id,
|
||||
));
|
||||
|
@ -206,6 +206,7 @@ class Metier_Infogreffe_Bi extends Metier_Infogreffe
|
||||
$this->dossier_chrono = substr($row->numRC,3);
|
||||
$this->num_depot = $row->num_depot;
|
||||
$this->date_cloture = $row->date_cloture;
|
||||
$this->type_comptes = $row->type_comptes;
|
||||
|
||||
//Set the filename
|
||||
$filename = $this->getFilePath($type, $dateCloture) . '/' . $this->getFileName($type, $dateCloture);
|
||||
@ -217,7 +218,7 @@ class Metier_Infogreffe_Bi extends Metier_Infogreffe
|
||||
throw new Exception('File not found');
|
||||
}
|
||||
|
||||
}elseif ( file_exists($this->config->storage->path . '/' . $filename) ) {
|
||||
} elseif ( file_exists($this->config->storage->path . '/' . $filename) ) {
|
||||
|
||||
//Analyser le fichier - Nombre de page et taille
|
||||
$infos = $this->pdfInfos($this->config->storage->path . '/' . $filename);
|
||||
|
@ -1,98 +0,0 @@
|
||||
<?php
|
||||
class Metier_Search_Engine
|
||||
{
|
||||
protected $client = null;
|
||||
protected $host = null;
|
||||
protected $port = null;
|
||||
protected $timeout = 1;
|
||||
protected $offset = 0;
|
||||
protected $limit = 300;
|
||||
protected $max_matches = 1000;
|
||||
protected $query = null;
|
||||
|
||||
public function __construct($version = 1)
|
||||
{
|
||||
//Load the API following the version
|
||||
if ($version == 1){
|
||||
require_once 'Vendors/sphinxapi/sphinxapi-0.9.9.php';
|
||||
} elseif ($version == 2){
|
||||
require_once 'Vendors/sphinxapi/sphinxapi-2.1.5.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
protected function loadClient()
|
||||
{
|
||||
if ( null === $this->host ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ( null === $this->port ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$this->client = new SphinxClient();
|
||||
$this->client->SetServer( $this->host, $this->port );
|
||||
$this->client->SetConnectTimeout( $timeout );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param unknown $value
|
||||
*/
|
||||
protected function setHost($value)
|
||||
{
|
||||
$this->host = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param unknown $value
|
||||
*/
|
||||
protected function setPort($value)
|
||||
{
|
||||
$this->port = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param unknown $value
|
||||
*/
|
||||
protected function setOffset($value)
|
||||
{
|
||||
$this->offset = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param unknown $value
|
||||
*/
|
||||
protected function setLimit($value)
|
||||
{
|
||||
$this->limit = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param unknown $value
|
||||
*/
|
||||
protected function setMaxMatches($value)
|
||||
{
|
||||
$this->max_matches = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
protected function constructQuery($p)
|
||||
{
|
||||
$this->query = $p;
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -653,8 +653,9 @@ class MInsee
|
||||
public function valideSiren($siren, $nic='', $erreur=false)
|
||||
{
|
||||
$siren = str_pad($siren, 9, '0', STR_PAD_LEFT);
|
||||
$nic = str_pad($nic, 5, '0', STR_PAD_LEFT);
|
||||
|
||||
if (!empty($nic)) {
|
||||
$nic = str_pad($nic, 5, '0', STR_PAD_LEFT);
|
||||
}
|
||||
if (!valideData($siren, 9, 9,'N')) //Siren non précisé ou incorrect.
|
||||
return $erreur;
|
||||
elseif ($siren*1==0) // Siren vide
|
||||
@ -1610,7 +1611,7 @@ class MInsee
|
||||
$limit="LIMIT $deb, $nbRep";
|
||||
|
||||
$sqlInfo="e.id, e.source, e.source_id, e.triCode, e.autre_id, LPAD(e.siren, 9, 0) as siren, LPAD(e.nic, 5, 0) as nic, e.siege, ".
|
||||
"e.raisonSociale, e.enseigne, e.sigle, e.adr_num, e.adr_btq, LPAD(e.adr_typeVoie,0,4) AS adr_typeVoie, e.adr_libVoie, ".
|
||||
"e.raisonSociale, e.enseigne, e.sigle, LPAD(e.adr_num,4,0) AS adr_num, e.adr_btq, e.adr_typeVoie, e.adr_libVoie, ".
|
||||
"e.adr_comp, LPAD(e.adr_cp,5,0) AS adr_cp, e.adr_ville, e.adr_dep, e.adr_com, LPAD(e.tel,10,0) AS tel, LPAD(e.fax,10,0) AS fax, e.cj, e.ape_etab, e.ape_entrep, e.teff_etab, ".
|
||||
"CONCAT(siren, nic) as siret, e.actif, e.identite_pre, IF(e.siege=2,0.5,e.siege) AS triSiege";
|
||||
|
||||
@ -4304,7 +4305,7 @@ class MInsee
|
||||
$derProcol =str_replace('-','',key($tabJugements))*1;
|
||||
$maxLatence=date('Ymd',mktime(0,0,0,(substr($derProcol,4,2)*1)+1,substr($derProcol,6,2),substr($derProcol,0,4)));
|
||||
if (date('Ymd')>$maxLatence) {
|
||||
sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 2b)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." alors qu'elle est encore active !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !");
|
||||
//sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 2b)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." alors qu'elle est encore active !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !");
|
||||
$tabRet=array();
|
||||
}
|
||||
}
|
||||
@ -4312,7 +4313,7 @@ class MInsee
|
||||
case 3: // Pas Procol si actif RCS
|
||||
//$tabId=$this->getIdentiteLight($siren);
|
||||
if ($tabId['Actif']*1>0) {
|
||||
sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "MInsee::getAnnonceProcol sur $siren (cas 3)", print_r($tabNoProcol, true));
|
||||
//sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "MInsee::getAnnonceProcol sur $siren (cas 3)", print_r($tabNoProcol, true));
|
||||
$tabRet=array();
|
||||
}
|
||||
break;
|
||||
@ -4330,7 +4331,7 @@ class MInsee
|
||||
if ($tabId['Actif']*1>0) {
|
||||
/** Procédure trop ancienne **/
|
||||
$derPr=$classWDate->dateT('Ymd','d/m/Y',$derProcol);
|
||||
sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 5)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." en date du $derPr alors que cela fait plus de 12 ans !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !".EOL.print_r($tabBilans,true).EOL."Liste des derniers jugements :".EOL.print_r($tabJugements,true));
|
||||
//sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 5)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." en date du $derPr alors que cela fait plus de 12 ans !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !".EOL.print_r($tabBilans,true).EOL."Liste des derniers jugements :".EOL.print_r($tabJugements,true));
|
||||
$tabRet=array();
|
||||
}
|
||||
} elseif ((current($tabJugements)>=1300 && current($tabJugements)<=1313 && current($tabJugements)!=1310) ||
|
||||
@ -4348,7 +4349,7 @@ class MInsee
|
||||
if ($derExercice>$derProcol) {
|
||||
$derEx=$classWDate->dateT('Ymd','d/m/Y',$derExercice);
|
||||
$derPr=$classWDate->dateT('Ymd','d/m/Y',$derProcol);
|
||||
sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 4)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." en date du $derPr alors que le dernier bilan publié date du $derEx !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !".EOL.print_r($tabBilans,true).EOL."Liste des derniers jugements :".EOL.print_r($tabJugements,true));
|
||||
//sendMail('production@scores-decisions.com', 'prod@scores-decisions.com', "Vérifier la Procédure Collective sur $siren (cas 4)", "L'entreprise, siren $siren, fait l'objet d'une clôture de procédure collective de type ".current($tabJugements)." en date du $derPr alors que le dernier bilan publié date du $derEx !".EOL."Merci de vérifier et de supprimer la procédure le cas échéant !".EOL.print_r($tabBilans,true).EOL."Liste des derniers jugements :".EOL.print_r($tabJugements,true));
|
||||
$tabRet=array();
|
||||
}
|
||||
}
|
||||
@ -6275,10 +6276,10 @@ class MInsee
|
||||
}
|
||||
}
|
||||
if (!$trouve) {
|
||||
@sendMail( 'production@scores-decisions.com', 'ylenaour@scores-decisions.com',
|
||||
/*@sendMail( 'production@scores-decisions.com', 'ylenaour@scores-decisions.com',
|
||||
"classMInsee::getInfosIris sur $codeCommune pas de RIVOLI sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 1a)",
|
||||
"Plusieurs codes IRIS pour un même rivoli".EOL.print_r($ret, true));
|
||||
print_r($ret);
|
||||
print_r($ret);*/
|
||||
// die("TROP DE RIVOLI POUR '$codeCommune' et '$adrLibVoie2' ($adrNum, $adrIndRep, $adrTypVoie)");
|
||||
}
|
||||
} else
|
||||
@ -6320,9 +6321,9 @@ class MInsee
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (count($ret2)<>1)
|
||||
@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMInsee::getInfosIris sur $codeCommune/$codeRivoli IRIS multiple KO sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 1a)", "Plusieurs codes IRIS pour le même rivoli".EOL.print_r($ret, true));
|
||||
else {
|
||||
if (count($ret2)<>1) {
|
||||
//@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMInsee::getInfosIris sur $codeCommune/$codeRivoli IRIS multiple KO sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 1a)", "Plusieurs codes IRIS pour le même rivoli".EOL.print_r($ret, true));
|
||||
} else {
|
||||
//@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMInsee::getInfosIris sur $codeCommune/$codeRivoli IRIS multiple ok sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 1b)", "Plusieurs codes IRIS pour le même rivoli".EOL.print_r($ret2, true).EOL.print_r($ret, true));
|
||||
$ret=$ret2;
|
||||
}
|
||||
@ -6356,7 +6357,7 @@ class MInsee
|
||||
} else {
|
||||
//typVoie, libVoie, rivoli, typeNum 1:chiffres impaires, 2:chiffres paires
|
||||
//numd, indd, numf, indf
|
||||
@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMInsee::getInfosIris sur $codeCommune/$codeRivoli IRIS multiple KO sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 2)", "Plusieurs codes IRIS pour le même rivoli".EOL.print_r($ret, true));
|
||||
//@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "classMInsee::getInfosIris sur $codeCommune/$codeRivoli IRIS multiple KO sur $adrNum $adrIndRep $adrTypVoie $adrLibVoie (cas 2)", "Plusieurs codes IRIS pour le même rivoli".EOL.print_r($ret, true));
|
||||
}
|
||||
return $tabRet;
|
||||
}
|
||||
|
@ -1,178 +0,0 @@
|
||||
<?php
|
||||
return array(
|
||||
1 => "AFN",
|
||||
2 => "ZAR",
|
||||
3 => "ALL",
|
||||
4 => "DZD",
|
||||
5 => "DEM",
|
||||
7 => "AOA",
|
||||
8 => "ANG",
|
||||
9 => "SAR",
|
||||
10 => "ARS",
|
||||
11 => "AUD",
|
||||
12 => "ATS",
|
||||
13 => "BSD",
|
||||
14 => "BHD",
|
||||
15 => "BDT",
|
||||
16 => "BBD",
|
||||
17 => "BEF",
|
||||
18 => "BZD",
|
||||
19 => "BMD",
|
||||
20 => "MMK",
|
||||
21 => "BOB",
|
||||
22 => "BWP",
|
||||
23 => "BRL",
|
||||
24 => "BND",
|
||||
25 => "BGN",
|
||||
26 => "BIF",
|
||||
27 => "KHR",
|
||||
28 => "XAF",
|
||||
29 => "CAD",
|
||||
32 => "CLP",
|
||||
33 => "CNY",
|
||||
34 => "CYP",
|
||||
35 => "COP",
|
||||
36 => "KMF",
|
||||
37 => "ZRN",
|
||||
38 => "KPW",
|
||||
39 => "KRW",
|
||||
40 => "CRC",
|
||||
42 => "CUP",
|
||||
44 => "DKK",
|
||||
45 => "DJF",
|
||||
46 => "XCD",
|
||||
47 => "EGP",
|
||||
48 => "AED",
|
||||
50 => "ESP",
|
||||
51 => "USD",
|
||||
52 => "ETB",
|
||||
53 => "FKP",
|
||||
54 => "FJD",
|
||||
55 => "FIM",
|
||||
56 => "GMD",
|
||||
58 => "GHC",
|
||||
59 => "GBP",
|
||||
60 => "GRD",
|
||||
61 => "GTQ",
|
||||
62 => "GWP",
|
||||
63 => "GNF",
|
||||
65 => "GYD",
|
||||
66 => "HTG",
|
||||
68 => "HNL",
|
||||
69 => "HKD",
|
||||
70 => "HUF",
|
||||
71 => "INR",
|
||||
72 => "IDR",
|
||||
73 => "IQD",
|
||||
74 => "IRR",
|
||||
75 => "IEP",
|
||||
76 => "ISK",
|
||||
77 => "ILS",
|
||||
78 => "ITL",
|
||||
79 => "JMD",
|
||||
80 => "JPY",
|
||||
81 => "JOD",
|
||||
82 => "KES",
|
||||
83 => "KWD",
|
||||
84 => "LAK",
|
||||
85 => "LBP",
|
||||
86 => "LRD",
|
||||
87 => "LYD",
|
||||
89 => "LUF",
|
||||
90 => "MOP",
|
||||
91 => "MGF",
|
||||
92 => "MYR",
|
||||
93 => "MWK",
|
||||
94 => "MVR",
|
||||
96 => "MTL",
|
||||
97 => "MAD",
|
||||
98 => "MUR",
|
||||
99 => "MRO",
|
||||
100 => "MXN",
|
||||
101 => "MNT",
|
||||
102 => "MZM",
|
||||
103 => "NPR",
|
||||
104 => "NIO",
|
||||
106 => "NGN",
|
||||
107 => "NOK",
|
||||
110 => "NZD",
|
||||
111 => "OMR",
|
||||
112 => "UGX",
|
||||
113 => "PKR",
|
||||
114 => "PAB",
|
||||
115 => "PYG",
|
||||
116 => "NLG",
|
||||
117 => "PEN",
|
||||
118 => "PHP",
|
||||
119 => "PLN",
|
||||
120 => "XPF",
|
||||
121 => "PTE",
|
||||
122 => "QAR",
|
||||
123 => "RON",
|
||||
124 => "RWF",
|
||||
125 => "SVC",
|
||||
126 => "WST",
|
||||
127 => "STD",
|
||||
129 => "SCR",
|
||||
130 => "SLL",
|
||||
131 => "SGD",
|
||||
132 => "SBD",
|
||||
133 => "SOS",
|
||||
134 => "SDD",
|
||||
135 => "LKR",
|
||||
136 => "SRG",
|
||||
137 => "SEK",
|
||||
138 => "CHF",
|
||||
139 => "SYP",
|
||||
140 => "SZL",
|
||||
141 => "TWD",
|
||||
142 => "TZS",
|
||||
144 => "CZK",
|
||||
145 => "THB",
|
||||
147 => "TTD",
|
||||
148 => "TND",
|
||||
149 => "TRL",
|
||||
152 => "UYU",
|
||||
153 => "VUV",
|
||||
154 => "VEB",
|
||||
155 => "VND",
|
||||
157 => "YER",
|
||||
159 => "YUM",
|
||||
160 => "CDF",
|
||||
161 => "ZMK",
|
||||
162 => "ZWD",
|
||||
168 => "ADP",
|
||||
174 => "KYD",
|
||||
176 => "LVL",
|
||||
177 => "LTL",
|
||||
178 => "EEK",
|
||||
179 => "UAH",
|
||||
181 => "SIT",
|
||||
182 => "SKK",
|
||||
183 => "KZT",
|
||||
184 => "BYR",
|
||||
186 => "HRK",
|
||||
188 => "TMM",
|
||||
189 => "KGS",
|
||||
190 => "MDL",
|
||||
191 => "GIP",
|
||||
192 => "RUB",
|
||||
195 => "AMD",
|
||||
196 => "AZM",
|
||||
197 => "BAM",
|
||||
198 => "GEL",
|
||||
201 => "MKD",
|
||||
205 => "AWG",
|
||||
207 => "TOP",
|
||||
208 => "BTN",
|
||||
209 => "PGK",
|
||||
210 => "UZS",
|
||||
211 => "ILS",
|
||||
212 => "TJS",
|
||||
213 => "CVE",
|
||||
214 => "ERN",
|
||||
218 => "DOP",
|
||||
238 => "SHP",
|
||||
244 => "TPE",
|
||||
300 => "EUR",
|
||||
);
|
@ -1,32 +0,0 @@
|
||||
<?php
|
||||
return array(
|
||||
1 => 1520,
|
||||
2 => 1436,
|
||||
3 => 1460,
|
||||
4 => 1209,
|
||||
5 => 1445,
|
||||
6 => 1603,
|
||||
7 => 1506,
|
||||
8 => 1430,
|
||||
9 => 1600,
|
||||
10 => 1500,
|
||||
11 => 1200,
|
||||
12 => 1413,
|
||||
13 => 1305,
|
||||
14 => 1411,
|
||||
15 => 1412,
|
||||
16 => 1425,
|
||||
18 => 1502,
|
||||
19 => 1501,
|
||||
20 => 1525,
|
||||
21 => 1435,
|
||||
44 => 1100,
|
||||
45 => 1101,
|
||||
48 => 1201,
|
||||
49 => 1307,
|
||||
55 => 1306,
|
||||
56 => 1110,
|
||||
57 => 1119,
|
||||
58 => 1545,
|
||||
59 => 1506,
|
||||
);
|
@ -1,240 +0,0 @@
|
||||
<?php
|
||||
return array(
|
||||
1 => "AF",
|
||||
2 => "ZA",
|
||||
3 => "AL",
|
||||
4 => "DZ",
|
||||
5 => "DE",
|
||||
7 => "AO",
|
||||
8 => "AN",
|
||||
9 => "SA",
|
||||
10 => "AR",
|
||||
11 => "AU",
|
||||
12 => "AT",
|
||||
13 => "BS",
|
||||
14 => "BH",
|
||||
15 => "BD",
|
||||
16 => "BB",
|
||||
17 => "BE",
|
||||
18 => "BZ",
|
||||
19 => "BM",
|
||||
20 => "MM",
|
||||
21 => "BO",
|
||||
22 => "BW",
|
||||
23 => "BR",
|
||||
24 => "BN",
|
||||
25 => "BG",
|
||||
26 => "BI",
|
||||
27 => "KH",
|
||||
28 => "CM",
|
||||
29 => "CA",
|
||||
31 => "CF",
|
||||
32 => "CL",
|
||||
33 => "CN",
|
||||
34 => "CY",
|
||||
35 => "CO",
|
||||
36 => "KM",
|
||||
37 => "CG",
|
||||
38 => "KP",
|
||||
39 => "KR",
|
||||
40 => "CR",
|
||||
41 => "CI",
|
||||
42 => "CU",
|
||||
43 => "BJ",
|
||||
44 => "DK",
|
||||
45 => "DJ",
|
||||
46 => "DM",
|
||||
47 => "EG",
|
||||
48 => "AE",
|
||||
49 => "EC",
|
||||
50 => "ES",
|
||||
51 => "US",
|
||||
52 => "ET",
|
||||
53 => "FK",
|
||||
54 => "FJ",
|
||||
55 => "FI",
|
||||
56 => "GM",
|
||||
57 => "GA",
|
||||
58 => "GH",
|
||||
59 => "GB",
|
||||
60 => "GR",
|
||||
61 => "GT",
|
||||
62 => "GW",
|
||||
63 => "GN",
|
||||
64 => "GQ",
|
||||
65 => "GY",
|
||||
66 => "HT",
|
||||
67 => "BF",
|
||||
68 => "HN",
|
||||
69 => "HK",
|
||||
70 => "HU",
|
||||
71 => "IN",
|
||||
72 => "ID",
|
||||
73 => "IR",
|
||||
74 => "IQ",
|
||||
75 => "IE",
|
||||
76 => "IS",
|
||||
77 => "IL",
|
||||
78 => "IT",
|
||||
79 => "JM",
|
||||
80 => "JP",
|
||||
81 => "JO",
|
||||
82 => "KE",
|
||||
83 => "KW",
|
||||
84 => "LA",
|
||||
85 => "LB",
|
||||
86 => "LR",
|
||||
87 => "LY",
|
||||
88 => "LI",
|
||||
89 => "LU",
|
||||
90 => "MO",
|
||||
91 => "MG",
|
||||
92 => "MY",
|
||||
93 => "MW",
|
||||
94 => "MV",
|
||||
95 => "ML",
|
||||
96 => "MT",
|
||||
97 => "MA",
|
||||
98 => "MU",
|
||||
99 => "MR",
|
||||
100 => "MX",
|
||||
101 => "MN",
|
||||
102 => "MZ",
|
||||
103 => "NP",
|
||||
104 => "NI",
|
||||
105 => "NE",
|
||||
106 => "NG",
|
||||
107 => "NO",
|
||||
108 => "NC",
|
||||
110 => "NZ",
|
||||
111 => "OM",
|
||||
112 => "UG",
|
||||
113 => "PK",
|
||||
114 => "PA",
|
||||
115 => "PY",
|
||||
116 => "NL",
|
||||
117 => "PE",
|
||||
118 => "PH",
|
||||
119 => "PL",
|
||||
120 => "PF",
|
||||
121 => "PT",
|
||||
122 => "QA",
|
||||
123 => "RO",
|
||||
124 => "RW",
|
||||
125 => "SV",
|
||||
126 => "WS",
|
||||
127 => "ST",
|
||||
128 => "SN",
|
||||
129 => "SC",
|
||||
130 => "SL",
|
||||
131 => "SG",
|
||||
132 => "SB",
|
||||
133 => "SO",
|
||||
134 => "SD",
|
||||
135 => "LK",
|
||||
136 => "SR",
|
||||
137 => "SE",
|
||||
138 => "CH",
|
||||
139 => "SY",
|
||||
140 => "SZ",
|
||||
141 => "TW",
|
||||
142 => "TZ",
|
||||
143 => "TD",
|
||||
144 => "CZ",
|
||||
145 => "TH",
|
||||
146 => "TG",
|
||||
147 => "TT",
|
||||
148 => "TN",
|
||||
149 => "TR",
|
||||
150 => "TV",
|
||||
152 => "UY",
|
||||
153 => "VU",
|
||||
154 => "VE",
|
||||
155 => "VN",
|
||||
156 => "WF",
|
||||
157 => "YE",
|
||||
159 => "YU",
|
||||
160 => "CD",
|
||||
161 => "ZM",
|
||||
162 => "ZW",
|
||||
163 => "RE",
|
||||
164 => "GP",
|
||||
165 => "MC",
|
||||
167 => "MQ",
|
||||
168 => "AD",
|
||||
172 => "TF",
|
||||
173 => "PR",
|
||||
174 => "KY",
|
||||
175 => "MP",
|
||||
176 => "LV",
|
||||
177 => "LT",
|
||||
178 => "EE",
|
||||
179 => "UA",
|
||||
181 => "SI",
|
||||
182 => "SK",
|
||||
183 => "KZ",
|
||||
184 => "BY",
|
||||
185 => "YT",
|
||||
186 => "HR",
|
||||
188 => "TM",
|
||||
189 => "KG",
|
||||
190 => "MD",
|
||||
191 => "GI",
|
||||
192 => "RU",
|
||||
193 => "GL",
|
||||
194 => "PM",
|
||||
195 => "AM",
|
||||
196 => "AZ",
|
||||
197 => "BA",
|
||||
198 => "GE",
|
||||
201 => "MK",
|
||||
202 => "SM",
|
||||
203 => "AI",
|
||||
204 => "AG",
|
||||
205 => "AW",
|
||||
206 => "GD",
|
||||
207 => "TO",
|
||||
208 => "BT",
|
||||
209 => "PG",
|
||||
210 => "UZ",
|
||||
211 => "PS",
|
||||
212 => "TJ",
|
||||
213 => "CV",
|
||||
214 => "ER",
|
||||
215 => "LS",
|
||||
216 => "NA",
|
||||
217 => "EH",
|
||||
218 => "DO",
|
||||
219 => "BV",
|
||||
220 => "CX",
|
||||
221 => "CC",
|
||||
222 => "CK",
|
||||
223 => "FO",
|
||||
224 => "GU",
|
||||
225 => "HM",
|
||||
226 => "VG",
|
||||
227 => "VI",
|
||||
228 => "KI",
|
||||
229 => "MH",
|
||||
230 => "FM",
|
||||
231 => "MS",
|
||||
232 => "NR",
|
||||
233 => "NU",
|
||||
234 => "NF",
|
||||
235 => "IO",
|
||||
236 => "PW",
|
||||
237 => "PN",
|
||||
238 => "SH",
|
||||
239 => "KN",
|
||||
240 => "LC",
|
||||
241 => "VC",
|
||||
242 => "AS",
|
||||
243 => "SJ",
|
||||
244 => "TP",
|
||||
245 => "TK",
|
||||
246 => "TC",
|
||||
247 => "VA",
|
||||
248 => "AQ",
|
||||
249 => "GS",
|
||||
250 => "UM",
|
||||
);
|
@ -1,277 +0,0 @@
|
||||
<?php
|
||||
return array(
|
||||
0 => array('Id'=>"1812", 'Nom'=>"Tribunal Inconnu", 'Code'=>"INCONU"),
|
||||
101 => array('Id'=>"140", 'Nom'=>"TC BOURG EN BRESSE", 'Code'=>"BOURGC"),
|
||||
151 => array('Id'=>"103", 'Nom'=>"TGIcc BELLEY", 'Code'=>"BELLEG"),
|
||||
201 => array('Id'=>"215", 'Nom'=>"TC CHAUNY", 'Code'=>"CHAUNC"),
|
||||
202 => array('Id'=>"705", 'Nom'=>"TC SAINT QUENTIN", 'Code'=>"STQUEC"),
|
||||
203 => array('Id'=>"651", 'Nom'=>"TC SOISSONS", 'Code'=>"SOISSC"),
|
||||
204 => array('Id'=>"764", 'Nom'=>"TC VERVINS", 'Code'=>"VERVIC"),
|
||||
252 => array('Id'=>"366", 'Nom'=>"TGI LAON", 'Code'=>"LAONG"),
|
||||
301 => array('Id'=>"259", 'Nom'=>"TC CUSSET", 'Code'=>"CUSSEC"),
|
||||
302 => array('Id'=>"491", 'Nom'=>"TC MOULINS", 'Code'=>"MOULIC"),
|
||||
303 => array('Id'=>"467", 'Nom'=>"TC MONTLUCON", 'Code'=>"MONTLC"),
|
||||
401 => array('Id'=>"425", 'Nom'=>"TC MANOSQUE", 'Code'=>"MANOSC"),
|
||||
453 => array('Id'=>"270", 'Nom'=>"TGI DIGNE", 'Code'=>"DIGNEG"),
|
||||
501 => array('Id'=>"325", 'Nom'=>"TC GAP", 'Code'=>"GAPC"),
|
||||
601 => array('Id'=>"40", 'Nom'=>"TC ANTIBES", 'Code'=>"ANTIBC"),
|
||||
602 => array('Id'=>"173", 'Nom'=>"TC CANNES", 'Code'=>"CANNEC"),
|
||||
603 => array('Id'=>"332", 'Nom'=>"TC GRASSE", 'Code'=>"GRASSC"),
|
||||
604 => array('Id'=>"449", 'Nom'=>"TC MENTON", 'Code'=>"MENTOC"),
|
||||
605 => array('Id'=>"518", 'Nom'=>"TC NICE", 'Code'=>"NICEC"),
|
||||
701 => array('Id'=>"39", 'Nom'=>"TC ANNONAY", 'Code'=>"ANNONC"),
|
||||
702 => array('Id'=>"53", 'Nom'=>"TC AUBENAS", 'Code'=>"AUBENC"),
|
||||
801 => array('Id'=>"224", 'Nom'=>"TC CHARLEVILLE MEZIERES", 'Code'=>"CHMEZC"),
|
||||
802 => array('Id'=>"640", 'Nom'=>"TC SEDAN", 'Code'=>"SEDANC"),
|
||||
901 => array('Id'=>"312", 'Nom'=>"TC FOIX", 'Code'=>"FOIXC"),
|
||||
951 => array('Id'=>"313", 'Nom'=>"TGI FOIX", 'Code'=>"FOIXG"),
|
||||
1001 => array('Id'=>"742", 'Nom'=>"TC TROYES", 'Code'=>"TROYEC"),
|
||||
1101 => array('Id'=>"175", 'Nom'=>"TC CARCASSONNE", 'Code'=>"CARCAC"),
|
||||
1102 => array('Id'=>"179", 'Nom'=>"TC CASTELNAUDARY", 'Code'=>"CASTEC"),
|
||||
1103 => array('Id'=>"395", 'Nom'=>"TC LIMOUX", 'Code'=>"LIMOUC"),
|
||||
1104 => array('Id'=>"508", 'Nom'=>"TC NARBONNE", 'Code'=>"NARBOC"),
|
||||
1201 => array('Id'=>"296", 'Nom'=>"TC ESPALION", 'Code'=>"ESPALC"),
|
||||
1202 => array('Id'=>"455", 'Nom'=>"TC MILLAU", 'Code'=>"MILLAC"),
|
||||
1203 => array('Id'=>"612", 'Nom'=>"TC RODEZ", 'Code'=>"RODEZC"),
|
||||
1204 => array('Id'=>"655", 'Nom'=>"TC SAINT AFRIQUE", 'Code'=>"STAFFC"),
|
||||
1301 => array('Id'=>"8", 'Nom'=>"TC AIX EN PROVENCE", 'Code'=>"AIXC"),
|
||||
1302 => array('Id'=>"49", 'Nom'=>"TC ARLES", 'Code'=>"ARLESC"),
|
||||
1303 => array('Id'=>"435", 'Nom'=>"TC MARSEILLE", 'Code'=>"MARSEC"),
|
||||
1304 => array('Id'=>"626", 'Nom'=>"TC SALON DE PROVENCE", 'Code'=>"SALONC"),
|
||||
1305 => array('Id'=>"715", 'Nom'=>"TC TARASCON", 'Code'=>"TARASC"),
|
||||
1401 => array('Id'=>"89", 'Nom'=>"TC BAYEUX", 'Code'=>"BAYEUC"),
|
||||
1402 => array('Id'=>"162", 'Nom'=>"TC CAEN", 'Code'=>"CAENC"),
|
||||
1403 => array('Id'=>"245", 'Nom'=>"TC CONDE-SUR-NOIREAU", 'Code'=>"CONDEC"),
|
||||
1404 => array('Id'=>"306", 'Nom'=>"TC FALAISE", 'Code'=>"FALAIC"),
|
||||
1405 => array('Id'=>"348", 'Nom'=>"TC HONFLEUR", 'Code'=>"HONFLC"),
|
||||
1407 => array('Id'=>"397", 'Nom'=>"TC LISIEUX", 'Code'=>"LISIEC"),
|
||||
1408 => array('Id'=>"782", 'Nom'=>"TC VIRE", 'Code'=>"VIREC"),
|
||||
1501 => array('Id'=>"59", 'Nom'=>"TC AURILLAC", 'Code'=>"AURILC"),
|
||||
1502 => array('Id'=>"677", 'Nom'=>"TC SAINT FLOUR", 'Code'=>"STFLOC"),
|
||||
1601 => array('Id'=>"35", 'Nom'=>"TC ANGOULEME", 'Code'=>"ANGOUC"),
|
||||
1602 => array('Id'=>"237", 'Nom'=>"TC COGNAC", 'Code'=>"COGNAC"),
|
||||
1701 => array('Id'=>"357", 'Nom'=>"TC JONZAC", 'Code'=>"JONZAC"),
|
||||
1702 => array('Id'=>"430", 'Nom'=>"TC MARENNES", 'Code'=>"MARENC"),
|
||||
1703 => array('Id'=>"603", 'Nom'=>"TC ROCHEFORT", 'Code'=>"ROCHEC"),
|
||||
1704 => array('Id'=>"606", 'Nom'=>"TC LA ROCHELLE", 'Code'=>"ROCHLC"),
|
||||
1708 => array('Id'=>"623", 'Nom'=>"TC SAINTES", 'Code'=>"SAINTC"),
|
||||
1801 => array('Id'=>"148", 'Nom'=>"TC BOURGES", 'Code'=>"BRGESC"),
|
||||
1901 => array('Id'=>"159", 'Nom'=>"TC BRIVE", 'Code'=>"BRIVEC"),
|
||||
1902 => array('Id'=>"745", 'Nom'=>"TC TULLE", 'Code'=>"TULLEC"),
|
||||
2001 => array('Id'=>"11", 'Nom'=>"TC AJACCIO", 'Code'=>"AJACCC"),
|
||||
2002 => array('Id'=>"86", 'Nom'=>"TC BASTIA", 'Code'=>"BASTIC"),
|
||||
2003 => array('Id'=>"349", 'Nom'=>"TC L'ILE ROUSSE", 'Code'=>"ILEROC"),
|
||||
2101 => array('Id'=>"66", 'Nom'=>"TC AUXONNE", 'Code'=>"AUXONC"),
|
||||
2102 => array('Id'=>"94", 'Nom'=>"TC BEAUNE", 'Code'=>"BEAUNC"),
|
||||
2103 => array('Id'=>"208", 'Nom'=>"TC CHATILLON SUR SEINE", 'Code'=>"CHATIC"),
|
||||
2104 => array('Id'=>"272", 'Nom'=>"TC DIJON", 'Code'=>"DIJONC"),
|
||||
2105 => array('Id'=>"533", 'Nom'=>"TC NUITS ST GEORGES", 'Code'=>"NUITSC"),
|
||||
2201 => array('Id'=>"541", 'Nom'=>"TC PAIMPOL", 'Code'=>"PAIMPC"),
|
||||
2202 => array('Id'=>"660", 'Nom'=>"TC SAINT BRIEUC", 'Code'=>"STBRIC"),
|
||||
2251 => array('Id'=>"275", 'Nom'=>"TGIcc DINAN", 'Code'=>"DINANG"),
|
||||
2252 => array('Id'=>"342", 'Nom'=>"TGIcc GUINGAMP", 'Code'=>"GUINGG"),
|
||||
2301 => array('Id'=>"1813", 'Nom'=>"TC GUERET", 'Code'=>"GUEREC"),
|
||||
2353 => array('Id'=>"340", 'Nom'=>"TGIcc GUERET", 'Code'=>"GUEREG"),
|
||||
2401 => array('Id'=>"105", 'Nom'=>"TC BERGERAC", 'Code'=>"BERGEC"),
|
||||
2402 => array('Id'=>"554", 'Nom'=>"TC PERIGUEUX", 'Code'=>"PERIGC"),
|
||||
2403 => array('Id'=>"628", 'Nom'=>"TC SARLAT", 'Code'=>"SARLAC"),
|
||||
2501 => array('Id'=>"111", 'Nom'=>"TC BESANCON", 'Code'=>"BESANC"),
|
||||
2552 => array('Id'=>"461", 'Nom'=>"TGIcc MONTBELIARD", 'Code'=>"MONTBG"),
|
||||
2601 => array('Id'=>"265", 'Nom'=>"TC DIE", 'Code'=>"DIEC"),
|
||||
2602 => array('Id'=>"614", 'Nom'=>"TC ROMANS", 'Code'=>"ROMANC"),
|
||||
2653 => array('Id'=>"752", 'Nom'=>"TGIcc VALENCE", 'Code'=>"VALENG"),
|
||||
2701 => array('Id'=>"108", 'Nom'=>"TC BERNAY", 'Code'=>"BERNAC"),
|
||||
2702 => array('Id'=>"300", 'Nom'=>"TC EVREUX", 'Code'=>"EVREUC"),
|
||||
2703 => array('Id'=>"410", 'Nom'=>"TC LOUVIERS", 'Code'=>"LOUVIC"),
|
||||
2704 => array('Id'=>"569", 'Nom'=>"TC PONT AUDEMER", 'Code'=>"PONTAC"),
|
||||
2801 => array('Id'=>"199", 'Nom'=>"TC CHARTRES", 'Code'=>"CHARTC"),
|
||||
2802 => array('Id'=>"286", 'Nom'=>"TC DREUX", 'Code'=>"DREUXC"),
|
||||
2901 => array('Id'=>"145", 'Nom'=>"TC BREST", 'Code'=>"BRESTC"),
|
||||
2902 => array('Id'=>"487", 'Nom'=>"TC MORLAIX", 'Code'=>"MORLAC"),
|
||||
2903 => array('Id'=>"583", 'Nom'=>"TC QUIMPER", 'Code'=>"QUIMPC"),
|
||||
3001 => array('Id'=>"22", 'Nom'=>"TC ALES", 'Code'=>"ALESC"),
|
||||
3003 => array('Id'=>"522", 'Nom'=>"TC NIMES", 'Code'=>"NIMESC"),
|
||||
3101 => array('Id'=>"679", 'Nom'=>"TC SAINT GAUDENS", 'Code'=>"STGAUC"),
|
||||
3102 => array('Id'=>"733", 'Nom'=>"TC TOULOUSE", 'Code'=>"TOULSC"),
|
||||
3201 => array('Id'=>"56", 'Nom'=>"TC AUCH", 'Code'=>"AUCHC"),
|
||||
3301 => array('Id'=>"121", 'Nom'=>"TC BLAYE", 'Code'=>"BLAYEC"),
|
||||
3302 => array('Id'=>"132", 'Nom'=>"TC BORDEAUX", 'Code'=>"BORDEC"),
|
||||
3303 => array('Id'=>"386", 'Nom'=>"TC LIBOURNE", 'Code'=>"LIBOUC"),
|
||||
3402 => array('Id'=>"116", 'Nom'=>"TC BEZIERS", 'Code'=>"BEZIEC"),
|
||||
3403 => array('Id'=>"235", 'Nom'=>"TC CLERMONT L'HERAULT", 'Code'=>"CLHERC"),
|
||||
3404 => array('Id'=>"401", 'Nom'=>"TC LODEVE", 'Code'=>"LODEVC"),
|
||||
3405 => array('Id'=>"477", 'Nom'=>"TC MONTPELLIER", 'Code'=>"MONTPC"),
|
||||
3406 => array('Id'=>"561", 'Nom'=>"TC PEZENAS", 'Code'=>"PEZENC"),
|
||||
3407 => array('Id'=>"649", 'Nom'=>"TC SETE", 'Code'=>"SETEC"),
|
||||
3501 => array('Id'=>"591", 'Nom'=>"TC RENNES", 'Code'=>"RENNEC"),
|
||||
3502 => array('Id'=>"691", 'Nom'=>"TC SAINT MALO", 'Code'=>"STMALC"),
|
||||
3601 => array('Id'=>"205", 'Nom'=>"TC CHATEAUROUX", 'Code'=>"CHATEC"),
|
||||
3602 => array('Id'=>"353", 'Nom'=>"TC ISSOUDUN", 'Code'=>"ISSOUC"),
|
||||
3701 => array('Id'=>"739", 'Nom'=>"TC TOURS", 'Code'=>"TOURSC"),
|
||||
3801 => array('Id'=>"336", 'Nom'=>"TC GRENOBLE", 'Code'=>"GRENOC"),
|
||||
3802 => array('Id'=>"770", 'Nom'=>"TC VIENNE", 'Code'=>"VIENNC"),
|
||||
3851 => array('Id'=>"118", 'Nom'=>"TGIcc BOURGOIN JALLIEU", 'Code'=>"BGOING"),
|
||||
3901 => array('Id'=>"277", 'Nom'=>"TC DOLE", 'Code'=>"DOLEC"),
|
||||
3902 => array('Id'=>"403", 'Nom'=>"TC LONS LE SAUNIER", 'Code'=>"LONSC"),
|
||||
3903 => array('Id'=>"625", 'Nom'=>"TC SALINS LES BAINS", 'Code'=>"SALINC"),
|
||||
4001 => array('Id'=>"262", 'Nom'=>"TC DAX", 'Code'=>"DAXC"),
|
||||
4002 => array('Id'=>"470", 'Nom'=>"TC MONT DE MARSAN", 'Code'=>"MONTMC"),
|
||||
4101 => array('Id'=>"123", 'Nom'=>"TC BLOIS", 'Code'=>"BLOISC"),
|
||||
4102 => array('Id'=>"616", 'Nom'=>"TC ROMORANTIN", 'Code'=>"ROMORC"),
|
||||
4201 => array('Id'=>"599", 'Nom'=>"TC ROANNE", 'Code'=>"ROANNC"),
|
||||
4202 => array('Id'=>"674", 'Nom'=>"TC SAINT ETIENNE", 'Code'=>"STETIC"),
|
||||
4251 => array('Id'=>"480", 'Nom'=>"TGIcc MONTBRISON", 'Code'=>"MONTRG"),
|
||||
4301 => array('Id'=>"157", 'Nom'=>"TC BRIOUDE", 'Code'=>"BRIOUC"),
|
||||
4302 => array('Id'=>"377", 'Nom'=>"TC PUY EN VELAY", 'Code'=>"LEPUYC"),
|
||||
4401 => array('Id'=>"501", 'Nom'=>"TC NANTES", 'Code'=>"NANTEC"),
|
||||
4402 => array('Id'=>"695", 'Nom'=>"TC SAINT NAZAIRE", 'Code'=>"STNAZC"),
|
||||
4501 => array('Id'=>"482", 'Nom'=>"TC MONTARGIS", 'Code'=>"MONTSC"),
|
||||
4502 => array('Id'=>"539", 'Nom'=>"TC ORLEANS", 'Code'=>"ORLEAC"),
|
||||
4601 => array('Id'=>"165", 'Nom'=>"TC CAHORS", 'Code'=>"CAHORC"),
|
||||
4701 => array('Id'=>"5", 'Nom'=>"TC AGEN", 'Code'=>"AGENC"),
|
||||
4702 => array('Id'=>"432", 'Nom'=>"TC MARMANDE", 'Code'=>"MARMAC"),
|
||||
4703 => array('Id'=>"511", 'Nom'=>"TC NERAC", 'Code'=>"NERACC"),
|
||||
4704 => array('Id'=>"778", 'Nom'=>"TC VILLENEUVE SUR LOT", 'Code'=>"VILLNC"),
|
||||
4801 => array('Id'=>"447", 'Nom'=>"TC MENDE", 'Code'=>"MENDEC"),
|
||||
4853 => array('Id'=>"448", 'Nom'=>"TGIcc MENDE", 'Code'=>"MENDEG"),
|
||||
4901 => array('Id'=>"32", 'Nom'=>"TC ANGERS", 'Code'=>"ANGERC"),
|
||||
4902 => array('Id'=>"634", 'Nom'=>"TC SAUMUR", 'Code'=>"SAUMUC"),
|
||||
5001 => array('Id'=>"217", 'Nom'=>"TC CHERBOURG", 'Code'=>"CHERBC"),
|
||||
5002 => array('Id'=>"253", 'Nom'=>"TC COUTANCES", 'Code'=>"COUTAC"),
|
||||
5003 => array('Id'=>"330", 'Nom'=>"TC GRANVILLE", 'Code'=>"GRANVC"),
|
||||
5004 => array('Id'=>"689", 'Nom'=>"TC SAINT LO", 'Code'=>"STLOC"),
|
||||
5101 => array('Id'=>"221", 'Nom'=>"TC CHALONS EN CHAMPAGNE", 'Code'=>"CHLONC"),
|
||||
5102 => array('Id'=>"292", 'Nom'=>"TC EPERNAY", 'Code'=>"EPERNC"),
|
||||
5103 => array('Id'=>"588", 'Nom'=>"TC REIMS", 'Code'=>"REIMSC"),
|
||||
5201 => array('Id'=>"213", 'Nom'=>"TC CHAUMONT", 'Code'=>"CHAUMC"),
|
||||
5202 => array('Id'=>"363", 'Nom'=>"TC LANGRES", 'Code'=>"LANGRC"),
|
||||
5203 => array('Id'=>"671", 'Nom'=>"TC SAINT DIZIER", 'Code'=>"STDIZC"),
|
||||
5301 => array('Id'=>"371", 'Nom'=>"TC LAVAL", 'Code'=>"LAVALC"),
|
||||
5302 => array('Id'=>"439", 'Nom'=>"TC MAYENNE", 'Code'=>"MAYENC"),
|
||||
5401 => array('Id'=>"152", 'Nom'=>"TC BRIEY", 'Code'=>"BRIEYC"),
|
||||
5402 => array('Id'=>"498", 'Nom'=>"TC NANCY", 'Code'=>"NANCYC"),
|
||||
5501 => array('Id'=>"79", 'Nom'=>"TC BAR LE DUC", 'Code'=>"BARLDC"),
|
||||
5502 => array('Id'=>"758", 'Nom'=>"TC VERDUN", 'Code'=>"VERDUC"),
|
||||
5601 => array('Id'=>"406", 'Nom'=>"TC LORIENT", 'Code'=>"LORIEC"),
|
||||
5602 => array('Id'=>"754", 'Nom'=>"TC VANNES", 'Code'=>"VANNEC"),
|
||||
5751 => array('Id'=>"452", 'Nom'=>"TGIcc METZ", 'Code'=>"METZG"),
|
||||
5752 => array('Id'=>"630", 'Nom'=>"TGIcc SARREGUEMINES", 'Code'=>"SARREG"),
|
||||
5753 => array('Id'=>"724", 'Nom'=>"TGIcc THIONVILLE", 'Code'=>"THIONG"),
|
||||
5801 => array('Id'=>"230", 'Nom'=>"TC CLAMECY", 'Code'=>"CLAMEC"),
|
||||
5802 => array('Id'=>"515", 'Nom'=>"TC NEVERS", 'Code'=>"NEVERC"),
|
||||
5901 => array('Id'=>"171", 'Nom'=>"TC CAMBRAI", 'Code'=>"CAMBRC"),
|
||||
5902 => array('Id'=>"288", 'Nom'=>"TC DUNKERQUE", 'Code'=>"DUNKEC"),
|
||||
5903 => array('Id'=>"389", 'Nom'=>"TC LILLE", 'Code'=>"LILLEC"),
|
||||
5904 => array('Id'=>"617", 'Nom'=>"TC ROUBAIX TOURCOING", 'Code'=>"ROUBAC"),
|
||||
5905 => array('Id'=>"735", 'Nom'=>"TC ROUBAIX TOURCOING", 'Code'=>"TOURCC"),
|
||||
5906 => array('Id'=>"749", 'Nom'=>"TC VALENCIENNES", 'Code'=>"VALECC"),
|
||||
5910 => array('Id'=>"3340", 'Nom'=>"TC LILLE METROPOLE", 'Code'=>"LILLEM"),
|
||||
5951 => array('Id'=>"69", 'Nom'=>"TGIcc AVESNES SUR HELPE", 'Code'=>"AVESNG"),
|
||||
5952 => array('Id'=>"280", 'Nom'=>"TC DOUAI", 'Code'=>"DOUAIC"),
|
||||
5953 => array('Id'=>"347", 'Nom'=>"TGIcc HAZEBROUCK", 'Code'=>"HAZEBG"),
|
||||
6001 => array('Id'=>"96", 'Nom'=>"TC BEAUVAIS", 'Code'=>"BEAUVC"),
|
||||
6002 => array('Id'=>"243", 'Nom'=>"TC COMPIEGNE", 'Code'=>"COMPIC"),
|
||||
6003 => array('Id'=>"644", 'Nom'=>"TC SENLIS", 'Code'=>"SENLIC"),
|
||||
6101 => array('Id'=>"19", 'Nom'=>"TC ALENCON", 'Code'=>"ALENCC"),
|
||||
6102 => array('Id'=>"45", 'Nom'=>"TC ARGENTAN", 'Code'=>"ARGENC"),
|
||||
6103 => array('Id'=>"309", 'Nom'=>"TC FLERS", 'Code'=>"FLERSC"),
|
||||
6104 => array('Id'=>"360", 'Nom'=>"TC L'AIGLE", 'Code'=>"LAIGLC"),
|
||||
6105 => array('Id'=>"780", 'Nom'=>"TC VIMOUTIERS", 'Code'=>"VIMOUC"),
|
||||
6201 => array('Id'=>"51", 'Nom'=>"TC ARRAS", 'Code'=>"ARRASC"),
|
||||
6202 => array('Id'=>"137", 'Nom'=>"TC BOULOGNE SUR MER", 'Code'=>"BOULOC"),
|
||||
6203 => array('Id'=>"168", 'Nom'=>"TC CALAIS", 'Code'=>"CALAIC"),
|
||||
6204 => array('Id'=>"698", 'Nom'=>"TC SAINT OMER", 'Code'=>"STOMEC"),
|
||||
6251 => array('Id'=>"114", 'Nom'=>"TGIcc BETHUNE", 'Code'=>"BETHUG"),
|
||||
6301 => array('Id'=>"26", 'Nom'=>"TC AMBERT", 'Code'=>"AMBERC"),
|
||||
6302 => array('Id'=>"119", 'Nom'=>"TC BILLOM", 'Code'=>"BILLOC"),
|
||||
6303 => array('Id'=>"233", 'Nom'=>"TC CLERMONT FERRAND", 'Code'=>"CLFERC"),
|
||||
6304 => array('Id'=>"351", 'Nom'=>"TC ISSOIRE", 'Code'=>"ISSOIC"),
|
||||
6305 => array('Id'=>"596", 'Nom'=>"TC RIOM", 'Code'=>"RIOMC"),
|
||||
6306 => array('Id'=>"722", 'Nom'=>"TC THIERS", 'Code'=>"THIERC"),
|
||||
6401 => array('Id'=>"91", 'Nom'=>"TC BAYONNE", 'Code'=>"BAYONC"),
|
||||
6402 => array('Id'=>"536", 'Nom'=>"TC OLORON SAINTE MARIE", 'Code'=>"OLOROC"),
|
||||
6403 => array('Id'=>"551", 'Nom'=>"TC PAU", 'Code'=>"PAUC"),
|
||||
6501 => array('Id'=>"76", 'Nom'=>"TC BAGNERES DE BIGORRE", 'Code'=>"BAGNEC"),
|
||||
6502 => array('Id'=>"718", 'Nom'=>"TC TARBES", 'Code'=>"TARBEC"),
|
||||
6601 => array('Id'=>"559", 'Nom'=>"TC PERPIGNAN", 'Code'=>"PERPIC"),
|
||||
6751 => array('Id'=>"637", 'Nom'=>"TGIcc SAVERNE", 'Code'=>"SAVERG"),
|
||||
6752 => array('Id'=>"709", 'Nom'=>"TGIcc STRASBOURG", 'Code'=>"STRASG"),
|
||||
6851 => array('Id'=>"239", 'Nom'=>"TGIcc COLMAR", 'Code'=>"COLMAG"),
|
||||
6852 => array('Id'=>"494", 'Nom'=>"TGIcc MULHOUSE", 'Code'=>"MULHOG"),
|
||||
6901 => array('Id'=>"415", 'Nom'=>"TC LYON", 'Code'=>"LYONC"),
|
||||
6902 => array('Id'=>"775", 'Nom'=>"TC VILLEFRANCHE SUR SAONE", 'Code'=>"VILLFC"),
|
||||
6903 => array('Id'=>"779", 'Nom'=>"TC VILLEFRANCHE-TARARE", 'Code'=>"VILTAC"),
|
||||
7001 => array('Id'=>"334", 'Nom'=>"TC GRAY", 'Code'=>"GRAYC"),
|
||||
7051 => array('Id'=>"413", 'Nom'=>"TGIcc LURE", 'Code'=>"LUREG"),
|
||||
7052 => array('Id'=>"766", 'Nom'=>"TC VESOUL GRAY", 'Code'=>"VESOUC"),
|
||||
7101 => array('Id'=>"62", 'Nom'=>"TC AUTUN", 'Code'=>"AUTUNC"),
|
||||
7102 => array('Id'=>"191", 'Nom'=>"TC CHALON SUR SAONE", 'Code'=>"CHALOC"),
|
||||
7103 => array('Id'=>"197", 'Nom'=>"TC CHAROLLES", 'Code'=>"CHAROC"),
|
||||
7104 => array('Id'=>"258", 'Nom'=>"TC LE CREUSOT", 'Code'=>"CREUSC"),
|
||||
7105 => array('Id'=>"409", 'Nom'=>"TC LOUHANS", 'Code'=>"LOUHAC"),
|
||||
7106 => array('Id'=>"418", 'Nom'=>"TC MACON", 'Code'=>"MACONC"),
|
||||
7107 => array('Id'=>"737", 'Nom'=>"TC TOURNUS", 'Code'=>"TOURNC"),
|
||||
7201 => array('Id'=>"421", 'Nom'=>"TC MAMERS", 'Code'=>"MAMERC"),
|
||||
7202 => array('Id'=>"427", 'Nom'=>"TC LE MANS", 'Code'=>"MANSC"),
|
||||
7301 => array('Id'=>"194", 'Nom'=>"TC CHAMBERY", 'Code'=>"CHAMBC"),
|
||||
7351 => array('Id'=>"14", 'Nom'=>"TGIcc ALBERTVILLE", 'Code'=>"ALBERG"),
|
||||
7401 => array('Id'=>"1814", 'Nom'=>"TC ANNECY", 'Code'=>"ANNECC"),
|
||||
7402 => array('Id'=>"1815", 'Nom'=>"TC THONON LES BAINS", 'Code'=>"THONOC"),
|
||||
7451 => array('Id'=>"38", 'Nom'=>"TGIcc ANNECY", 'Code'=>"ANNECG"),
|
||||
7452 => array('Id'=>"129", 'Nom'=>"TGIcc BONNEVILLE", 'Code'=>"BONNEG"),
|
||||
7454 => array('Id'=>"727", 'Nom'=>"TGIcc THONON LES BAINS", 'Code'=>"THONOG"),
|
||||
7501 => array('Id'=>"547", 'Nom'=>"TC PARIS", 'Code'=>"PARISC"),
|
||||
7601 => array('Id'=>"267", 'Nom'=>"TC DIEPPE", 'Code'=>"DIEPPC"),
|
||||
7602 => array('Id'=>"290", 'Nom'=>"TC ELBEUF", 'Code'=>"ELBEUC"),
|
||||
7603 => array('Id'=>"298", 'Nom'=>"TC EULET", 'Code'=>"EULETC"),
|
||||
7604 => array('Id'=>"307", 'Nom'=>"TC FECAMP (de terre et de mer)", 'Code'=>"FECAMC"),
|
||||
7605 => array('Id'=>"329", 'Nom'=>"TC GOURNAY EN BRAY", 'Code'=>"GOURNC"),
|
||||
7606 => array('Id'=>"345", 'Nom'=>"TC LE HAVRE", 'Code'=>"HAVREC"),
|
||||
7607 => array('Id'=>"513", 'Nom'=>"TC NEUFCHATEL EN BRAY", 'Code'=>"NEUFCC"),
|
||||
7608 => array('Id'=>"619", 'Nom'=>"TC ROUEN", 'Code'=>"ROUENC"),
|
||||
7609 => array('Id'=>"712", 'Nom'=>"TC SAINT VALERY EN CAUX", 'Code'=>"STVACC"),
|
||||
7701 => array('Id'=>"441", 'Nom'=>"TC MEAUX", 'Code'=>"MEAUXC"),
|
||||
7702 => array('Id'=>"444", 'Nom'=>"TC MELUN", 'Code'=>"MELUNC"),
|
||||
7703 => array('Id'=>"463", 'Nom'=>"TC MONTEREAU", 'Code'=>"MONTEC"),
|
||||
7704 => array('Id'=>"581", 'Nom'=>"TC PROVINS", 'Code'=>"PROVIC"),
|
||||
7801 => array('Id'=>"304", 'Nom'=>"TC EVRY", 'Code'=>"EVRYC"),
|
||||
7802 => array('Id'=>"572", 'Nom'=>"TC PONTOISE", 'Code'=>"PONTOC"),
|
||||
7803 => array('Id'=>"761", 'Nom'=>"TC VERSAILLES", 'Code'=>"VERSAC"),
|
||||
7901 => array('Id'=>"525", 'Nom'=>"TC NIORT", 'Code'=>"NIORTC"),
|
||||
7951 => array('Id'=>"143", 'Nom'=>"TGIcc BRESSUIRE", 'Code'=>"BRESSG"),
|
||||
8001 => array('Id'=>"2", 'Nom'=>"TC ABBEVILLE", 'Code'=>"ABBEVC"),
|
||||
8002 => array('Id'=>"28", 'Nom'=>"TC AMIENS", 'Code'=>"AMIENC"),
|
||||
8003 => array('Id'=>"713", 'Nom'=>"TC SAINT VALERY S/ SOMME", 'Code'=>"STVASC"),
|
||||
8053 => array('Id'=>"557", 'Nom'=>"TGIcc PERONNE", 'Code'=>"PERONG"),
|
||||
8101 => array('Id'=>"16", 'Nom'=>"TC ALBI", 'Code'=>"ALBIC"),
|
||||
8102 => array('Id'=>"182", 'Nom'=>"TC CASTRES", 'Code'=>"CASTRC"),
|
||||
8201 => array('Id'=>"473", 'Nom'=>"TC MONTAUBAN", 'Code'=>"MONTNC"),
|
||||
8301 => array('Id'=>"155", 'Nom'=>"TC BRIGNOLES", 'Code'=>"BRIGNC"),
|
||||
8302 => array('Id'=>"283", 'Nom'=>"TC DRAGUIGNAN", 'Code'=>"DRAGUC"),
|
||||
8303 => array('Id'=>"323", 'Nom'=>"TC FREJUS", 'Code'=>"FREJUC"),
|
||||
8304 => array('Id'=>"711", 'Nom'=>"TC SAINT TROPEZ", 'Code'=>"STTROC"),
|
||||
8305 => array('Id'=>"730", 'Nom'=>"TC TOULON", 'Code'=>"TOULOC"),
|
||||
8401 => array('Id'=>"71", 'Nom'=>"TC AVIGNON", 'Code'=>"AVIGNC"),
|
||||
8452 => array('Id'=>"178", 'Nom'=>"TGIcc CARPENTRAS", 'Code'=>"CARPEG"),
|
||||
8501 => array('Id'=>"609", 'Nom'=>"TC LA ROCHE SUR YON", 'Code'=>"ROCHYC"),
|
||||
8601 => array('Id'=>"228", 'Nom'=>"TC CHATELLERAULT", 'Code'=>"CHTLTC"),
|
||||
8602 => array('Id'=>"567", 'Nom'=>"TC POITIERS", 'Code'=>"POITIC"),
|
||||
8701 => array('Id'=>"392", 'Nom'=>"TC LIMOGES", 'Code'=>"LIMOGC"),
|
||||
8801 => array('Id'=>"294", 'Nom'=>"TC EPINAL", 'Code'=>"EPINAC"),
|
||||
8802 => array('Id'=>"458", 'Nom'=>"TC MIRECOURT", 'Code'=>"MIRECC"),
|
||||
8803 => array('Id'=>"668", 'Nom'=>"TC SAINT DIE", 'Code'=>"STDIEC"),
|
||||
8901 => array('Id'=>"64", 'Nom'=>"TC AUXERRE", 'Code'=>"AUXERC"),
|
||||
8902 => array('Id'=>"355", 'Nom'=>"TC JOIGNY", 'Code'=>"JOIGNC"),
|
||||
8903 => array('Id'=>"647", 'Nom'=>"TC SENS", 'Code'=>"SENSC"),
|
||||
9001 => array('Id'=>"99", 'Nom'=>"TC BELFORT", 'Code'=>"BELFOC"),
|
||||
9101 => array('Id'=>"248", 'Nom'=>"TC CORBEIL ESSONNES", 'Code'=>"CORBEC"),
|
||||
9201 => array('Id'=>"504", 'Nom'=>"TC NANTERRE", 'Code'=>"NANTRC"),
|
||||
9301 => array('Id'=>"126", 'Nom'=>"TC BOBIGNY", 'Code'=>"BOBIGC"),
|
||||
9401 => array('Id'=>"256", 'Nom'=>"TC CRETEIL", 'Code'=>"CRETEC"),
|
||||
9711 => array('Id'=>"84", 'Nom'=>"TMX BASSE-TERRE", 'Code'=>"BASSEM"),
|
||||
9712 => array('Id'=>"565", 'Nom'=>"TMX POINTE-A-PITRE", 'Code'=>"POINTM"),
|
||||
9721 => array('Id'=>"321", 'Nom'=>"TMX FORT DE FRANCE", 'Code'=>"FORTFM"),
|
||||
9731 => array('Id'=>"187", 'Nom'=>"TMX CAYENNE", 'Code'=>"CAYENM"),
|
||||
9741 => array('Id'=>"666", 'Nom'=>"TMX SAINT DENIS DE LA REUNION", 'Code'=>"STDENM"),
|
||||
9742 => array('Id'=>"1816", 'Nom'=>"TMX SAINT PIERRE DE LA REUNION", 'Code'=>"STPIEM"),
|
||||
);
|
@ -1,473 +0,0 @@
|
||||
<?
|
||||
|
||||
class MLiens {
|
||||
|
||||
public $siren=0;
|
||||
|
||||
private $tabChars=array('é'=>'é', 'ç'=>'ç','è'=>'è','à '=>'à');
|
||||
|
||||
private static $tabFct=array( 'ADM'=>'Administrateur',
|
||||
'ASS'=>'Associé',
|
||||
'COG'=>'Co-gérant',
|
||||
'CON'=>'Contrôleur de gestion',
|
||||
'DID'=>'Directeur Général Délégué',
|
||||
'DIR'=>'Directeur',
|
||||
'GER'=>'Gérant',
|
||||
'PCS'=>'Président du Conseil de Surveillance',
|
||||
'PDG'=>'Président Directeur Général',
|
||||
'PP'=>'Personne Physique',
|
||||
'PRD'=>'Président du directoire',
|
||||
'PRE'=>'Président du Conseil d\'Administration',
|
||||
'VIC'=>'Vice président du CA ou Surv.',
|
||||
);
|
||||
|
||||
public function __construct($siren) {
|
||||
$this->siren=$siren;
|
||||
}
|
||||
|
||||
/** Retourne les actionnaires du siren
|
||||
** @param int Siren de l'entreprise
|
||||
** @return array Tableau d'actionnaires
|
||||
**/
|
||||
public function getActionnaires($siren=false, $actifsUniquement=true) {
|
||||
if (!$siren) $siren=$this->siren;
|
||||
$iDb=new WDB();
|
||||
$tab=$iDb->select('liens', 'Siren1, ActionPart, Pmin, Pmax, MajMin, PpPm, Siren2, RaisonSociale, Pays, actif, source', "Siren1='$siren' AND ActionPart=1 ORDER BY source DESC, actif DESC, Pmin DESC", true, MYSQL_ASSOC);
|
||||
//$tabActiDB=mysql_select('dbo_liens_fi', 'SirenEntite, NomAdresse, PourcentageDetenu, Ville, Lien, MAJLien, MAJImport', "Siren='$siren' AND CodeLien='AC' ORDER BY PourcentageDetenu DESC");
|
||||
//@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "Debug $siren ($actifsUniquement)", print_r($tab,true)) ;
|
||||
$sourcePre=false;
|
||||
$tabRet=array();
|
||||
foreach ($tab as $i=>$lien) {
|
||||
if ($lien['source']>=1700 && $lien['source']<=1720) $source=1700;
|
||||
else $source=$lien['source'];
|
||||
if ($i>0 && $sourcePre<>$source) break;
|
||||
/*if ($actifsUniquement && $lien['actif']==0) continue;
|
||||
else
|
||||
$tabRet[]=array('Pmin' => number_format($lien['Pmin']*1,2,',',''),
|
||||
'MajMin' => $lien['MajMin'],
|
||||
'RaisonSociale' => strtr($lien['RaisonSociale'],$this->tabChars),
|
||||
'Pays' => $lien['libPays'],
|
||||
'Siren' => $lien['Siren2'],
|
||||
'Actif' => $lien['actif']);*/
|
||||
if ($actifsUniquement && $lien['actif']==0) continue;
|
||||
else {
|
||||
$codPays=strtoupper($lien['Pays']);
|
||||
$libPays='';
|
||||
if ($codPays<>'' && $codPays<>'FRA') {
|
||||
$tmp=$iDb->select('tabPays', 'libPays', "codPays3='$codPays'", true, MYSQL_ASSOC);
|
||||
$libPays=$tmp[0]['libPays'];
|
||||
}
|
||||
if ($lien['MajMin']=='F') $majMin='A';
|
||||
else $majMin=$lien['MajMin'];
|
||||
$tabRet[]=array( 'Pmin' => number_format($lien['Pmin']*1,2,',',''),
|
||||
'MajMin' => $majMin,
|
||||
'RaisonSociale' => strtr($lien['RaisonSociale'],$this->tabChars),
|
||||
'Pays' => $libPays,
|
||||
'Siren' => $lien['Siren2'],
|
||||
'Actif' => $lien['actif']);
|
||||
}
|
||||
$sourcePre=$source;
|
||||
}
|
||||
|
||||
if (count($tabRet)==0) {
|
||||
$iInsee=new MInsee();
|
||||
$tabTmp=$iInsee->getIdentiteLight($siren);
|
||||
switch ($tabTmp['FJ']*1) {
|
||||
case 7111:
|
||||
case 7113:
|
||||
case 7120:
|
||||
case 7150:
|
||||
case 7160:
|
||||
case 7171:
|
||||
case 7172:
|
||||
case 7179:
|
||||
case 7190:
|
||||
case 7229:
|
||||
case 7331:
|
||||
case 7349:
|
||||
case 7351:
|
||||
case 7352:
|
||||
case 7364:
|
||||
case 7365:
|
||||
case 7366:
|
||||
case 7371:
|
||||
case 7372:
|
||||
case 7373:
|
||||
case 7379:
|
||||
case 7381:
|
||||
case 7382:
|
||||
case 7383:
|
||||
case 7384:
|
||||
case 7385:
|
||||
case 7389:
|
||||
case 7410:
|
||||
case 7430:
|
||||
case 7450:
|
||||
case 7490:
|
||||
$tabRet[]=array('Pmin' => 0,
|
||||
'MajMin' => '+',
|
||||
'RaisonSociale' => 'ETAT FRANCAIS',
|
||||
'Pays' => '',
|
||||
'Siren' => 0,
|
||||
'Actif' => 1);
|
||||
break;
|
||||
case 7210: // Communes
|
||||
// Siren Commune du Lamentin : 219 722 139
|
||||
// ~~~ ~~~~
|
||||
$dept=substr($siren,2,2);
|
||||
$comm=substr($siren,5,3);
|
||||
$codeInsee=$dept.$comm;
|
||||
if ($dept<>'20') // Corse
|
||||
$strCodeInsee="codeInsee='$codeInsee'";
|
||||
else
|
||||
$strCodeInsee="codeInsee IN ('2A$comm','2B$comm','20$comm') ";
|
||||
|
||||
$tmp=$iDb->select('insee.insee_tabVillesEpci', 'typEPCI, codEPCI, libEPCI, libCommune', $strCodeInsee, true, MYSQL_ASSOC);
|
||||
$tabCC=$tmp[0];
|
||||
switch($tabCC['typEPCI']) {
|
||||
case 'CA': $typeCC="Communauté d'agglomérations"; break; // CJ=7348
|
||||
case 'CC': $typeCC="Communauté de communes"; break; // CJ=7346
|
||||
case 'CU': $typeCC="Communauté urbaine"; break; // CJ=73
|
||||
case 'SAN': $typeCC="Syndicat d'agglomérations nouvelles"; break; // CJ=73
|
||||
default: $typeCC='';
|
||||
}
|
||||
$tabRet[]=array('Pmin' => 0,
|
||||
'MajMin' => '+',
|
||||
'RaisonSociale' => strtoupper($typeCC.' '.preg_replace('/^(CA|CC|CU|SAN) /Uis', '',$tabCC['libEPCI'])),
|
||||
'Pays' => '',
|
||||
'Siren' => $tabCC['codEPCI'],
|
||||
'Actif' => 1);
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if (count($tabRet)==0) {
|
||||
$iInsee=new MInsee();
|
||||
$tabTmp=$iInsee->getIdentiteLight($siren);
|
||||
$fj=$tabTmp['FJ']*1;
|
||||
if ($fj==5498) $strFonctions=",'Gérant'";
|
||||
else $strFonctions='';
|
||||
$adresse=end(explode(' ', $tabTmp['AdresseVoie']));
|
||||
$codePostal=$tabTmp['CP'];
|
||||
$tab=$iDb->select('rncs_dirigeants', 'typeDir, raisonSociale, dirSiren, dirRS, civilite, nom, prenom, actif, naissance_nom, naissance_date, naissance_lieu, nat, adresse, fonction_code, fonction_lib, source, cinf',
|
||||
"siren='$siren' AND fonction_lib IN ('Associé-gérant' $strFonctions)", true, MYSQL_ASSOC);
|
||||
$majMin='+';
|
||||
if (count($tab)>1) $majMin='-';
|
||||
foreach ($tab as $i=>$lien) {
|
||||
if ($actifsUniquement && $lien['actif']==0) continue;
|
||||
else {
|
||||
$ville=$siege=$actif='';
|
||||
$deb=$siren2=0;
|
||||
$nbRep=$maxRep=200;
|
||||
$pertinence=$avecSiren=true;
|
||||
|
||||
$etabs=$iInsee->rechercheEtab($lien['nom'].' '.$lien['prenom'], $adresse, $codePostal, $ville, $siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren);
|
||||
$tabSiren=array();
|
||||
foreach ($etabs['reponses'] as $etab) {
|
||||
$tabTmp=preg_split('/( +|\/|\*)/', $etab['Nom']);
|
||||
$rsEtab=$tabTmp[0];
|
||||
$tabTmp=preg_split('/( +|\/|\*)/', $lien['nom']);
|
||||
$rsLien=$tabTmp[0];
|
||||
if ($etab['FJ']==1800 && $rsEtab==$rsLien)
|
||||
$tabSiren[]=$etab['Siren'];
|
||||
}
|
||||
/*
|
||||
'Nom'=>prepareString(strtr($etab['Nom'],'/*',' ')),
|
||||
'Nom2'=>prepareString($etab['Nom2']),
|
||||
'Sigle'=>prepareString($etab['Sigle']),
|
||||
'Enseigne'=>prepareString($etab['Enseigne']),
|
||||
'Adresse'=>prepareString($etab['Adresse']),
|
||||
'CP'=>$etab['CP'],
|
||||
'Ville'=>prepareString($etab['Ville']),
|
||||
'Tel'=>$etab['Tel'],
|
||||
'Fax'=>$etab['Fax'],
|
||||
'Nic'=>$etab['Nic'],
|
||||
'Actif'=>$etab['Actif'],
|
||||
'NafEtab'=>$etab['NafEtab'], // Etablissement
|
||||
'NafEtabLib'=>prepareString($etab['NafEtabLib']),
|
||||
'NafEnt'=>$etab['NafEnt'], // Entreprise
|
||||
'NafEntLib'=>prepareString($etab['NafEntLib']),*/
|
||||
$tabSiren2=array_unique($tabSiren);
|
||||
if (count($tabSiren2==1)) $siren2=end($tabSiren2);
|
||||
else $siren2=$lien['dirSiren'];
|
||||
if ($lien['civilite']=='MME') $genre='Madame';
|
||||
elseif ($lien['civilite']=='M') $genre='Monsieur';
|
||||
else $genre='';
|
||||
$tabRet[]=array( 'Pmin' => 0,
|
||||
'MajMin' => $majMin,
|
||||
'RaisonSociale' => trim(preg_replace('/ +/', ' ', $lien['dirRS'].' '.$genre.' '.$lien['nom'].' '.$lien['prenom'])),
|
||||
'Pays' => '',
|
||||
'Siren' => $siren2,
|
||||
'Actif' => $lien['actif']);
|
||||
if ($siren2*1>0) {
|
||||
/** Insertion du lien en base **/
|
||||
$nom=$pays=$dateMAJ='';
|
||||
$ppPm='P';
|
||||
$pct=0;
|
||||
$entrep2=$iInsee->getIdentiteLight($siren);
|
||||
$nom2=$entrep2['Nom'];
|
||||
$pays2='FRA';
|
||||
if (substr($entrep2['FJ'],0,1)*1<>1) $ppPm='M';
|
||||
$entrep=$iInsee->getIdentiteLight($siren2);
|
||||
$nom=strtr($entrep['Nom'],'/*',' ');
|
||||
$pays='FRA';
|
||||
$tabUpdate=array( 'Pmin'=> $pct,
|
||||
'Pmax'=> $pct,
|
||||
'MajMin'=> $majMin,
|
||||
'PpPm'=> $ppPm,
|
||||
'dateLien'=> $dateMAJ,
|
||||
);
|
||||
/* Insertion de l'actionnaire */
|
||||
$tabInsert1=array_merge($tabUpdate, array( 'ActionPart'=>1),
|
||||
array( 'Siren1'=> $siren,
|
||||
'Siren2'=> $siren2,
|
||||
'RaisonSociale'=> $nom,
|
||||
'Pays'=> $pays,
|
||||
'actif'=> 1,
|
||||
'source'=> 1600,
|
||||
'dateInsert'=> date('YmdHis')));
|
||||
$res=$iDb->select('liens', 'count(*)', "Siren1=$siren AND (Siren2=$siren2 OR (RaisonSociale='".addslashes($nom)."' AND Pays='$pays'))");
|
||||
if ($res[0][0]>0) {
|
||||
if (!$iDb->update('liens', array_merge($tabUpdate,array('ActionPart'=>1)), "siren=$siren AND (Siren2=$siren2 OR (RaisonSociale='".addslashes($nom)."' AND Pays='$pays'))", true))
|
||||
$errMaj=1016166;
|
||||
} else {
|
||||
if (!$iDb->insert('liens', $tabInsert1, true))
|
||||
$errMaj=1016167;
|
||||
}
|
||||
|
||||
/* Insertion de la participation pour l'actionnaire précédent */
|
||||
$tabInsert2=array_merge($tabUpdate, array( 'ActionPart'=>2),
|
||||
array( 'Siren1'=> $siren2,
|
||||
'Siren2'=> $siren,
|
||||
'RaisonSociale'=> $nom2,
|
||||
'Pays'=> $pays2,
|
||||
'actif'=> 1,
|
||||
'source'=> 1600,
|
||||
'dateInsert'=> date('YmdHis')));
|
||||
$res=$iDb->select('liens', 'count(*)', "Siren1=$siren2 AND (Siren2=$siren OR (RaisonSociale='$nom2' AND Pays='$pays2'))");
|
||||
if ($res[0][0]>0) {
|
||||
if (!$iDb->update('liens', array_merge($tabUpdate,array('ActionPart'=>2)), "siren=$siren2 AND (Siren2=$siren OR (RaisonSociale='".addslashes($nom2)."' AND Pays='$pays2'))", true))
|
||||
$errMaj=1016168;
|
||||
} else {
|
||||
if (!$iDb->insert('liens', $tabInsert2, true))
|
||||
$errMaj=1016169;
|
||||
}
|
||||
|
||||
/** Insertion du dirigeant pour l'actionnaire en base **/
|
||||
$dirs=$iDb->select('rncs_dirigeants','siren', "siren=$siren2", true, MYSQL_ASSOC);
|
||||
if (count($dirs)==0) {
|
||||
$iDb->insert('rncs_dirigeants', array( 'siren' => $siren2,
|
||||
'raisonSociale' => $nom,
|
||||
'civilite' => $lien['civilite'],
|
||||
'typeDir' => $lien['typeDir'],
|
||||
'dirRS' => $siren2,
|
||||
'nom' => $lien['nom'],
|
||||
'prenom' => $lien['prenom'],
|
||||
'naissance_nom' => $lien['naissance_nom'],
|
||||
'naissance_date'=> $lien['naissance_date'],
|
||||
'naissance_lieu'=> $lien['naissance_lieu'],
|
||||
'nat' => $lien['nat'],
|
||||
'fonction_code' => 0,
|
||||
'fonction_lib' => 'Personne Physique',
|
||||
'actif' => 1,
|
||||
'dateInsert' => date('YmdHis'),
|
||||
'source' => 'lag', // Lien Associé Gérant
|
||||
'cinf' => $lien['cinf'],
|
||||
), true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
//@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "Debug Fin $siren ($actifsUniquement)", print_r($tabRet,true)) ;
|
||||
return $tabRet;
|
||||
}
|
||||
|
||||
/** Retourne les participations du siren
|
||||
** @param int Siren de l'entreprise
|
||||
** @return array Tableau de participations
|
||||
**/
|
||||
public function getParticipations($siren=false, $actifsUniquement=true) {
|
||||
if (!$siren) $siren=$this->siren;
|
||||
$iDb=new WDB();
|
||||
$tab=$iDb->select('liens LEFT JOIN tabPays ON codPays3=Pays', 'Siren1, ActionPart, Pmin, Pmax, MajMin, PpPm, Siren2, RaisonSociale, Pays, libPays, actif, source', "Siren1='$siren' AND ActionPart=2 ORDER BY source DESC, actif DESC, Pmin DESC", true, MYSQL_ASSOC); // OR Siren2='$siren
|
||||
// $tabPartDB=mysql_select('dbo_liens_fi', 'SirenEntite, NomAdresse, PourcentageDetenu, Ville, Lien, MAJLien, MAJImport', "Siren='$siren' AND CodeLien='PA' ORDER BY PourcentageDetenu DESC");
|
||||
$tabRet=array();
|
||||
$sourcePre=false;
|
||||
foreach ($tab as $i=>$lien) {
|
||||
if ($lien['source']>=500 && $lien['source']<=520) $source=500;
|
||||
else $source=$lien['source'];
|
||||
if ($i>0 && $sourcePre<>$source) break;
|
||||
if ($actifsUniquement && $lien['actif']==0) continue;
|
||||
else
|
||||
$tabRet[]=array('Pmin' => number_format($lien['Pmin']*1,2,',',''),
|
||||
'MajMin' => $lien['MajMin'],
|
||||
'RaisonSociale' => strtr($lien['RaisonSociale'],$this->tabChars),
|
||||
'Pays' => $lien['libPays'],
|
||||
'Siren' => $lien['Siren2'],
|
||||
'Actif' => $lien['actif']);
|
||||
$sourcePre=$source;
|
||||
}
|
||||
|
||||
if (count($tabRet)==0) {
|
||||
$iInsee=new MInsee();
|
||||
$tabTmp=$iInsee->getIdentiteLight($siren);
|
||||
switch ($tabTmp['FJ']*1) {
|
||||
case 7346: // Communaute de communes
|
||||
case 7348: // Communaute d'agglomeration
|
||||
//case 'CC': $typeCC="Communauté de communes"; break; // CJ=73
|
||||
//case 'CU': $typeCC="Communauté urbaine"; break; // CJ=73
|
||||
//case 'SAN': $typeCC="Syndicat d'agglomérations nouvelles"; break; // CJ=73
|
||||
$tmp=$iDb->select('insee.insee_tabVillesEpci', 'typEPCI, libEPCI, codeInsee, libCommune', "codEPCI='$siren'", true, MYSQL_ASSOC);
|
||||
|
||||
@sendMail('production@scores-decisions.com', 'ylenaour@scores-decisions.com', "Debug Fin $siren ($actifsUniquement)", print_r($tmp, true)) ;
|
||||
|
||||
foreach ($tmp as $tabCom) {
|
||||
$dept=substr($tabCom['codeInsee'],0,2);
|
||||
if ($dept=='2A' || $dept=='2B' || $dept=='20')
|
||||
$dept='200';
|
||||
elseif ($dept*1>95)
|
||||
$dept=substr($tabCom['codeInsee'],0,3);
|
||||
else
|
||||
$dept=$dept.'0';
|
||||
$comm=substr($tabCom['codeInsee'],2,3);
|
||||
for ($iSir=0; $iSir<10; $iSir++) {
|
||||
$sirenCom='21'.$dept.$comm.$iSir;
|
||||
if ($iInsee->valideSiren($sirenCom)) break;
|
||||
}
|
||||
$tabRet[]=array('Pmin' => 0,
|
||||
'MajMin' => '+',
|
||||
'RaisonSociale' => 'COMMUNE DE '.strtoupper($tabCom['libCommune']),
|
||||
'Pays' => '',
|
||||
'Siren' => $sirenCom,
|
||||
'Actif' => 1);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return $tabRet;
|
||||
}
|
||||
|
||||
public function getLiens($siren=false) {
|
||||
$tabA=$this->getActionnaires($siren);
|
||||
$tabP=$this->getParticipations($siren);
|
||||
return array( 'actionnaires'=>$tabA,
|
||||
'participations'=>$tabP);
|
||||
}
|
||||
|
||||
|
||||
private function getLiensPartenaires($siren=false) {
|
||||
if (!$siren) $siren=$this->siren;
|
||||
/** Le partenaire pour les liens Actionnaires/Participations est infobilan.decideur.com
|
||||
**/
|
||||
$urlRacine='http://infobilan.decideur.com/';
|
||||
$tabPost=array( 'choix'=>'1',
|
||||
'pagePrecedente'=>'recherche_entreprise.html',
|
||||
'nomsocRech'=>'',
|
||||
'cpRech'=>'',
|
||||
'villeRech'=>'',
|
||||
'nomdirRech'=>'',
|
||||
'predirRech'=>'',
|
||||
'sirenRech'=>$this->siren,
|
||||
'telRech'=>'',
|
||||
'Rechercher.x'=>round(79),
|
||||
'Rechercher.y'=>round(19),);
|
||||
$url=$urlRacine.'liste_result.html';
|
||||
$referer=$urlRacine.'recherche_entreprise.html';
|
||||
$page=getUrl($url,'', $tabPost, $referer, false, 'infobilan.decideur.com');
|
||||
$this->body=$page['body'];
|
||||
$strCookie=$page['header']['Set-Cookie'];
|
||||
$refererInfoD=$url;
|
||||
|
||||
if(preg_match_all('/<a href="choix_pdt\.html\?(.*)" class="tt1">(.*)<\/a><\/span><br>/i', $page['body'], $matches))
|
||||
{
|
||||
$urlInfoD=$urlRacine.'choix_pdt.html?'.$matches[1][0];
|
||||
$page=getUrl($urlInfoD,$strCookie,'', $refererInfoD, false, 'infobilan.decideur.com');
|
||||
$referer=$urlInfoD;
|
||||
if ($this->nscrl==0) $this->nscrl=@getTextInHtml($url, 'nscrlP=', '=','&');
|
||||
|
||||
$url=$urlRacine.'fiche_ident.html';
|
||||
$page=getUrl($url,$strCookie,'', $referer, false, 'infobilan.decideur.com');
|
||||
$this->body=$page['body'];
|
||||
|
||||
if ($this->raisonSociale=='')
|
||||
$this->raisonSociale=trim(@getTextInHtml($this->body, '<span class="libelle2">Société', ' :', '</span>'));
|
||||
|
||||
if ($this->adresse=='')
|
||||
$this->adresse=trim(@getTextInHtml($this->body, '<span class="libelle2">Adresse</span> <strong>:', '</strong>', '</td>'));
|
||||
|
||||
if ($this->tel=='')
|
||||
$this->tel=trim(@getTextInHtml($this->body, '<td valign="top"><span class="libelle2">Tél', '</span>', '<br>'));
|
||||
if ($this->fax=='')
|
||||
$this->fax=trim(@getTextInHtml($this->body, '<span class="libelle2">Fax</span>', ' :', '<br>'));
|
||||
if ($this->web=='')
|
||||
$this->web=trim(@getTextInHtml($this->body, '<span class="libelle2">Site Web</span>', '<a href="', '" target="_blank">'));
|
||||
if ($this->mail=='')
|
||||
$this->mail=trim(@getTextInHtml($this->body, '<span class="libelle2">E-mail</span>', '<a href="mailto:', '">'));
|
||||
if ($this->naf=='')
|
||||
$this->naf=trim(@getTextInHtml($this->body, '<span class="libelle2">Code NAF</span>', ' :', '</td>'));
|
||||
|
||||
if(preg_match('/<td valign="top"><span class="libelle2">Capital social<\/span> : (\d*)(.*)<br>/isU', $this->body, $matches)
|
||||
&& ($this->capitalMontant=='' || $this->capitalDevise=='')) {
|
||||
$this->capitalMontant=trim($matches[1]);
|
||||
$this->capitalDevise=trim($matches[2]);
|
||||
}
|
||||
|
||||
if ($this->fj=='')
|
||||
$this->fj=trim(@getTextInHtml($this->body, '<span class="libelle2">Forme juridique</span>', ' :', '<br>'));
|
||||
if ($this->nationalite=='')
|
||||
$this->nationalite=trim(@getTextInHtml($this->body, '<span class="libelle2">Nationalité</span>', ' :', '</td>'));
|
||||
if ($this->effectif=='')
|
||||
$this->effectif=trim(@getTextInHtml($this->body, '<td valign="top"><span class="libelle2">Effectif</span>', ' :', '<br>'));
|
||||
if ($this->activite=='')
|
||||
$this->activite=trim(@getTextInHtml($this->body, '<span class="libelle2">Activité</span>', ' :', '<br>'));
|
||||
|
||||
/** Actionnaires **/
|
||||
$strTmp=trim(@getTextInHtml($this->body, 'ACTIONNAIRES<br>', '</div></h1>', '<h1>'));
|
||||
if(preg_match_all('/<p><span class="libelle2">(.*)<\/span> - <span class="libelle2">Participation<\/span> : (.*) %<br>(.*)<\/p>/isU', $strTmp, $matches)) {
|
||||
foreach ($matches[1] as $i=>$nom) {
|
||||
$this->tabAct[$i]['nom']=trim($nom);
|
||||
$this->tabAct[$i]['pct']=trim($matches[2][$i]);
|
||||
$this->tabAct[$i]['rcs']=trim(str_replace('RCS : ','',strip_tags($matches[3][$i])));
|
||||
}
|
||||
}
|
||||
|
||||
/** Filiales **/
|
||||
$strTmp=trim(@getTextInHtml($this->body, 'FILIALES<br>', '</div></h1>', '<h1>'));
|
||||
if(preg_match_all('/<p><span class="libelle2">(.*)<\/span> - <span class="libelle2">Participation<\/span> :(.*)%<br>(.*)<\/p>/isU', $strTmp, $matches)) {
|
||||
foreach ($matches[1] as $i=>$nom) {
|
||||
$this->tabFil[$i]['nom']=trim($nom);
|
||||
$this->tabFil[$i]['pct']=trim($matches[2][$i]);
|
||||
$this->tabFil[$i]['rcs']=trim(str_replace('RCS :','',strip_tags($matches[3][$i])));
|
||||
}
|
||||
}
|
||||
|
||||
/** CA et Résultat **/
|
||||
$strTmp=trim(@getTextInHtml($this->body, '<h1>PRINCIPAUX ELEMENTS FINANCIERS<br>', '</div></h1>', '</p>'));
|
||||
if(preg_match('/<p><span class="libelle2">CA (.*)<\/span>(.*)<br>/isU', $strTmp, $matches)) {
|
||||
$this->derExerciceAnnee=trim($matches[1]);
|
||||
$this->derExerciceCA=trim(str_replace(':',' ', $matches[2]));
|
||||
}
|
||||
if(preg_match('/<span class="libelle2">Résultat(.*)<\/span>(.*)$/isU', $strTmp, $matches)) {
|
||||
$this->derExerciceResultat=trim(str_replace(':',' ', $matches[2]));
|
||||
}
|
||||
|
||||
/*
|
||||
$infoBilan=print_r($page, true);
|
||||
$fp=fopen('./infobilan.html', 'w');
|
||||
fwrite($fp, $infoBilan);
|
||||
fclose($fp);
|
||||
*/
|
||||
}
|
||||
|
||||
$tabA=$this->getActionnaires($siren);
|
||||
$tabP=$this->getParticipations($siren);
|
||||
return array( 'actionnaires'=>$tabA,
|
||||
'participations'=>$tabP);
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
@ -614,7 +614,7 @@ API keybing = 56D6CBA671C986D3EA11B1B48F97507BE9B46999
|
||||
$this->geocodeur='Cloudmade';
|
||||
$this->precision=0;
|
||||
|
||||
$fileName=REP_TEMP.'/geoCodeur'.$this->geocodeur;
|
||||
$fileName=LOG_PATH.'/geoCodeur'.$this->geocodeur.'.log';
|
||||
$tmp=@explode(',',file_get_contents($filename));
|
||||
$nbQuery=$tmp[0]*1;
|
||||
|
||||
@ -676,7 +676,7 @@ API keybing = 56D6CBA671C986D3EA11B1B48F97507BE9B46999
|
||||
$this->geocodeur='Yahoo';
|
||||
$this->precision=0;
|
||||
|
||||
$fileName=REP_TEMP.'/geoCodeur'.$this->geocodeur;
|
||||
$fileName=LOG_PATH.'/geoCodeur'.$this->geocodeur.'.log';
|
||||
$tmp=@explode(',',file_get_contents($filename));
|
||||
$nbQuery=$tmp[0]*1;
|
||||
|
||||
@ -739,7 +739,10 @@ API keybing = 56D6CBA671C986D3EA11B1B48F97507BE9B46999
|
||||
} else
|
||||
//die('Code Retour Yahoo 200 mais :'.$this->body.EOL);
|
||||
|
||||
if ($this->latitudeDec==0 && ($this->longitudeDec==0 || $this->precision==0)) die('Réponse Yahoo = '.$this->body.EOL);
|
||||
if ($this->latitudeDec==0 && ($this->longitudeDec==0 || $this->precision==0)) {
|
||||
//die('Réponse Yahoo = '.$this->body.EOL);
|
||||
return false;
|
||||
}
|
||||
return true;//array("lat"=>$lat,"lng"=>$lng,"address"=>$address);
|
||||
} else
|
||||
$this->codeRetourY='INVALID_REQUEST';
|
||||
@ -751,7 +754,7 @@ API keybing = 56D6CBA671C986D3EA11B1B48F97507BE9B46999
|
||||
$this->geocodeur='Google';
|
||||
$this->precision=0;
|
||||
|
||||
$fileName=REP_TEMP.'/geoCodeur'.$this->geocodeur;
|
||||
$fileName=LOG_PATH.'/geoCodeur'.$this->geocodeur.'.log';
|
||||
$tmp=@explode(',',file_get_contents($filename));
|
||||
$nbQuery=$tmp[0]*1;
|
||||
|
||||
|
@ -1,404 +0,0 @@
|
||||
<?
|
||||
define('HOST_INSEE', 'avis-situation-sirene.insee.fr');
|
||||
define('SITE_INSEE', 'http://'. HOST_INSEE .'/');
|
||||
define('HOST_PJ', 'www.pagesjaunes.fr');
|
||||
define('SITE_PJ', 'http://'. HOST_PJ .'/');
|
||||
define('SITE_SOCIETE', 'http://www.societe.com/');
|
||||
|
||||
include('/var/www/_includes/includes/insee.class.php');
|
||||
//include('includes/normad.class.php');
|
||||
include('/var/www/_includes/includes/fonctions.php');
|
||||
|
||||
/* v0.1 Extraction d'informations INSEE en ligne de commande.
|
||||
|
||||
Usage: <?=$argv[0]?> <extract type> <fileIn> <fileInFmt> <fileOut> <fileOutFmt>
|
||||
|
||||
Where <extract type> is :
|
||||
id siren.tm.fr : Fiche d'identite INSEE (établissement+entreprise)
|
||||
lst siren.tm.fr : Liste des etablissements du SIREN (+infos entreprise)
|
||||
rncs societe.com : Informations du RNCS
|
||||
pj pagesjaunes.fr : Données des pages jaunes
|
||||
coface cofacerating.fr : Coface
|
||||
|
||||
Where <fileInFmt> is :
|
||||
csv Fichier IN au format CSV (; ou ,) SIREN;NIC;REF
|
||||
plat Fichier IN au format plat (blancs significatifs) SIREN_____NIC__REF______________
|
||||
|
||||
Where <fileOutFmt> is : csv / todo
|
||||
|
||||
Le fichier en entrée doit être au format <fileInFmt> et contenir le SIREN en première colonne.
|
||||
*/
|
||||
|
||||
$insee=&new Insee();
|
||||
function getInfosSirene($sirenLu, $nicLu='') {
|
||||
$tabRet=array();
|
||||
|
||||
$invalide=false;
|
||||
if (valideSiren($sirenLu)==false) {
|
||||
$libelleErreur='SIREN invalide';
|
||||
$invalide=true;
|
||||
}
|
||||
if ( $nicLu<>'' && valideSiren($sirenLu, $nicLu)==false) {
|
||||
$libelleErreur='SIRET invalide';
|
||||
$invalide=true;
|
||||
}
|
||||
if ($invalide==true)
|
||||
{
|
||||
$siret=$sirenLu.$nicLu;
|
||||
$str=date('d/m/Y à H:i:s') .';'. $libelleErreur .';'. $siret .';;;;;;;;;;;;;;;;;;;;;;;';
|
||||
$fp=fopen('/var/www/_includes/partenaires/insee/debug.csv', 'a');
|
||||
fwrite($fp, $str."\r\n");
|
||||
fclose($fp);
|
||||
$num=$key+1;
|
||||
flush();
|
||||
} else { // La demande est valide on va à l'INSEE
|
||||
/** Paramètre de requête "option" à l'insee :
|
||||
** 1: Fiche du siège + Données entreprises
|
||||
** 2: Tous les établissements de l'entreprise
|
||||
** 3: Un établissement particulier
|
||||
** 4: Département
|
||||
**/
|
||||
if ($nicLu<>'') $option=3;
|
||||
else $option=1;
|
||||
|
||||
$libelleErreur='Erreur SCRIPT Inconnue';
|
||||
$tabInfoEtab=array();
|
||||
$tabInfoEntrep=array();
|
||||
|
||||
/** Etape de connexion au site de l'INSEE pour simuler correctement un utilisateur WEB
|
||||
**/
|
||||
$response1=getUrl(SITE_INSEE);
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'SIRENET_Script/Accueil/script_page_accueil.asp');
|
||||
|
||||
$response=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
||||
$response=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
||||
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_haut.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_bas.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/frame_interrogation.asp?ACTION=nouvelle&Niveau=siren');
|
||||
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_haut.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_bas.asp?grille=siren&action=nouvelle', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
||||
|
||||
if ($nicLu=='') //Faire une boucle de recherche de tous les établissement et y inclure le reste du traitement
|
||||
{
|
||||
// Requête d'interrogation
|
||||
$postData=array(
|
||||
'siren'=>$sirenLu,
|
||||
'option'=>2,
|
||||
'nic'=>'',
|
||||
'dep'=>'',
|
||||
'listeDep'=>'');
|
||||
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false', $response1["header"]["Set-Cookie"], $postData, SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
||||
$action='nouveau';
|
||||
$referer=SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false';
|
||||
$nbRepTot=$pageCour=$nbTotPage=$nbRepParPage=$numEtab=0;
|
||||
$tabInfoEtab=array();
|
||||
|
||||
while(true)
|
||||
{
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action='.$action, $response1["header"]["Set-Cookie"], '', $referer);
|
||||
if ($responseQ['code']==302)
|
||||
{
|
||||
//$libelleErreur='Erreur INSEE inconnue 1';
|
||||
|
||||
// Siren Invalide ou autre erreur non répertoriée !
|
||||
$header=$responseQ['header'];
|
||||
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur')
|
||||
{
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
$responseErreur=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Erreur_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur',true);
|
||||
$pos=strpos($responseErreur['body'], '<td valign=top bgcolor="#FFCC33"><font face=Arial size=2><b>');
|
||||
if ($pos>0){
|
||||
$posFin=strpos($responseErreur['body'], '</b></font></td>', $pos+60);
|
||||
$libelleErreur=trim(substr($responseErreur['body'], $pos+60, $posFin-($pos+60)));
|
||||
} else
|
||||
$libelleErreur='Erreur INSEE inconnue';
|
||||
}
|
||||
|
||||
// On déroule les URLs d'appels liste des établissements
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
//sleep(1);
|
||||
// Frames réponse niveau Etab
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
||||
$responseListe=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste', true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Liste_bas.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=liste');
|
||||
$responseListe=$responseListe['body'];
|
||||
|
||||
$pos=strpos($responseListe, 'Nombre total de réponses : '."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
||||
if ($pos>0) {
|
||||
$posFin=strpos($responseListe, '</b></font>', $pos+73);
|
||||
$nbRepTot=trim(substr($responseListe, $pos+73, $posFin-($pos+73)));
|
||||
}
|
||||
$pos=strpos($responseListe, ' - Affichage de la page '."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
||||
if ($pos>0) {
|
||||
$posFin=strpos($responseListe, ' - </b></font>', $pos+75);
|
||||
$strPages=trim(substr($responseListe, $pos+75, $posFin-($pos+75)));
|
||||
$tabPages=explode(' / ', $strPages);
|
||||
$pageCour=$tabPages[0];
|
||||
$nbTotPage=$tabPages[1];
|
||||
}
|
||||
$pos=strpos($responseListe, ' - </b></font>'."\r\n\t\t\t".'<font face="Arial" size="2"><b>');
|
||||
if ($pos>0) {
|
||||
$posFin=strpos($responseListe, '</b></font>', $pos+60);
|
||||
$nbRepParPage=trim(substr($responseListe, $pos+60, $posFin-($pos+60)));
|
||||
}
|
||||
|
||||
/* TODO = Récupérer les infos étab + entrep pour chaque ligne du tableau !!!*
|
||||
*/
|
||||
if ($libelleErreur=='Erreur SCRIPT Inconnue')
|
||||
$libelleErreur='';
|
||||
for ($i=1;$i<11; $i++)
|
||||
{
|
||||
if ($numEtab==$nbRepTot)
|
||||
break; // Il n'y a pas plus d'établissement à récupérer ! On sort...
|
||||
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action=detail&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp');
|
||||
if ($responseQ['code']==302)
|
||||
{
|
||||
// Siren Invalide ou autre erreur non répertoriée !
|
||||
$header=$responseQ['header'];
|
||||
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i)
|
||||
{
|
||||
// On déroule les URLs d'appels fiche siège
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
//sleep(1);
|
||||
// Frames réponse niveau Etab
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i, true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=siege&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=siege&numtableau='.$i);
|
||||
$responseEtab=$responseEtab['body'];
|
||||
|
||||
// Récupération de la fiche entreprise INSEE
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege&numtableau='.$i.'&origine=liste');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
||||
$responseEntreprise=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=entreprise&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i, true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=entreprise&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/Frame_Reponse.asp?niveau=entreprise&dest=detail&origine=liste&numtableau='.$i);
|
||||
$responseEntreprise=$responseEntreprise['body'];
|
||||
$tabInfoEntrep=getDataEntreprise($responseEntreprise);
|
||||
}
|
||||
elseif (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i)
|
||||
{
|
||||
// On déroule les URLs d'appels établissement
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement&numtableau='.$i, $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
//sleep(1);
|
||||
// Frames réponse niveau Etab
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=etablissement&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i, true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=etablissement&numtableau='.$i.'&origine=liste', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?origine=liste&dest=detail&niveau=etablissement&numtableau='.$i);
|
||||
$responseEtab=$responseEtab['body'];
|
||||
}
|
||||
|
||||
$tabInfoEtab=getDataEtablissement($responseEtab);
|
||||
$tabRet[]=array_merge($tabInfoEtab, $tabInfoEntrep);
|
||||
|
||||
if ($libelleErreur<>'' && $tabInfoEtab['siret'] =='') $siret=$sirenLu . $nicLu;
|
||||
else $siret=$tabInfoEtab['siret'];
|
||||
|
||||
$str= date('d/m/Y à H:i:s') .';'.
|
||||
$libelleErreur .';'.
|
||||
// Siège
|
||||
$siret .';'.
|
||||
$tabInfoEtab['active'] .';'.
|
||||
$tabInfoEtab['dateAbsActivite'] .';'.
|
||||
$tabInfoEtab['typeEtablissement'] .';'.
|
||||
$tabInfoEtab['dateMAJ'] .';'.
|
||||
$tabInfoEtab['dateCreation'] .';'.
|
||||
$tabInfoEtab['raisonSociale'] .';'.
|
||||
$tabInfoEtab['Enseigne'] .';'.
|
||||
$tabInfoEtab['NafCode'] .';'.
|
||||
$tabInfoEtab['NafLib'] .';'.
|
||||
$tabInfoEtab['AdresseLigne1'] .';'.
|
||||
$tabInfoEtab['AdresseLigne2'] .';'.
|
||||
$tabInfoEtab['AdresseLigne3'] .';'.
|
||||
$tabInfoEtab['etatJuridique'] .';'.
|
||||
$tabInfoEtab['dateEtatJuridique'] .';'.
|
||||
// Entreprise
|
||||
$tabInfoEntrep['dateCreationEntrep'] .';'.
|
||||
$tabInfoEntrep['raisonSocialeEntrep'] .';'.
|
||||
$tabInfoEntrep['sigle'] .';'.
|
||||
$tabInfoEntrep['NafCodeEntrep'] .';'.
|
||||
$tabInfoEntrep['NafLibEntrep'] .';'.
|
||||
$tabInfoEntrep['FJCodeEntrep'] .';'.
|
||||
$tabInfoEntrep['FJLibEntrep'] .';'.
|
||||
$tabInfoEntrep['nbEtabActifs'] .';';
|
||||
|
||||
$fp=fopen('/var/www/_includes/partenaires/insee/debug.csv', 'a');
|
||||
fwrite($fp, $str."\r\n");
|
||||
fclose($fp);
|
||||
|
||||
$numEtab++;
|
||||
$num=$key+1;
|
||||
$typeEtablissement=$tabInfoEtab['typeEtablissement'];
|
||||
// echo "Question $num/$nbLignes : Demande=$sirenLu$nicLu Etablissement $numEtab/$nbRepTot $typeEtablissement=$siret $libelleErreur\r\n";
|
||||
flush();
|
||||
sleep(1);
|
||||
|
||||
}//end for
|
||||
}//end if
|
||||
if ($pageCour==$nbTotPage) {
|
||||
// On sort de la boucle de passage à la page de liste suivante car il n'y a plus d'autres pages
|
||||
break;
|
||||
} else {
|
||||
$action='listeplus';
|
||||
$referer=SITE_INSEE .'REPERTOIRE/Reponse/Liste_principal.asp';
|
||||
}
|
||||
}
|
||||
} //Fin While
|
||||
// die('Boucle');
|
||||
} /* Fin de la boucle option 'lst' */ else
|
||||
{
|
||||
// Requête d'interrogation
|
||||
$postData=array('siren'=>$sirenLu,
|
||||
'option'=>$option,
|
||||
'nic'=>$nicLu,
|
||||
'dep'=>'',
|
||||
'listeDep'=>'');
|
||||
|
||||
$response=getUrl(SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false', $response1["header"]["Set-Cookie"], $postData, SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?grille=siren&action=nouvelle');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/question.asp?action=nouveau', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
if ($responseQ['code']==302)
|
||||
{
|
||||
//$libelleErreur='Erreur INSEE inconnue 1';
|
||||
|
||||
// Siren Invalide ou autre erreur non répertoriée !
|
||||
$header=$responseQ['header'];
|
||||
if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur')
|
||||
{
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
$responseErreur=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Erreur_principal.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=erreur',true);
|
||||
$pos=strpos($responseErreur['body'], '<td valign=top bgcolor="#FFCC33"><font face=Arial size=2><b>');
|
||||
if ($pos>0){
|
||||
$posFin=strpos($responseErreur['body'], '</b></font></td>', $pos+60);
|
||||
$libelleErreur=trim(substr($responseErreur['body'], $pos+60, $posFin-($pos+60)));
|
||||
} else
|
||||
$libelleErreur='Erreur INSEE inconnue';
|
||||
}
|
||||
else
|
||||
{ if (trim($header['Location'])=='/REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege')
|
||||
// L'établissement demandé est un siège !
|
||||
$option=1;
|
||||
|
||||
if ($option==3)
|
||||
{
|
||||
// On déroule les URLs d'appels établissement
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
//sleep(1);
|
||||
// Frames réponse niveau Etab
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseEtab=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement', true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=etablissement', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=etablissement');
|
||||
$responseEtab=$responseEtab['body'];
|
||||
// On recherche si on est bien sur un fiche établissement
|
||||
$pos=strpos($responseEtab, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche Etablissement</B>');
|
||||
if ($pos<1)
|
||||
$libelleErreur='Erreur SCRIPT Fiche Etablissement non trouvée';
|
||||
else
|
||||
$libelleErreur='';
|
||||
$responseSiege=$responseEtab;
|
||||
}
|
||||
else
|
||||
{
|
||||
// On déroule les URLs d'appels Sièges
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Interrogation/Interrogation_principal.asp?action=valider&grille=siren&waitframe=false');
|
||||
//sleep(1);
|
||||
// Frames réponse niveau sièges
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseSiege=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege', true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=siege', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=siege');
|
||||
$responseSiege=$responseSiege['body'];//strip_tags(html_entity_decode(), '<td>');
|
||||
// On recherche si on est bien sur un fiche siège
|
||||
$pos=strpos($responseSiege, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche siège</B>');
|
||||
if ($pos<1)
|
||||
$libelleErreur='Erreur SCRIPT Fiche Siège non trouvée';
|
||||
else
|
||||
$libelleErreur='';
|
||||
}
|
||||
|
||||
// Niveau entreprise
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=siege');
|
||||
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_menu.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
||||
$responseQ=getUrl(SITE_INSEE .'SIRENET_Script/Interrogation/script_recherche_barre_haut.asp?niveau=siren', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/Reponse/Frame_Reponse.asp?dest=detail&niveau=entreprise');
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Reponse_haut.asp', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
||||
$responseEntreprise=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_principal.asp?niveau=entreprise', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail', true);
|
||||
$responseQ=getUrl(SITE_INSEE .'REPERTOIRE/Reponse/Detail_bas.asp?niveau=entreprise', $response1["header"]["Set-Cookie"], '', SITE_INSEE .'REPERTOIRE/reponse/frame_reponse.asp?niveau=entreprise&dest=detail');
|
||||
$responseEntreprise=$responseEntreprise['body'];
|
||||
$pos=strpos($responseEntreprise, '<table cols="2" width="100%"><tr><td bgcolor="#FFCC33" align="left"><font face="Arial" size="2"><B>Fiche Entreprise</B>');
|
||||
if ($pos<1) {
|
||||
$libelleErreur='Erreur SCRIPT Fiche Entreprise non trouvée';
|
||||
}
|
||||
|
||||
/** Recherche des données établissement
|
||||
**/
|
||||
$tabInfoEtab=getDataEtablissement($responseSiege);
|
||||
|
||||
/** Recherche des données entreprise
|
||||
**/
|
||||
$tabInfoEntrep=getDataEntreprise($responseEntreprise);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if ($libelleErreur<>'' && $tabInfoEtab['siret'] =='') $siret=$sirenLu . $nicLu;
|
||||
else $siret=$tabInfoEtab['siret'];
|
||||
|
||||
$str= date('d/m/Y à H:i:s') .';'.
|
||||
$libelleErreur .';'.
|
||||
// Siège
|
||||
$siret .';'.
|
||||
$tabInfoEtab['active'] .';'.
|
||||
$tabInfoEtab['dateAbsActivite'] .';'.
|
||||
$tabInfoEtab['typeEtablissement'] .';'.
|
||||
$tabInfoEtab['dateMAJ'] .';'.
|
||||
$tabInfoEtab['dateCreation'] .';'.
|
||||
$tabInfoEtab['raisonSociale'] .';'.
|
||||
$tabInfoEtab['Enseigne'] .';'.
|
||||
$tabInfoEtab['NafCode'] .';'.
|
||||
$tabInfoEtab['NafLib'] .';'.
|
||||
$tabInfoEtab['AdresseLigne1'] .';'.
|
||||
$tabInfoEtab['AdresseLigne2'] .';'.
|
||||
$tabInfoEtab['AdresseLigne3'] .';'.
|
||||
$tabInfoEtab['etatJuridique'] .';'.
|
||||
$tabInfoEtab['dateEtatJuridique'] .';'.
|
||||
// Entreprise
|
||||
$tabInfoEntrep['dateCreationEntrep'] .';'.
|
||||
$tabInfoEntrep['raisonSocialeEntrep'] .';'.
|
||||
$tabInfoEntrep['sigle'] .';'.
|
||||
$tabInfoEntrep['NafCodeEntrep'] .';'.
|
||||
$tabInfoEntrep['NafLibEntrep'] .';'.
|
||||
$tabInfoEntrep['FJCodeEntrep'] .';'.
|
||||
$tabInfoEntrep['FJLibEntrep'] .';'.
|
||||
$tabInfoEntrep['nbEtabActifs'] .';'.
|
||||
//echo $str.'<br/>';
|
||||
|
||||
$fp=fopen('/var/www/_includes/partenaires/insee/debug.csv', 'a');
|
||||
fwrite($fp, $str."\r\n");
|
||||
fclose($fp);
|
||||
|
||||
$num=$key+1;
|
||||
$typeEtablissement=$tabInfoEtab['typeEtablissement'];
|
||||
// echo "Ligne $num/$nbLignes : Question=$sirenLu$nicLu Retour $typeEtablissement=$siret $libelleErreur (PJ=$nbPJ)\r\n";
|
||||
//echo $str."<br/>";
|
||||
|
||||
flush();
|
||||
$tabRet=array(0=>array_merge($tabInfoEntrep, $tabInfoEtab));
|
||||
}
|
||||
}
|
||||
|
||||
return $tabRet;
|
||||
}
|
||||
?>
|
784
library/Metier/scores/Variables/CommentsValo28.php
Normal file
784
library/Metier/scores/Variables/CommentsValo28.php
Normal file
@ -0,0 +1,784 @@
|
||||
<?php
|
||||
$tabCommentaires=array();
|
||||
$tabCommentaires[100][2][1] = "Version 2.8";
|
||||
$tabCommentaires[5000][2][1] = "Valorisation de {NOMEN} en date du : {JOUR_DATE}";
|
||||
$tabCommentaires[7000][2][10] = "<LI><B>ENTREPRISE INACTIVE</B>";
|
||||
$tabCommentaires[7001][2][10] = "<LI><B>ENTREPRISE EN ACTIVITE SELON l'INSEE MAIS DECLAREE INACTIVE EN SOURCE GREFFES</B>";
|
||||
$tabCommentaires[7002][2][10] = "<LI><B>ENTREPRISE SANS ACTIVITE SELON l'INSEE MAIS DECLAREE ENCORE EN ACTIVITE EN SOURCE GREFFES</B>";
|
||||
$tabCommentaires[7003][2][10] = "COULEUR(VER3,ROU2,BLE3,MAR,MET2,VIO1,ROU3,NOI2,MET,VER2,ROU1,MET3,BLE,MAR2,MET1,VER2)";
|
||||
$tabCommentaires[9995][2][1] = "L'objet social publié dans les annonces légales est libellé comme : <I>\"{ANNONCEOBJET}\"
|
||||
";
|
||||
$tabCommentaires[9996][2][1] = "Au répertoire national l'activité est codifiée {APEENT(5)}, {APEENT}
|
||||
";
|
||||
$tabCommentaires[199000][2][0] = "Cette entreprise est une TPE à vocation principalement régionale.";
|
||||
$tabCommentaires[200000][2][0] = "Cette entreprise est une PME à vocation principalement régionale.";
|
||||
$tabCommentaires[201000][2][0] = "Cette entreprise est une PME importante au sein du bassin économique régional {RPEN}";
|
||||
$tabCommentaires[202000][2][0] = "L' entreprise \"{NOMEN}\" est une entreprise importante au sein du bassin économique régional.";
|
||||
$tabCommentaires[203000][2][0] = "Cette entreprise est une PME majeure au sein de la région {RPEN}.";
|
||||
$tabCommentaires[204000][2][0] = "C'est une des premières entreprises françaises.";
|
||||
$tabCommentaires[205000][2][0] = " C'est une PME qui compte dans le département {DEPSIE}.";
|
||||
$tabCommentaires[205099][2][0] = "C'est une PME de taille signicative dont le siège situe hors de France ({DEPSIE_DE}).";
|
||||
$tabCommentaires[205200][2][0] = "Les effectifs de l'établissement représentant une part importante de la population de la commune d'implantation, l'entreprise a une forte influence locale.";
|
||||
$tabCommentaires[735100][2][0] = "<B>Projection du CA sur 3 ans:</B>";
|
||||
$tabCommentaires[735100][2][10] = "D'après les éléments financiers à notre disposition, nous avons avons procédé à une projection à 3 ans de la valeur du Chiffre d'Affaires. Notre estimation à 3 ans table sur un CA de {CA_Y[3]} en {BILANANNEE3} soit une tendance à la hausse de {CA_TAUX}.<BR>";
|
||||
$tabCommentaires[735110][2][10] = "<FONT color=\"red\">L'ampleur de la progression est à relativiser car des opérations de fusion (dont la dernière le {ANNONCEFUSDATE}) ont dopé le Chiffre d'Affaires.</FONT>";
|
||||
$tabCommentaires[735111][2][10] = "<FONT color=\"red\">L'ampleur de la progression est à relativiser car une fusion absoption intervenue le {ANNONCEFUSDATE}) a dopé le Chiffre d'Affaires.</FONT>";
|
||||
$tabCommentaires[735112][2][10] = "<FONT color=\"red\">L'ampleur de la progression est à relativiser car des opérations de fusion ont dopé le Chiffre d'Affaires.</FONT>";
|
||||
$tabCommentaires[735200][2][10] = "D'après les éléments financiers à notre disposition, nous avons avons procédé à une projection à 3 ans de la valeur du Chiffre d'Affaires. Notre estimation à 3 ans table sur un CA de {CA_Y[3]} en {BILANANNEE3} soit tendance à la baisse de {CA_TAUX}.<BR>";
|
||||
$tabCommentaires[735300][2][10] = "D'après les éléments financiers à notre disposition, nous avons avons procédé à une projection à 3 ans de la valeur du Chiffre d'Affaires. Notre estimation à 3 ans table sur une stabilité du CA avec une valeur de {CA_Y[3]} en {BILANANNEE3}.<BR>";
|
||||
$tabCommentaires[735500][2][9] = "COULEUR(VER3,ROU1,MET3)";
|
||||
$tabCommentaires[735500][2][10] = "{GRAPH(\"Evolution du CA et projection sur 3 ans\",R[006]#H,CA_Y#L)}";
|
||||
$tabCommentaires[735930][2][10] = "Notre estimation à 3 ans table sur un Résultat Courant avant Impôts de {RCAI_Y[3]} en {BILANANNEE3}.<BR>";
|
||||
$tabCommentaires[735930][2][20] = "Le taux de pertinence de notre projection est de {RCAI_TAUX}.";
|
||||
$tabCommentaires[735950][2][9] = "COULEUR(JAU1,ROU1,MET3)";
|
||||
$tabCommentaires[735950][2][10] = "{GRAPH(\"Evolution du RCAI et projection sur 3 ans\",R[008]#H,RCAI_Y#L)}";
|
||||
$tabCommentaires[2400101][2][10] = "L'entreprise se situe à la 1<sup>ere</sup> place dans un marché dont la taille est estimée à {MARCHE} et qui progresse de {!MARCHEVOL}.";
|
||||
$tabCommentaires[2400102][2][10] = "L'entreprise se situe à la {MARCHEPLACE}<sup>eme</sup> place dans un marché dont la taille est estimée à {MARCHE} et qui progresse de {!MARCHEVOL}.";
|
||||
$tabCommentaires[2400103][2][10] = "L'entreprise se situe à la 1<sup>ere</sup> place dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400109][2][10] = "L'entreprise se situe dans un marché dont la taille est estimée à {MARCHE} et qui progresse de {!MARCHEVOL}.";
|
||||
$tabCommentaires[2400111][2][10] = "L'entreprise se situe à la 1<sup>ere</sup> place dans un marché dont la taille est estimée à {MARCHE} et qui régresse de {!MARCHEVOL}.";
|
||||
$tabCommentaires[2400112][2][10] = "L'entreprise se situe à la {MARCHEPLACE}<sup>eme</sup> place dans un marché dont la taille est estimée à {MARCHE} et qui régresse de {!MARCHEVOL}.";
|
||||
$tabCommentaires[2400119][2][10] = "L'entreprise se situe dans un marché dont la taille est estimée à {MARCHE} et qui régresse de {MARCHEVOL}.";
|
||||
$tabCommentaires[2400121][2][10] = "L'entreprise se situe à la 1<sup>ere</sup> place dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400122][2][10] = "L'entreprise se situe à la {MARCHEPLACE}<sup>eme</sup> place dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400123][2][10] = "L'entreprise figure parmi les 200 premières affaires dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400124][2][10] = "L'entreprise figure parmi les 500 premières affaires dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400125][2][10] = "L'entreprise figure parmi les 1000 premières affaires dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400126][2][10] = "L'entreprise figure parmi les 2000 premières affaires dans un marché dont la taille est estimée à {MARCHE}.";
|
||||
$tabCommentaires[2400200][2][10] = "<C.>, elle en représente {MARCHEPART}, et sa part de marché évolue favorablement de {MARCHEPARTEVOL}.";
|
||||
$tabCommentaires[2400210][2][10] = "<C.>, elle en représente {MARCHEPART}, et sa part de marché évolue défavorablement de {MARCHEPARTEVOL}.";
|
||||
$tabCommentaires[2400300][2][10] = "Part conséquent on peut dire que le volume de son marché se developpe de {MARCHEVOLUMEVOL}.";
|
||||
$tabCommentaires[2400310][2][10] = "Part conséquent on peut dire que le volume de son marché diminue de {MARCHEVOLUMEVOL}.";
|
||||
$tabCommentaires[2400410][2][10] = "A noter qu'en termes d'emplois, le marché dans son ensemble représente plus de {MARCHESAL} salariés pour un nombre de {MARCHENBENT} entreprises.";
|
||||
$tabCommentaires[2400420][2][10] = "A noter qu'en termes d'emplois, le marché dans son ensemble représente plus de {MARCHESAL} salariés.";
|
||||
$tabCommentaires[2400430][2][10] = "A noter que le marché dans son ensemble représente plus de {MARCHENBENT} entreprises.";
|
||||
$tabCommentaires[3902100][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que {VENTE_VILLE_NB} affaires localisées à {VILLE} se sont négociées dans une fourchette de {VENTEMIN_VILLE_EU} et {VENTEMAX_VILLE_EU}.";
|
||||
$tabCommentaires[3902101][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires localisées à {VILLE} se sont négociées dans une fourchette de {VENTEMIN_VILLE_EU} et {VENTEMAX_VILLE_EU}.";
|
||||
$tabCommentaires[3902110][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre qu'une seule affaire de la même localité est intervenue pour un montant de {VENTEMIN_VILLE_EU}.";
|
||||
$tabCommentaires[3902111][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires de la même localité se sont négociées aux environs de {VENTEMIN_VILLE_EU}.";
|
||||
$tabCommentaires[3902130][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre qu'une seule vente est intervenue dans la même localité pour un montant de {VENTEMAX_VILLE_EU}.";
|
||||
$tabCommentaires[3902131][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires de la même localité se sont négociées aux environs de {VENTEMAX_VILLE_EU}.";
|
||||
$tabCommentaires[3902200][2][10] = "<C.>, alors qu'on dénombre {VENTE_DEP_NB} cessions dans le département dans une fourchette de {VENTEMIN_DEP_EU} à {VENTEMAX_DEP_EU}.";
|
||||
$tabCommentaires[3902300][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que {VENTE_DEP_NB} affaires de la proche région se sont négociées dans une fourchette de {VENTEMIN_DEP_EU} et {VENTEMAX_DEP_EU}.";
|
||||
$tabCommentaires[3902301][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires du département se sont négociées dans une fourchette de {VENTEMIN_DEP_EU} et {VENTEMAX_DEP_EU}.";
|
||||
$tabCommentaires[3902310][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre qu'une seule affaire de la même localité est intervenue pour un montant de {VENTEMIN_DEP_EU}.";
|
||||
$tabCommentaires[3902311][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires du même département se sont négociées aux environs de {VENTEMIN_DEP_EU}.";
|
||||
$tabCommentaires[3902330][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre qu'une seule vente est intervenue dans le même département pour un montant de {VENTEMAX_DEP_EU}.";
|
||||
$tabCommentaires[3902331][2][10] = "Notre analyse des 24 derniers mois de l'historique des ventes d'établissements comparables montre que les affaires de la proche région se sont négociées aux environs de {VENTEMAX_DEP_EU}.";
|
||||
$tabCommentaires[3902900][2][10] = "(Sur l'ensemble du territoire, sur la même période, ce sont {VENTE_FRA_NB} ventes qui sont intervenues pour un montant moyen de {VENTEMOY_FRA_EU})";
|
||||
$tabCommentaires[3910001][2][0] = "<TABLE CLASS=\"TABLEAUDEFAUTPLUS\" id=\"TABLEAUPLUS\">";
|
||||
$tabCommentaires[3910001][2][2] = "<TR CLASS=\"TITRES\"> <TH> LES PLUS <I>(en vert la condition atteinte)</I></TH><TH>Taux ou Valeur</TH></TR>";
|
||||
$tabCommentaires[3910100][2][10] = "<TR CLASS=\"VERT\"><TH>Moyenne sur 3 ans du taux de croissance du CA > inflation</TH><TD>{Revol[536]}</TD></TR>";
|
||||
$tabCommentaires[3910101][2][10] = "<TR ><TH>Moyenne sur 3 ans du taux de croissance du CA > inflation</TH><TD>{Revol[536]}</TD></TR>";
|
||||
$tabCommentaires[3910120][2][10] = "<TR CLASS=\"VERT\"><TH>Résultat courant >0 avec croissance du CA sur 3 ans</TH><TD>{R[170]}</TD></TR>";
|
||||
$tabCommentaires[3910121][2][10] = "<TR ><TH>Résultat courant >0 avec croissance du CA sur 3 ans</TH><TD>{R[170]}</TD></TR>";
|
||||
$tabCommentaires[3910130][2][10] = "<TR CLASS=\"VERT\"><TH>CAF/actif économique > Inflation sur 3 ans</TH><TD>{R[539]}</TD></TR>";
|
||||
$tabCommentaires[3910131][2][10] = "<TR ><TH>CAF/actif économique > Inflation sur 3 ans</TH><TD>{R[539]}</TD></TR>";
|
||||
$tabCommentaires[3910135][2][10] = "<TR CLASS=\"VERT\"><TH>CAF/capitaux permanents > Inflation sur 3 ans</TH><TD>{R[541]}</TD></TR>";
|
||||
$tabCommentaires[3910136][2][10] = "<TR ><TH>CAF/capitaux permanents > Inflation sur 3 ans</TH><TD>{R[541]}</TD></TR>";
|
||||
$tabCommentaires[3910140][2][10] = "<TR CLASS=\"VERT\"><TH>Capitaux propres > 15% Total Bilan </TH><TD>{R[510]}</TD></TR>";
|
||||
$tabCommentaires[3910141][2][10] = "<TR ><TH>Capitaux propres > 15% Total Bilan </TH><TD>{R[510]}</TD></TR>";
|
||||
$tabCommentaires[3910145][2][10] = "<TR CLASS=\"VERT\"><TH>Capitaux propres/capitaux permanents > 40%</TH><TD>{R[240]}</TD></TR>";
|
||||
$tabCommentaires[3910146][2][10] = "<TR ><TH>Capitaux propres/capitaux permanents > 40%</TH><TD>{R[240]}</TD></TR>";
|
||||
$tabCommentaires[3910150][2][10] = "<TR CLASS=\"VERT\"><TH>Fonds de Roulement > 0 </TH><TD>{R[231]}</TD></TR>";
|
||||
$tabCommentaires[3910151][2][10] = "<TR ><TH>Fonds de Roulement > 0 </TH><TD>{R[231]}</TD></TR>";
|
||||
$tabCommentaires[3910155][2][10] = "<TR CLASS=\"VERT\"><TH>Fonds de Roulement/BFR > 70% </TH><TD>{R[234]}</TD></TR>";
|
||||
$tabCommentaires[3910156][2][10] = "<TR ><TH>Fonds de Roulement/BFR > 70% </TH><TD>{R[234]}</TD></TR>";
|
||||
$tabCommentaires[3910160][2][10] = "<TR CLASS=\"VERT\"><TH>Trésorerie > 30 J de CA</TH><TD>{!R[512]}</TD></TR>";
|
||||
$tabCommentaires[3910161][2][10] = "<TR ><TH>Trésorerie > 30 J de CA</TH><TD>{!R[512]}</TD></TR>";
|
||||
$tabCommentaires[3910170][2][10] = "<TR CLASS=\"VERT\"><TH>Dettes financières LMT / CAF <= 4 ans </TH><TD>{R[247]}</TD></TR>";
|
||||
$tabCommentaires[3910171][2][10] = "<TR ><TH>Dettes financières LMT / CAF <= 4 ans </TH><TD>{R[247]}</TD></TR>";
|
||||
$tabCommentaires[3910180][2][10] = "<TR CLASS=\"VERT\"><TH>Résultat d'exploitation/charges financières > 400%</TH><TD>{R[542]}</TD></TR>";
|
||||
$tabCommentaires[3910181][2][10] = "<TR ><TH>Résultat d'exploitation/charges financières > 400%</TH><TD>{R[542]}</TD></TR>";
|
||||
$tabCommentaires[3910190][2][10] = "<TR CLASS=\"VERT\"><TH>Liquidité > 10 fois la dette exigible </TH><TD>{R[308]} fois</TD></TR>";
|
||||
$tabCommentaires[3910191][2][10] = "<TR ><TH>Liquidité > 10 fois la dette exigible </TH><TD>{R[308]} fois</TD></TR>";
|
||||
$tabCommentaires[3911001][2][0] = "<TABLE CLASS=\"TABLEAUDEFAUTMOINS\" id=\"TABLEAUMOINS\">";
|
||||
$tabCommentaires[3911001][2][2] = "<TR CLASS=\"TITRES\"> <TH> LES MOINS <I>(en rouge la condition atteinte)</I></TH><TH>Taux ou Valeur</TH></TR>";
|
||||
$tabCommentaires[3911100][2][10] = "<TR CLASS=\"ROUGE\"><TH>Baisse du résultat courant sur 3 ans </TH><TD>{Rp2[170]} <LI=> {R[170]}</TD></TR>";
|
||||
$tabCommentaires[3911101][2][10] = "<TR ><TH>Baisse du résultat courant sur 3 ans </TH><TD>{Rp2[170]} <LI=> {R[170]}</TD></TR>";
|
||||
$tabCommentaires[3911110][2][10] = " <TR CLASS=\"ROUGE\"><TH>Baisse de la trésorerie en jours de CA (N/N-3) </TH><TD>{Rp2[512]} <LI=> {R[512]}</TD></TR>";
|
||||
$tabCommentaires[3911111][2][10] = " <TR ><TH>Baisse de la trésorerie en jours de CA (N/N-3) </TH><TD>{Rp2[512]} <LI=> {R[512]}</TD></TR>";
|
||||
$tabCommentaires[3911120][2][10] = "<TR CLASS=\"ROUGE\"><TH>Fonds propres < 0 & Résultat courant < 0 </TH><TD>{R[070]} & {R[170]}</TD></TR>";
|
||||
$tabCommentaires[3911121][2][10] = "<TR ><TH>Fonds propres < 0 & Résultat courant < 0 </TH><TD>{R[070]} & {R[170]}</TD></TR>";
|
||||
$tabCommentaires[3911130][2][10] = "<TR CLASS=\"ROUGE\"><TH>Fonds propres < 10% Total Bilan </TH><TD>{R[510]}</TD></TR>";
|
||||
$tabCommentaires[3911131][2][10] = "<TR ><TH>Fonds propres < 10% Total Bilan </TH><TD>{R[510]}</TD></TR>";
|
||||
$tabCommentaires[3911145][2][10] = "<TR CLASS=\"ROUGE\"><TH>Capitaux propres/capitaux permanents < 30%</TH><TD>{R[240]}</TD></TR>";
|
||||
$tabCommentaires[3911146][2][10] = "<TR ><TH>Capitaux propres/capitaux permanents < 30%</TH><TD>{R[240]}</TD></TR>";
|
||||
$tabCommentaires[3911150][2][10] = "<TR CLASS=\"ROUGE\"><TH>Credit Clients > 60 jours de CA </TH><TD>{R[278]}</TD></TR>";
|
||||
$tabCommentaires[3911151][2][10] = "<TR ><TH>Credit Clients > 60 jours de CA </TH><TD>{R[278]}</TD></TR>";
|
||||
$tabCommentaires[3911160][2][10] = "<TR CLASS=\"ROUGE\"><TH>Dettes financières LT/CAF > 5ans </TH><TD>{R[247]}</TD></TR>";
|
||||
$tabCommentaires[3911161][2][10] = "<TR ><TH>Dettes financières LT/CAF > 5ans </TH><TD>{R[247]}</TD></TR>";
|
||||
$tabCommentaires[3911170][2][10] = "<TR CLASS=\"ROUGE\"><TH>Résultat d'exploitation/Charges financières < 200% </TH><TD>{R[542]}</TD></TR>";
|
||||
$tabCommentaires[3911171][2][10] = "<TR ><TH>Résultat d'exploitation/Charges financières < 200% </TH><TD>{R[542]}</TD></TR>";
|
||||
$tabCommentaires[3911180][2][10] = "<TR CLASS=\"ROUGE\"><TH>Fonds de Roulement < BFR, Trésorerie < 0 </TH><TD>{R[226]}</TD></TR>";
|
||||
$tabCommentaires[3911181][2][10] = "<TR ><TH>Fonds de Roulement < BFR, Trésorerie < 0 </TH><TD>{R[226]}</TD></TR>";
|
||||
$tabCommentaires[20001000][2][10] = "Cette étude a pour but de rechercher la valeur globale de l'entreprise en tenant compte des ses éléments financiers et de ses différentes caractéristiques intrinsèques (forces et faiblesses).";
|
||||
$tabCommentaires[20001000][2][30] = "Schématiquement, les méthodes d'évaluation de l'entreprise que nous pouvons utiliser se regroupent en trois catégories:";
|
||||
$tabCommentaires[20001000][2][31] = "<LI> celles qui relèvent d’une approche patrimoniale.";
|
||||
$tabCommentaires[20001000][2][32] = "<LI> celles qui s’appuient sur la rentabilité.";
|
||||
$tabCommentaires[20001000][2][33] = "<LI> celles qui découlent d’une comparaison, qui valorise une société à partir de données sur des sociétés présentant un profil comparable.";
|
||||
$tabCommentaires[20001000][2][50] = "L'objectif de ce rapport est d'indiquer une fouchette de valeurs, à partir des éléments financiers et statistiques objectifs du système Score & Decision.";
|
||||
$tabCommentaires[20011000][2][40] = "<BR>Dans le cadre de notre étude, voici les principales forces et faiblesses que nous avons relevées :";
|
||||
$tabCommentaires[20011900][2][0] = "<BR>";
|
||||
$tabCommentaires[20011900][2][10] = "<I>A noter que au delà des aspects financiers, patrimoniaux et de rentabilité, la valeur de l'entreprise est plus ou moins influencée par ses qualités intrinsèques :";
|
||||
$tabCommentaires[20011900][2][20] = "<LI> Potentiel de développement.";
|
||||
$tabCommentaires[20011900][2][21] = "<LI> Positionnement sur son marché et concurrence.";
|
||||
$tabCommentaires[20011900][2][22] = "<LI> Lien de dépendance et impact du départ du dirigeant.";
|
||||
$tabCommentaires[20011900][2][23] = "<LI> Motivation et ambiance interne.";
|
||||
$tabCommentaires[20011900][2][30] = "Ces caractéristiques jouent sur la valeur en l'améliorant ou en la pénalisant.</I>";
|
||||
$tabCommentaires[20012000][2][10] = "L'évaluation financière de l'entreprise que nous réalisons ici, au titre de l'exercice {BILANANNEE} repose sur les comptes annuels des 3 derniers exercices dont les éléments sont listés ci dessous.";
|
||||
$tabCommentaires[20012001][2][10] = "L'évaluation financière de l'entreprise que nous réalisons ici, au titre de l'exercice {BILANANNEE} repose sur les comptes annuels de l'exercice dont les éléments sont listés ci dessous.";
|
||||
$tabCommentaires[20012002][2][10] = "L'évaluation financière de l'entreprise que nous réalisons ici, au titre de l'exercice {BILANANNEE} repose sur les comptes annuels des 2 derniers exercices dont les éléments sont listés ci dessous.";
|
||||
$tabCommentaires[20012100][2][0] = "<TABLE CLASS=\"TABLEAUBILAN\">";
|
||||
$tabCommentaires[20012100][2][1] = "<TR CLASS=\"TITRES\"> <TH> BILAN</TH><TH>{BILANDATEp2} ({nmp2} mois)</TH><TH>{BILANDATEp} ({nmp} mois)</TH><TH>{BILANDATE} ({nm} mois)</TH></TR>";
|
||||
$tabCommentaires[20012110][2][8] = "<TR CLASS=\"TOTAL\"><TH>Total Actif </TH><TD>{Rp2[069]}</TD><TD>{Rp[069]}</TD><TD>{R[069]}</TD></TR>";
|
||||
$tabCommentaires[20012110][2][9] = "<TR CLASS=\"BLANC\"><TH>Dont: </TH><TD> </TD><TD> </TD><TD> </TD></TR>";
|
||||
$tabCommentaires[20012110][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Immobilisations</TH><TD>{Rp2[059]}</TD><TD>{Rp[059]}</TD><TD>{R[059]}</TD></TR>";
|
||||
$tabCommentaires[20012110][2][21] = "<TR CLASS=\"BLANC\"><TH>Stocks</TH><TD>{Rp2[060]}</TD><TD>{Rp[060]}</TD><TD>{R[060]}</TD></TR>";
|
||||
$tabCommentaires[20012110][2][31] = "<TR CLASS=\"LIGNE1\"><TH>Créances clients </TH><TD>{Rp2[061]}</TD><TD>{Rp[061]}</TD><TD>{R[061]}</TD></TR>";
|
||||
$tabCommentaires[20012110][2][41] = "<TR CLASS=\"BLANC\"><TH>Autres créances </TH><TD>{Rp2[062]}</TD><TD>{Rp[062]}</TD><TD>{R[062]}</TD></TR>";
|
||||
$tabCommentaires[20012110][2][51] = "<TR CLASS=\"LIGNE1\"><TH>Disponibilités </TH><TD>{Rp2[063]}</TD><TD>{Rp[063]}</TD><TD>{R[063]}</TD></TR>";
|
||||
$tabCommentaires[20012120][2][1] = "<TR CLASS=\"TOTAL\"><TH>Total Passif </TH><TD>{Rp2[022]}</TD><TD>{Rp[022]}</TD><TD>{R[022]}</TD></TR>";
|
||||
$tabCommentaires[20012120][2][9] = "<TR CLASS=\"BLANC\"><TH>Dont: </TH><TD> </TD><TD> </TD><TD> </TD></TR>";
|
||||
$tabCommentaires[20012120][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Capitaux propres </TH><TD>{Rp2[070]}</TD><TD>{Rp[070]}</TD><TD>{R[070]}</TD></TR>";
|
||||
$tabCommentaires[20012120][2][21] = "<TR CLASS=\"BLANC\"><TH>Provisions pour risques & charges </TH><TD>{Rp2[071]}</TD><TD>{Rp[071]}</TD><TD>{R[071]}</TD></TR>";
|
||||
$tabCommentaires[20012120][2][31] = "<TR CLASS=\"LIGNE1\"><TH>Dettes financières </TH><TD>{Rp2[083]}</TD><TD>{Rp[083]}</TD><TD>{R[083]}</TD></TR>";
|
||||
$tabCommentaires[20012120][2][41] = "<TR CLASS=\"BLANC\"><TH>Dettes fournisseurs </TH><TD>{Rp2[084]}</TD><TD>{Rp[084]}</TD><TD>{R[084]}</TD></TR>";
|
||||
$tabCommentaires[20012200][2][0] = "<TABLE CLASS=\"TABLEAUSITUFI\">";
|
||||
$tabCommentaires[20012200][2][2] = "<TR CLASS=\"TITRES\"> <TH> Situation financière</TH><TH>{BILANDATEp2} ({nmp2} mois)</TH><TH>{BILANDATEp} ({nmp} mois)</TH><TH>{BILANDATE} ({nm} mois)</TH></TR>";
|
||||
$tabCommentaires[20012210][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Dettes </TH><TD>{Rp2[032]}</TD><TD>{Rp[032]}</TD><TD>{R[032]}</TD></TR>";
|
||||
$tabCommentaires[20012210][2][21] = "<TR CLASS=\"BLANC\"><TH>Capacité d'autofinancement </TH><TD>{Rp2[233]}</TD><TD>{Rp[233]}</TD><TD>{R[233]}</TD></TR>";
|
||||
$tabCommentaires[20012210][2][31] = "<TR CLASS=\"LIGNE1\"><TH>Fonds de Roulement </TH><TD>{Rp2[231]}</TD><TD>{Rp[231]}</TD><TD>{R[231]}</TD></TR>";
|
||||
$tabCommentaires[20012210][2][41] = "<TR CLASS=\"BLANC\"><TH>Besoin en Fonds de Roulement </TH><TD>{Rp2[232]}</TD><TD>{Rp[232]}</TD><TD>{R[232]}</TD></TR>";
|
||||
$tabCommentaires[20012210][2][51] = "<TR CLASS=\"TOTAL\"><TH>Trésorerie </TH><TD>{Rp2[249]}</TD><TD>{Rp[249]}</TD><TD>{R[249]}</TD></TR>";
|
||||
$tabCommentaires[20012220][2][1] = "<BR>Ci-dessous la comparaison des Fonds de Roulement, Besoin en fonds de Roulement & trésorerie.";
|
||||
$tabCommentaires[20012220][2][10] = "{GRAPH(\"Situation financière\",R[231]#T,R[232]#T,R[249]#T)}";
|
||||
$tabCommentaires[20012400][2][0] = "<TABLE CLASS=\"TABLEAURESULTAT\">";
|
||||
$tabCommentaires[20012400][2][2] = "<TR CLASS=\"TITRES\"> <TH> Compte de Résultat </TH><TH>{BILANDATEp2} ({nmp2} mois)</TH><TH>{BILANDATEp} ({nmp} mois)</TH><TH>{BILANDATE} ({nm} mois)</TH></TR>";
|
||||
$tabCommentaires[20012410][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Chiffre d'affaires </TH><TD>{Rp2[005]}</TD><TD>{Rp[005]}</TD><TD>{R[005]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][21] = "<TR CLASS=\"BLANC\"><TH>Marge commerciale </TH><TD>{Rp2[110]}</TD><TD>{Rp[110]}</TD><TD>{R[110]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][31] = "<TR CLASS=\"LIGNE1\"><TH>Valeur ajoutée </TH><TD>{Rp2[130]}</TD><TD>{Rp[130]}</TD><TD>{R[130]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][41] = "<TR CLASS=\"BLANC\"><TH>Excédent brut d'exploitation </TH><TD>{Rp2[140]}</TD><TD>{Rp[140]}</TD><TD>{R[140]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][51] = "<TR CLASS=\"LIGNE1\"><TH>Résultat courant avant impôts </TH><TD>{Rp2[150]}</TD><TD>{Rp[150]}</TD><TD>{R[150]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][61] = "<TR CLASS=\"BLANC\"><TH>Résultat exceptionnel </TH><TD>{Rp2[180]}</TD><TD>{Rp[180]}</TD><TD>{R[180]}</TD></TR>";
|
||||
$tabCommentaires[20012410][2][71] = "<TR CLASS=\"LIGNE1\"><TH>Résultat net </TH><TD>{Rp2[010]}</TD><TD>{Rp[010]}</TD><TD>{R[010]}</TD></TR>";
|
||||
$tabCommentaires[20012420][2][1] = "<BR>Ci-dessous la comparaison des Chiffres d'affaires, Marge brute et Résultat.";
|
||||
$tabCommentaires[20012420][2][10] = "{GRAPH(\"CA,Marge,Résultat\",R[005]#T,R[122]#T,R[010]#T)}";
|
||||
$tabCommentaires[20020100][2][0] = "<H3> Multiple du Chiffre d'affaires";
|
||||
$tabCommentaires[20020100][2][10] = "Cette méthode, la plus connue et la plus simple, est principalement utilisée pour avaluer les fonds de commerce.";
|
||||
$tabCommentaires[20020100][2][45] = "En l’absence de marché, l’évaluation des éléments incorporels de ces fonds se fait selon une méthode forfaitaire, selon les performances et l’activité de l’entreprise.";
|
||||
$tabCommentaires[20020100][2][51] = "Selon la méthode du multiple du Chiffre d'affaires l'estimation se situe entre {VAL970_EU} et {VAL971_EU}.";
|
||||
$tabCommentaires[20020110][2][1] = "<BR>Ci-dessous l'évolution du chiffre d'affaires.";
|
||||
$tabCommentaires[20020110][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20020110][2][10] = "{GRAPH(\"Chiffre d'affaires\",R[006]#H)}";
|
||||
$tabCommentaires[20021200][2][0] = "<H3> Méthode de la valeur patrimoniale";
|
||||
$tabCommentaires[20021200][2][10] = "La valeur patrimoniale correspond souvent à la valeur plancher de l'entreprise.";
|
||||
$tabCommentaires[20021200][2][51] = "La fourchette de notre estimation selon la méthode de la valeur patrimoniale s'établit entre {VAL978_EU} et {VAL979_EU}.";
|
||||
$tabCommentaires[20021210][2][1] = "<BR>Ci-dessous l'évolution de l'actif immobilisé net.";
|
||||
$tabCommentaires[20021210][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20021210][2][10] = "{GRAPH(\"Actif Immobilisé NET\",R[059]#H)}";
|
||||
$tabCommentaires[20022200][2][0] = "<H3> Méthode de la valeur de productivité";
|
||||
$tabCommentaires[20022200][2][51] = "La méthode de la valeur de la productivité est l'expression de la rentabilité de l’entreprise au travers la capitalisation du benéfice corrigé des dotations. Elle débouche sur une valorisation entre {VAL974_EU} et {VAL975_EU}.";
|
||||
$tabCommentaires[20022210][2][1] = "<BR>Ci-dessous l'évolution du Résultat Courant Avant Impôts.";
|
||||
$tabCommentaires[20022210][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20022210][2][10] = "{GRAPH(\"RCAI\",R[008]#H)}";
|
||||
$tabCommentaires[20022500][2][0] = "<H3> Méthode de la valeur du rendement";
|
||||
$tabCommentaires[20022500][2][11] = "Cette méthode se fonde sur le bénéfice distribué, elle ne se conçoit qu’à l’égard d’entreprises sociétaires qui pratiquent une politique régulière de distribution.";
|
||||
$tabCommentaires[20022500][2][51] = "Le résultat de la méthode de la valeur du rendement se situe entre {VAL982_EU} et {VAL983_EU}.";
|
||||
$tabCommentaires[20022510][2][1] = "<BR>Ci-dessous l'évolution des dividendes distribués.";
|
||||
$tabCommentaires[20022510][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20022510][2][10] = "{GRAPH(\"Dividendes distribués\",R[529]#H)}";
|
||||
$tabCommentaires[20023100][2][0] = "<H3> Multiple du Bénéfice";
|
||||
$tabCommentaires[20023100][2][10] = "On peux considérer qu’une entreprise vaut par sa rentabilité, sur la base d’un multiple de ses résultats. Le bénéfice à retenir est établi à partir du résultat net courant (résultat courant avant impôt, minoré de l’impôt sur les sociétés), afin d’éliminer les éléments exceptionnels affectant le résultat net comptable.";
|
||||
$tabCommentaires[20023100][2][51] = "Par la méthode du multiple du Bénéfice l'entreprise est valorisée entre {VAL984_EU} et {VAL985_EU}.";
|
||||
$tabCommentaires[20023110][2][1] = "<BR>Ci-dessous l'évolution du bénéfice réel (RCAI-impôts).";
|
||||
$tabCommentaires[20023110][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20023110][2][10] = "{GRAPH(\"Bénéfice réel\",R[318]#H)}";
|
||||
$tabCommentaires[20025200][2][0] = "<H3> Multiple de l'EBE";
|
||||
$tabCommentaires[20025200][2][10] = "Cette méthode repose sur une évaluation globale de l’entreprise prenant en compte l’endettement financier de la société.";
|
||||
$tabCommentaires[20025200][2][20] = "La valorisation par l'EBE conduit à une fourchette de valeurs entre {VAL986_EU} et {VAL987_EU}.";
|
||||
$tabCommentaires[20025210][2][1] = "<BR>Ci-dessous l'évolution de l'Excédent Brut d'Exploitation.";
|
||||
$tabCommentaires[20025210][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20025210][2][10] = "{GRAPH(\"EBE\",R[301]#H)}";
|
||||
$tabCommentaires[20026100][2][0] = "<H3> Multiple de la MBA";
|
||||
$tabCommentaires[20026100][2][10] = "Cette méthode est plus particulièrement adaptée aux sociétés qui nécessitent des investissements et constatent des amortissements importants.";
|
||||
$tabCommentaires[20026100][2][11] = "La présence de terrains dans une forte proportion élargit la fourchette de l'estimation. ";
|
||||
$tabCommentaires[20026100][2][20] = "Selon cette méthode la valeur de l'entreprise se situe entre {VAL988_EU} et {VAL989_EU}.";
|
||||
$tabCommentaires[20026101][2][0] = "<H3> Multiple de la MBA";
|
||||
$tabCommentaires[20026101][2][10] = "Cette méthode est plus particulièrement adaptée aux sociétés qui nécessitent des investissements et constatent des amortissements importants.";
|
||||
$tabCommentaires[20026101][2][20] = "Selon cette méthode la valeur de l'entreprise se situe entre {VAL988_EU} et {VAL989_EU}.";
|
||||
$tabCommentaires[20026110][2][1] = "<BR>Ci-dessous l'évolution de la Marge Brute d'Autofinancement.";
|
||||
$tabCommentaires[20026110][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20026110][2][10] = "{GRAPH(\"MBA\",R[333]#H)}";
|
||||
$tabCommentaires[20027100][2][0] = "<H3> Méthode par comparaison";
|
||||
$tabCommentaires[20027100][2][10] = "La méthode par comparaison repose sur le postulat que des sociétés comparables se valorisent sur des critères et des règles identiques. Cette approche consiste donc à établir des comparaisons avec des transactions intervenues sur le marché des fusions-acquisitions et de l'historique des ventes et cessions, d'entreprises du même profil dans la même région.";
|
||||
$tabCommentaires[20027100][2][20] = "Par l'étude des transactions récentes, la valeur de l'entreprise se situe entre {VAL996_EU} et {VAL997_EU}.";
|
||||
$tabCommentaires[20028100][2][0] = "<H3> Méthode d’évaluation par la Situation Nette Comptable (SNC)";
|
||||
$tabCommentaires[20028100][2][1] = "Un des axes de l'évalutation peut s'appuyer sur la situation nette comptable (SNC) de la société, l'actif net, c'est-à-dire amorti, corrigé des dettes.";
|
||||
$tabCommentaires[20028100][2][20] = "Valorisation par la Situation Nette Comptable entre {VAL976_EU} et {VAL977_EU}.";
|
||||
$tabCommentaires[20028110][2][1] = "<BR>Ci-dessous l'évolution de la Situation Nette Comptable.";
|
||||
$tabCommentaires[20028110][2][9] = "COULEUR(VER3,ROU2,JAU)";
|
||||
$tabCommentaires[20028110][2][10] = "{GRAPH(\"Situation nette\",R[091]#H)}";
|
||||
$tabCommentaires[20050100][2][10] = "Dans notre étude, voici les méthodes que nous avons retenues. Elles vous sont présentées sous forme de tableau avec leur fourchette de valeurs, pour une meilleure représentativité de chacune d'entre elle dans la valorisation globale de l'entreprise :";
|
||||
$tabCommentaires[20080201][2][0] = "<TABLE CLASS=\"TABLEAURESULTAT\">";
|
||||
$tabCommentaires[20080201][2][2] = "<TR CLASS=\"TITRES\"> <TH> Pondération des méthodes </TH><TH>Valeur mini</TH><TH>Valeur maxi</TH></TR>";
|
||||
$tabCommentaires[20080210][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Valeur patrimoniale </TH><TD>{VAL978_EU}</TD><TD>{VAL979_EU}</TD></TR>";
|
||||
$tabCommentaires[20080215][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Selon le Chiffre d'affaires </TH><TD>{VAL970_EU}</TD><TD>{VAL971_EU}</TD></TR>";
|
||||
$tabCommentaires[20080217][2][11] = "<TR CLASS=\"LIGNE1\"><TH>Selon la siuation nette comptable </TH><TD>{VAL976_EU}</TD><TD>{VAL977_EU}</TD></TR>";
|
||||
$tabCommentaires[20080220][2][21] = "<TR CLASS=\"LIGNE2\"><TH>Valeur de productivité </TH><TD>{VAL982_EU}</TD><TD>{VAL983_EU}</TD></TR>";
|
||||
$tabCommentaires[20080230][2][31] = "<TR CLASS=\"LIGNE1\"><TH>Capitalisation du bénéfice </TH><TD>{VAL984_EU}</TD><TD>{VAL985_EU}</TD></TR>";
|
||||
$tabCommentaires[20080240][2][41] = "<TR CLASS=\"LIGNE2\"><TH>Capitalisation selon l'EBE </TH><TD>{VAL986_EU}</TD><TD>{VAL987_EU}</TD></TR>";
|
||||
$tabCommentaires[20080250][2][51] = "<TR CLASS=\"LIGNE1\"><TH>Capitalisation selon la MBA </TH><TD>{VAL988_EU}</TD><TD>{VAL989_EU}</TD></TR>";
|
||||
$tabCommentaires[20080260][2][61] = "<TR CLASS=\"LIGNE2\"><TH>Capitalisation selon la CAF+Trésorerie </TH><TD>{VAL990_EU}</TD><TD>{VAL991_EU}</TD></TR>";
|
||||
$tabCommentaires[20080270][2][71] = "<TR CLASS=\"LIGNE1\"><TH>Capitaux risqueurs </TH><TD>{VAL992_EU}</TD><TD>{VAL993_EU}</TD></TR>";
|
||||
$tabCommentaires[20080280][2][81] = "<TR CLASS=\"LIGNE2\"><TH>Patrimoniale + GOODWILL </TH><TD>{VAL994_EU}</TD><TD>{VAL995_EU}</TD></TR>";
|
||||
$tabCommentaires[20080290][2][81] = "<TR CLASS=\"TOTAL\"><TH>Comparative cessions profils similaires </TH><TD>{VAL996_EU}</TD><TD>{VAL997_EU}</TD></TR>";
|
||||
$tabCommentaires[20090310][2][0] = "<TABLE CLASS=\"TABLEAUHAUTBAS\">";
|
||||
$tabCommentaires[20090310][2][2] = "<TR CLASS=\"TITRES\"> <TH> </TH><TH> estimation haute</TH></TR>";
|
||||
$tabCommentaires[20090310][2][11] = "<TR CLASS=\"BLANC\"><TD> </TD><TD CLASS=\"TOTAL\">{VAL999_EU}</TD></TR>";
|
||||
$tabCommentaires[20090310][2][12] = "<TR CLASS=\"TITRES\"> <TH> estimation basse </TH><TH> </TH></TR>";
|
||||
$tabCommentaires[20090310][2][21] = "<TR CLASS=\"BLANC\"><TD CLASS=\"TOTAL\">{VAL998_EU} </TD><TD> </TD></TR>";
|
||||
$tabCommentaires[20090510][2][20] = "<LI> Les immobilisations corporelles doivent être réévaluées à leur valeur de marché et non comptable. ";
|
||||
$tabCommentaires[20090610][2][20] = "<LI> L?estimation finale devrait intégrer l?ensemble des dettes à court terme exigibles au moment de la cession.";
|
||||
$tabCommentaires[20090611][2][20] = "<LI> L?estimation finale devrait intégrer l?ensemble des dettes à court, moyen et long termes exigibles au moment de la cession.";
|
||||
$tabCommentaires[20090710][2][20] = "<LI> Il conviendra de vérifier l?exactitude des dettes financières portées au bilan.";
|
||||
$tabCommentaires[20090711][2][20] = "<LI> Il conviendra de vérifier l?exactitude des dettes fournisseurs portées au bilan.";
|
||||
$tabCommentaires[20090712][2][20] = "<LI> Il conviendra de vérifier l?exactitude des dettes financières et fournisseurs portées au bilan.";
|
||||
$tabCommentaires[20090810][2][20] = "<BR>A noter qu'aucune provision ne figure au bilan.";
|
||||
$tabCommentaires[20090810][2][30] = "<C.> Or, au vu de l'effectif de l'entreprise pourrait devoir provisionner les congés à payer de l?exercice, d?éventuelles indemnités de fin de carrière ou de départ.";
|
||||
$tabCommentaires[20090830][2][20] = "<BR> A noter que les provisions semblent anormalement limitées.";
|
||||
$tabCommentaires[20090830][2][30] = "<C.> Or, au vu de l'effectif de l'entreprise pourrait devoir provisionner les congés à payer de l?exercice, d?éventuelles indemnités de fin de carrière ou de départ.";
|
||||
$tabCommentaires[20090840][2][20] = "<BR> A noter que les provisions semblent anormalement élevées.";
|
||||
$tabCommentaires[20090910][2][20] = "<LI> Le foncier représente une part importante des actifs, une divergeance de sa valeur par rapport au marché aura un fort impact sur l'évaluation. ";
|
||||
$tabCommentaires[100000100][2][0] = "<H1>PRESENTATION";
|
||||
$tabCommentaires[100001000][2][0] = "<H1>DIAGNOSTIC";
|
||||
$tabCommentaires[100002000][2][0] = "<H1>PATRIMOINE & RESULTATS";
|
||||
$tabCommentaires[100003000][2][0] = "<H2>BILANS";
|
||||
$tabCommentaires[100004000][2][0] = "<H2>COMPTE DE RESULTAT";
|
||||
$tabCommentaires[100005000][2][0] = "<H1>RETRAITEMENT";
|
||||
$tabCommentaires[100010000][2][0] = "<H1>METHODES DE CALCUL";
|
||||
$tabCommentaires[100015000][2][0] = "<H2>Les méthodes retenues";
|
||||
$tabCommentaires[100016000][2][0] = "<H2>Pondération des méthodes";
|
||||
$tabCommentaires[100019000][2][0] = "<H1>CONCLUSION";
|
||||
$tabCommentaires[100019100][2][0] = "<H2>Observations";
|
||||
$tabTri=array();
|
||||
$tabTri[100] = 100;
|
||||
$tabTri[5000] = 1000;
|
||||
$tabTri[7000] = 5000;
|
||||
$tabTri[7001] = 5000;
|
||||
$tabTri[7002] = 5000;
|
||||
$tabTri[7003] = 5000;
|
||||
$tabTri[9995] = 13101;
|
||||
$tabTri[9996] = 13100;
|
||||
$tabTri[199000] = 15100;
|
||||
$tabTri[200000] = 15100;
|
||||
$tabTri[201000] = 15100;
|
||||
$tabTri[202000] = 15100;
|
||||
$tabTri[203000] = 15100;
|
||||
$tabTri[204000] = 15100;
|
||||
$tabTri[205000] = 15100;
|
||||
$tabTri[205099] = 15010;
|
||||
$tabTri[205200] = 15010;
|
||||
$tabTri[735100] = 10200;
|
||||
$tabTri[735100] = 10200;
|
||||
$tabTri[735110] = 10200;
|
||||
$tabTri[735111] = 10200;
|
||||
$tabTri[735112] = 10200;
|
||||
$tabTri[735200] = 10200;
|
||||
$tabTri[735300] = 10200;
|
||||
$tabTri[735500] = 10200;
|
||||
$tabTri[735500] = 10200;
|
||||
$tabTri[735930] = 10202;
|
||||
$tabTri[735930] = 10202;
|
||||
$tabTri[735950] = 10202;
|
||||
$tabTri[735950] = 10202;
|
||||
$tabTri[2400101] = 52201;
|
||||
$tabTri[2400102] = 52201;
|
||||
$tabTri[2400103] = 52201;
|
||||
$tabTri[2400109] = 52201;
|
||||
$tabTri[2400111] = 52201;
|
||||
$tabTri[2400112] = 52201;
|
||||
$tabTri[2400119] = 52201;
|
||||
$tabTri[2400121] = 52201;
|
||||
$tabTri[2400122] = 52201;
|
||||
$tabTri[2400123] = 52201;
|
||||
$tabTri[2400124] = 52201;
|
||||
$tabTri[2400125] = 52201;
|
||||
$tabTri[2400126] = 52201;
|
||||
$tabTri[2400200] = 52201;
|
||||
$tabTri[2400210] = 52201;
|
||||
$tabTri[2400300] = 52201;
|
||||
$tabTri[2400310] = 52201;
|
||||
$tabTri[2400410] = 52201;
|
||||
$tabTri[2400420] = 52201;
|
||||
$tabTri[2400430] = 52201;
|
||||
$tabTri[3902100] = 10209;
|
||||
$tabTri[3902101] = 10209;
|
||||
$tabTri[3902110] = 10209;
|
||||
$tabTri[3902111] = 10209;
|
||||
$tabTri[3902130] = 10209;
|
||||
$tabTri[3902131] = 10209;
|
||||
$tabTri[3902200] = 10209;
|
||||
$tabTri[3902300] = 10209;
|
||||
$tabTri[3902301] = 10209;
|
||||
$tabTri[3902310] = 10209;
|
||||
$tabTri[3902311] = 10209;
|
||||
$tabTri[3902330] = 10209;
|
||||
$tabTri[3902331] = 10209;
|
||||
$tabTri[3902900] = 10209;
|
||||
$tabTri[3910001] = 10100;
|
||||
$tabTri[3910001] = 10100;
|
||||
$tabTri[3910100] = 10100;
|
||||
$tabTri[3910101] = 10100;
|
||||
$tabTri[3910120] = 10100;
|
||||
$tabTri[3910121] = 10100;
|
||||
$tabTri[3910130] = 10100;
|
||||
$tabTri[3910131] = 10100;
|
||||
$tabTri[3910135] = 10100;
|
||||
$tabTri[3910136] = 10100;
|
||||
$tabTri[3910140] = 10100;
|
||||
$tabTri[3910141] = 10100;
|
||||
$tabTri[3910145] = 10100;
|
||||
$tabTri[3910146] = 10100;
|
||||
$tabTri[3910150] = 10100;
|
||||
$tabTri[3910151] = 10100;
|
||||
$tabTri[3910155] = 10100;
|
||||
$tabTri[3910156] = 10100;
|
||||
$tabTri[3910160] = 10100;
|
||||
$tabTri[3910161] = 10100;
|
||||
$tabTri[3910170] = 10100;
|
||||
$tabTri[3910171] = 10100;
|
||||
$tabTri[3910180] = 10100;
|
||||
$tabTri[3910181] = 10100;
|
||||
$tabTri[3910190] = 10100;
|
||||
$tabTri[3910191] = 10100;
|
||||
$tabTri[3911001] = 10100;
|
||||
$tabTri[3911001] = 10100;
|
||||
$tabTri[3911100] = 10100;
|
||||
$tabTri[3911101] = 10100;
|
||||
$tabTri[3911110] = 10100;
|
||||
$tabTri[3911111] = 10100;
|
||||
$tabTri[3911120] = 10100;
|
||||
$tabTri[3911121] = 10100;
|
||||
$tabTri[3911130] = 10100;
|
||||
$tabTri[3911131] = 10100;
|
||||
$tabTri[3911145] = 10100;
|
||||
$tabTri[3911146] = 10100;
|
||||
$tabTri[3911150] = 10100;
|
||||
$tabTri[3911151] = 10100;
|
||||
$tabTri[3911160] = 10100;
|
||||
$tabTri[3911161] = 10100;
|
||||
$tabTri[3911170] = 10100;
|
||||
$tabTri[3911171] = 10100;
|
||||
$tabTri[3911180] = 10100;
|
||||
$tabTri[3911181] = 10100;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20001000] = 1001;
|
||||
$tabTri[20011000] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20011900] = 10100;
|
||||
$tabTri[20012000] = 10120;
|
||||
$tabTri[20012001] = 10120;
|
||||
$tabTri[20012002] = 10120;
|
||||
$tabTri[20012100] = 10120;
|
||||
$tabTri[20012100] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012110] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012120] = 10120;
|
||||
$tabTri[20012200] = 10130;
|
||||
$tabTri[20012200] = 10130;
|
||||
$tabTri[20012210] = 10130;
|
||||
$tabTri[20012210] = 10130;
|
||||
$tabTri[20012210] = 10130;
|
||||
$tabTri[20012210] = 10130;
|
||||
$tabTri[20012210] = 10130;
|
||||
$tabTri[20012220] = 10135;
|
||||
$tabTri[20012220] = 10135;
|
||||
$tabTri[20012400] = 10140;
|
||||
$tabTri[20012400] = 10140;
|
||||
$tabTri[20012410] = 10140;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012410] = 10120;
|
||||
$tabTri[20012420] = 10200;
|
||||
$tabTri[20012420] = 10135;
|
||||
$tabTri[20020100] = 10200;
|
||||
$tabTri[20020100] = 10200;
|
||||
$tabTri[20020100] = 10200;
|
||||
$tabTri[20020100] = 10200;
|
||||
$tabTri[20020110] = 10200;
|
||||
$tabTri[20020110] = 10200;
|
||||
$tabTri[20020110] = 10200;
|
||||
$tabTri[20021200] = 10201;
|
||||
$tabTri[20021200] = 10201;
|
||||
$tabTri[20021200] = 10201;
|
||||
$tabTri[20021210] = 10201;
|
||||
$tabTri[20021210] = 10201;
|
||||
$tabTri[20021210] = 10201;
|
||||
$tabTri[20022200] = 10202;
|
||||
$tabTri[20022200] = 10202;
|
||||
$tabTri[20022210] = 10202;
|
||||
$tabTri[20022210] = 10202;
|
||||
$tabTri[20022210] = 10202;
|
||||
$tabTri[20022500] = 10204;
|
||||
$tabTri[20022500] = 10204;
|
||||
$tabTri[20022500] = 10204;
|
||||
$tabTri[20022510] = 10204;
|
||||
$tabTri[20022510] = 10204;
|
||||
$tabTri[20022510] = 10204;
|
||||
$tabTri[20023100] = 10205;
|
||||
$tabTri[20023100] = 10205;
|
||||
$tabTri[20023100] = 10205;
|
||||
$tabTri[20023110] = 10205;
|
||||
$tabTri[20023110] = 10205;
|
||||
$tabTri[20023110] = 10205;
|
||||
$tabTri[20025200] = 10206;
|
||||
$tabTri[20025200] = 10206;
|
||||
$tabTri[20025200] = 10206;
|
||||
$tabTri[20025210] = 10206;
|
||||
$tabTri[20025210] = 10206;
|
||||
$tabTri[20025210] = 10206;
|
||||
$tabTri[20026100] = 10207;
|
||||
$tabTri[20026100] = 10207;
|
||||
$tabTri[20026100] = 10207;
|
||||
$tabTri[20026100] = 10207;
|
||||
$tabTri[20026101] = 10207;
|
||||
$tabTri[20026101] = 10207;
|
||||
$tabTri[20026101] = 10207;
|
||||
$tabTri[20026110] = 10207;
|
||||
$tabTri[20026110] = 10207;
|
||||
$tabTri[20026110] = 10207;
|
||||
$tabTri[20027100] = 10209;
|
||||
$tabTri[20027100] = 10209;
|
||||
$tabTri[20027100] = 10207;
|
||||
$tabTri[20028100] = 10210;
|
||||
$tabTri[20028100] = 10210;
|
||||
$tabTri[20028100] = 10210;
|
||||
$tabTri[20028110] = 10210;
|
||||
$tabTri[20028110] = 10210;
|
||||
$tabTri[20028110] = 10210;
|
||||
$tabTri[20050100] = 10300;
|
||||
$tabTri[20080201] = 10400;
|
||||
$tabTri[20080201] = 10400;
|
||||
$tabTri[20080210] = 10400;
|
||||
$tabTri[20080215] = 10400;
|
||||
$tabTri[20080217] = 10400;
|
||||
$tabTri[20080220] = 10400;
|
||||
$tabTri[20080230] = 10400;
|
||||
$tabTri[20080240] = 10400;
|
||||
$tabTri[20080250] = 10400;
|
||||
$tabTri[20080260] = 10400;
|
||||
$tabTri[20080270] = 10400;
|
||||
$tabTri[20080280] = 10400;
|
||||
$tabTri[20080290] = 10400;
|
||||
$tabTri[20090310] = 10900;
|
||||
$tabTri[20090310] = 10900;
|
||||
$tabTri[20090310] = 10900;
|
||||
$tabTri[20090310] = 10900;
|
||||
$tabTri[20090310] = 10900;
|
||||
$tabTri[20090510] = 10910;
|
||||
$tabTri[20090610] = 10910;
|
||||
$tabTri[20090611] = 10910;
|
||||
$tabTri[20090710] = 10910;
|
||||
$tabTri[20090711] = 10910;
|
||||
$tabTri[20090712] = 10910;
|
||||
$tabTri[20090810] = 10910;
|
||||
$tabTri[20090810] = 10910;
|
||||
$tabTri[20090830] = 10910;
|
||||
$tabTri[20090830] = 10910;
|
||||
$tabTri[20090840] = 10910;
|
||||
$tabTri[20090910] = 10910;
|
||||
$tabTri[100000100] = 10010;
|
||||
$tabTri[100001000] = 10100;
|
||||
$tabTri[100002000] = 10120;
|
||||
$tabTri[100003000] = 10130;
|
||||
$tabTri[100004000] = 10140;
|
||||
$tabTri[100005000] = 10150;
|
||||
$tabTri[100010000] = 10200;
|
||||
$tabTri[100015000] = 10300;
|
||||
$tabTri[100016000] = 10400;
|
||||
$tabTri[100019000] = 10900;
|
||||
$tabTri[100019100] = 10910;
|
||||
$tabTriAff=array();
|
||||
$tabTriAff[100] = 100.100001;
|
||||
$tabTriAff[5000] = 1000.10005;
|
||||
$tabTriAff[7000] = 5000.10007;
|
||||
$tabTriAff[7001] = 5000.10007001;
|
||||
$tabTriAff[7002] = 5000.10007002;
|
||||
$tabTriAff[7003] = 5000.10007003;
|
||||
$tabTriAff[9995] = 13101.10009995;
|
||||
$tabTriAff[9996] = 13100.10009996;
|
||||
$tabTriAff[199000] = 15100.10199;
|
||||
$tabTriAff[200000] = 15100.102;
|
||||
$tabTriAff[201000] = 15100.10201;
|
||||
$tabTriAff[202000] = 15100.10202;
|
||||
$tabTriAff[203000] = 15100.10203;
|
||||
$tabTriAff[204000] = 15100.10204;
|
||||
$tabTriAff[205000] = 15100.10205;
|
||||
$tabTriAff[205099] = 15010.10205099;
|
||||
$tabTriAff[205200] = 15010.102052;
|
||||
$tabTriAff[735100] = 10200.107351;
|
||||
$tabTriAff[735100] = 10200.107351;
|
||||
$tabTriAff[735110] = 10200.1073511;
|
||||
$tabTriAff[735111] = 10200.10735111;
|
||||
$tabTriAff[735112] = 10200.10735112;
|
||||
$tabTriAff[735200] = 10200.107352;
|
||||
$tabTriAff[735300] = 10200.107353;
|
||||
$tabTriAff[735500] = 10200.107355;
|
||||
$tabTriAff[735500] = 10200.107355;
|
||||
$tabTriAff[735930] = 10202.1073593;
|
||||
$tabTriAff[735930] = 10202.1073593;
|
||||
$tabTriAff[735950] = 10202.1073595;
|
||||
$tabTriAff[735950] = 10202.1073595;
|
||||
$tabTriAff[2400101] = 52201.12400101;
|
||||
$tabTriAff[2400102] = 52201.12400102;
|
||||
$tabTriAff[2400103] = 52201.12400103;
|
||||
$tabTriAff[2400109] = 52201.12400109;
|
||||
$tabTriAff[2400111] = 52201.12400111;
|
||||
$tabTriAff[2400112] = 52201.12400112;
|
||||
$tabTriAff[2400119] = 52201.12400119;
|
||||
$tabTriAff[2400121] = 52201.12400121;
|
||||
$tabTriAff[2400122] = 52201.12400122;
|
||||
$tabTriAff[2400123] = 52201.12400123;
|
||||
$tabTriAff[2400124] = 52201.12400124;
|
||||
$tabTriAff[2400125] = 52201.12400125;
|
||||
$tabTriAff[2400126] = 52201.12400126;
|
||||
$tabTriAff[2400200] = 52201.124002;
|
||||
$tabTriAff[2400210] = 52201.1240021;
|
||||
$tabTriAff[2400300] = 52201.124003;
|
||||
$tabTriAff[2400310] = 52201.1240031;
|
||||
$tabTriAff[2400410] = 52201.1240041;
|
||||
$tabTriAff[2400420] = 52201.1240042;
|
||||
$tabTriAff[2400430] = 52201.1240043;
|
||||
$tabTriAff[3902100] = 10209.139021;
|
||||
$tabTriAff[3902101] = 10209.13902101;
|
||||
$tabTriAff[3902110] = 10209.1390211;
|
||||
$tabTriAff[3902111] = 10209.13902111;
|
||||
$tabTriAff[3902130] = 10209.1390213;
|
||||
$tabTriAff[3902131] = 10209.13902131;
|
||||
$tabTriAff[3902200] = 10209.139022;
|
||||
$tabTriAff[3902300] = 10209.139023;
|
||||
$tabTriAff[3902301] = 10209.13902301;
|
||||
$tabTriAff[3902310] = 10209.1390231;
|
||||
$tabTriAff[3902311] = 10209.13902311;
|
||||
$tabTriAff[3902330] = 10209.1390233;
|
||||
$tabTriAff[3902331] = 10209.13902331;
|
||||
$tabTriAff[3902900] = 10209.139029;
|
||||
$tabTriAff[3910001] = 10100.13910001;
|
||||
$tabTriAff[3910001] = 10100.13910001;
|
||||
$tabTriAff[3910100] = 10100.139101;
|
||||
$tabTriAff[3910101] = 10100.13910101;
|
||||
$tabTriAff[3910120] = 10100.1391012;
|
||||
$tabTriAff[3910121] = 10100.13910121;
|
||||
$tabTriAff[3910130] = 10100.1391013;
|
||||
$tabTriAff[3910131] = 10100.13910131;
|
||||
$tabTriAff[3910135] = 10100.13910135;
|
||||
$tabTriAff[3910136] = 10100.13910136;
|
||||
$tabTriAff[3910140] = 10100.1391014;
|
||||
$tabTriAff[3910141] = 10100.13910141;
|
||||
$tabTriAff[3910145] = 10100.13910145;
|
||||
$tabTriAff[3910146] = 10100.13910146;
|
||||
$tabTriAff[3910150] = 10100.1391015;
|
||||
$tabTriAff[3910151] = 10100.13910151;
|
||||
$tabTriAff[3910155] = 10100.13910155;
|
||||
$tabTriAff[3910156] = 10100.13910156;
|
||||
$tabTriAff[3910160] = 10100.1391016;
|
||||
$tabTriAff[3910161] = 10100.13910161;
|
||||
$tabTriAff[3910170] = 10100.1391017;
|
||||
$tabTriAff[3910171] = 10100.13910171;
|
||||
$tabTriAff[3910180] = 10100.1391018;
|
||||
$tabTriAff[3910181] = 10100.13910181;
|
||||
$tabTriAff[3910190] = 10100.1391019;
|
||||
$tabTriAff[3910191] = 10100.13910191;
|
||||
$tabTriAff[3911001] = 10100.13911001;
|
||||
$tabTriAff[3911001] = 10100.13911001;
|
||||
$tabTriAff[3911100] = 10100.139111;
|
||||
$tabTriAff[3911101] = 10100.13911101;
|
||||
$tabTriAff[3911110] = 10100.1391111;
|
||||
$tabTriAff[3911111] = 10100.13911111;
|
||||
$tabTriAff[3911120] = 10100.1391112;
|
||||
$tabTriAff[3911121] = 10100.13911121;
|
||||
$tabTriAff[3911130] = 10100.1391113;
|
||||
$tabTriAff[3911131] = 10100.13911131;
|
||||
$tabTriAff[3911145] = 10100.13911145;
|
||||
$tabTriAff[3911146] = 10100.13911146;
|
||||
$tabTriAff[3911150] = 10100.1391115;
|
||||
$tabTriAff[3911151] = 10100.13911151;
|
||||
$tabTriAff[3911160] = 10100.1391116;
|
||||
$tabTriAff[3911161] = 10100.13911161;
|
||||
$tabTriAff[3911170] = 10100.1391117;
|
||||
$tabTriAff[3911171] = 10100.13911171;
|
||||
$tabTriAff[3911180] = 10100.1391118;
|
||||
$tabTriAff[3911181] = 10100.13911181;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20001000] = 1001.30001;
|
||||
$tabTriAff[20011000] = 10100.30011;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20011900] = 10100.300119;
|
||||
$tabTriAff[20012000] = 10120.30012;
|
||||
$tabTriAff[20012001] = 10120.30012001;
|
||||
$tabTriAff[20012002] = 10120.30012002;
|
||||
$tabTriAff[20012100] = 10120.300121;
|
||||
$tabTriAff[20012100] = 10120.300121;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012110] = 10120.3001211;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012120] = 10120.3001212;
|
||||
$tabTriAff[20012200] = 10130.300122;
|
||||
$tabTriAff[20012200] = 10130.300122;
|
||||
$tabTriAff[20012210] = 10130.3001221;
|
||||
$tabTriAff[20012210] = 10130.3001221;
|
||||
$tabTriAff[20012210] = 10130.3001221;
|
||||
$tabTriAff[20012210] = 10130.3001221;
|
||||
$tabTriAff[20012210] = 10130.3001221;
|
||||
$tabTriAff[20012220] = 10135.3001222;
|
||||
$tabTriAff[20012220] = 10135.3001222;
|
||||
$tabTriAff[20012400] = 10140.300124;
|
||||
$tabTriAff[20012400] = 10140.300124;
|
||||
$tabTriAff[20012410] = 10140.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012410] = 10120.3001241;
|
||||
$tabTriAff[20012420] = 10200.3001242;
|
||||
$tabTriAff[20012420] = 10135.3001242;
|
||||
$tabTriAff[20020100] = 10200.300201;
|
||||
$tabTriAff[20020100] = 10200.300201;
|
||||
$tabTriAff[20020100] = 10200.300201;
|
||||
$tabTriAff[20020100] = 10200.300201;
|
||||
$tabTriAff[20020110] = 10200.3002011;
|
||||
$tabTriAff[20020110] = 10200.3002011;
|
||||
$tabTriAff[20020110] = 10200.3002011;
|
||||
$tabTriAff[20021200] = 10201.300212;
|
||||
$tabTriAff[20021200] = 10201.300212;
|
||||
$tabTriAff[20021200] = 10201.300212;
|
||||
$tabTriAff[20021210] = 10201.3002121;
|
||||
$tabTriAff[20021210] = 10201.3002121;
|
||||
$tabTriAff[20021210] = 10201.3002121;
|
||||
$tabTriAff[20022200] = 10202.300222;
|
||||
$tabTriAff[20022200] = 10202.300222;
|
||||
$tabTriAff[20022210] = 10202.3002221;
|
||||
$tabTriAff[20022210] = 10202.3002221;
|
||||
$tabTriAff[20022210] = 10202.3002221;
|
||||
$tabTriAff[20022500] = 10204.300225;
|
||||
$tabTriAff[20022500] = 10204.300225;
|
||||
$tabTriAff[20022500] = 10204.300225;
|
||||
$tabTriAff[20022510] = 10204.3002251;
|
||||
$tabTriAff[20022510] = 10204.3002251;
|
||||
$tabTriAff[20022510] = 10204.3002251;
|
||||
$tabTriAff[20023100] = 10205.300231;
|
||||
$tabTriAff[20023100] = 10205.300231;
|
||||
$tabTriAff[20023100] = 10205.300231;
|
||||
$tabTriAff[20023110] = 10205.3002311;
|
||||
$tabTriAff[20023110] = 10205.3002311;
|
||||
$tabTriAff[20023110] = 10205.3002311;
|
||||
$tabTriAff[20025200] = 10206.300252;
|
||||
$tabTriAff[20025200] = 10206.300252;
|
||||
$tabTriAff[20025200] = 10206.300252;
|
||||
$tabTriAff[20025210] = 10206.3002521;
|
||||
$tabTriAff[20025210] = 10206.3002521;
|
||||
$tabTriAff[20025210] = 10206.3002521;
|
||||
$tabTriAff[20026100] = 10207.300261;
|
||||
$tabTriAff[20026100] = 10207.300261;
|
||||
$tabTriAff[20026100] = 10207.300261;
|
||||
$tabTriAff[20026100] = 10207.300261;
|
||||
$tabTriAff[20026101] = 10207.30026101;
|
||||
$tabTriAff[20026101] = 10207.30026101;
|
||||
$tabTriAff[20026101] = 10207.30026101;
|
||||
$tabTriAff[20026110] = 10207.3002611;
|
||||
$tabTriAff[20026110] = 10207.3002611;
|
||||
$tabTriAff[20026110] = 10207.3002611;
|
||||
$tabTriAff[20027100] = 10209.300271;
|
||||
$tabTriAff[20027100] = 10209.300271;
|
||||
$tabTriAff[20027100] = 10207.300271;
|
||||
$tabTriAff[20028100] = 10210.300281;
|
||||
$tabTriAff[20028100] = 10210.300281;
|
||||
$tabTriAff[20028100] = 10210.300281;
|
||||
$tabTriAff[20028110] = 10210.3002811;
|
||||
$tabTriAff[20028110] = 10210.3002811;
|
||||
$tabTriAff[20028110] = 10210.3002811;
|
||||
$tabTriAff[20050100] = 10300.300501;
|
||||
$tabTriAff[20080201] = 10400.30080201;
|
||||
$tabTriAff[20080201] = 10400.30080201;
|
||||
$tabTriAff[20080210] = 10400.3008021;
|
||||
$tabTriAff[20080215] = 10400.30080215;
|
||||
$tabTriAff[20080217] = 10400.30080217;
|
||||
$tabTriAff[20080220] = 10400.3008022;
|
||||
$tabTriAff[20080230] = 10400.3008023;
|
||||
$tabTriAff[20080240] = 10400.3008024;
|
||||
$tabTriAff[20080250] = 10400.3008025;
|
||||
$tabTriAff[20080260] = 10400.3008026;
|
||||
$tabTriAff[20080270] = 10400.3008027;
|
||||
$tabTriAff[20080280] = 10400.3008028;
|
||||
$tabTriAff[20080290] = 10400.3008029;
|
||||
$tabTriAff[20090310] = 10900.3009031;
|
||||
$tabTriAff[20090310] = 10900.3009031;
|
||||
$tabTriAff[20090310] = 10900.3009031;
|
||||
$tabTriAff[20090310] = 10900.3009031;
|
||||
$tabTriAff[20090310] = 10900.3009031;
|
||||
$tabTriAff[20090510] = 10910.3009051;
|
||||
$tabTriAff[20090610] = 10910.3009061;
|
||||
$tabTriAff[20090611] = 10910.30090611;
|
||||
$tabTriAff[20090710] = 10910.3009071;
|
||||
$tabTriAff[20090711] = 10910.30090711;
|
||||
$tabTriAff[20090712] = 10910.30090712;
|
||||
$tabTriAff[20090810] = 10910.3009081;
|
||||
$tabTriAff[20090810] = 10910.3009081;
|
||||
$tabTriAff[20090830] = 10910.3009083;
|
||||
$tabTriAff[20090830] = 10910.3009083;
|
||||
$tabTriAff[20090840] = 10910.3009084;
|
||||
$tabTriAff[20090910] = 10910.3009091;
|
||||
$tabTriAff[100000100] = 10010.1100001;
|
||||
$tabTriAff[100001000] = 10100.110001;
|
||||
$tabTriAff[100002000] = 10120.110002;
|
||||
$tabTriAff[100003000] = 10130.110003;
|
||||
$tabTriAff[100004000] = 10140.110004;
|
||||
$tabTriAff[100005000] = 10150.110005;
|
||||
$tabTriAff[100010000] = 10200.11001;
|
||||
$tabTriAff[100015000] = 10300.110015;
|
||||
$tabTriAff[100016000] = 10400.110016;
|
||||
$tabTriAff[100019000] = 10900.110019;
|
||||
$tabTriAff[100019100] = 10910.1100191;
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
3126
library/Metier/scores/Variables/FormulesValo28.php
Normal file
3126
library/Metier/scores/Variables/FormulesValo28.php
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,34 +0,0 @@
|
||||
<?
|
||||
define('INCLUDE_PATH', '/var/www/includes/');
|
||||
|
||||
/** BATCH
|
||||
**/
|
||||
define('FILLER','');
|
||||
define('LONGUEUR_LIGNE_SORTIE', 2000);
|
||||
|
||||
|
||||
/** Paramétres du FTP des JO
|
||||
**/
|
||||
define('BODACC_FTP_URL', 'ftp.journal-officiel.gouv.fr');
|
||||
define('BODACC_FTP_USER', 'SCORE');
|
||||
define('BODACC_FTP_PASS', 'SD075');
|
||||
define('BODACC_LOCAL_DIR', '/home/data/bodacc/');
|
||||
|
||||
/** Paramétres du FTP de Hugin : Communiqués de presse
|
||||
**/
|
||||
define('HUGIN_FTP_URL', 'ftp.companynews.fr');
|
||||
define('HUGIN_FTP_USER', 'scores');
|
||||
define('HUGIN_FTP_PASS', 'scores_632');
|
||||
define('HUGIN_LOCAL_DIR', '/home/data/hugin/');
|
||||
|
||||
/** Base de données de S&D
|
||||
**/
|
||||
|
||||
define ('MYSQL_HOST', 'localhost');
|
||||
define ('MYSQL_USER', 'root');
|
||||
define ('MYSQL_PASS', 'bzh4231*');
|
||||
define ('MYSQL_DEFAULT_DB', 'jo');
|
||||
|
||||
define ('MYSQL_SQL_LOG', 'NONE');
|
||||
|
||||
?>
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -40,10 +40,12 @@ function sendMail($from, $to, $subject, $text='', $html='', $tabAttachedFiles=ar
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
try {
|
||||
$mail->send();
|
||||
} catch (Zend_Mail_Transport_Exception $e) {
|
||||
file_put_contents(LOG_PATH.'/sendMailError.log',date('Y-m-d H:i:s')." - ".$e->getMessage().PHP_EOL, FILE_APPEND);
|
||||
} catch (Zend_Mail_Protocol_Exception $e) {
|
||||
file_put_contents(LOG_PATH.'/sendMailError.log',date('Y-m-d H:i:s')." - ".$e->getMessage().PHP_EOL, FILE_APPEND);
|
||||
}
|
||||
}
|
||||
?>
|
@ -146,7 +146,7 @@ $tabDico = array(
|
||||
'ADR_COM' => '',
|
||||
'EFF_ET' => '',
|
||||
'TEFF_ET' => '',
|
||||
'CODEVOIE' => '',
|
||||
'CODEVOIE' => 'CONCAT( LEFT(CODEVOIE,4), RIGHT(CODEVOIE,1) ) AS CODEVOIE',
|
||||
'NBETEXPL' => 'NBETAB as NBETEXPL',
|
||||
'dateMajInsee' => 'dateUpdate as dateMajInsee',
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user