From e14c56a22065002c15c9ec5c6a8e8638178952c6 Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Tue, 29 Jan 2013 11:09:51 +0000 Subject: [PATCH] =?UTF-8?q?Modification=20libell=C3=A9=20+=20privilege?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- batch/enrichissement.php | 36 +++++++++++++++++++++++++++---- library/Scores/Enrichissement.php | 12 +++++++---- 2 files changed, 40 insertions(+), 8 deletions(-) diff --git a/batch/enrichissement.php b/batch/enrichissement.php index 531647c0..441bce88 100644 --- a/batch/enrichissement.php +++ b/batch/enrichissement.php @@ -125,6 +125,7 @@ $tabDico = array( 'TCAEXP' => '', 'EFF_ENT' => '', 'DCRET' => '', + 'ADR_DEP' => '', 'EFF_ET' => '', 'CODEVOIE' => '', 'NBETEXPL' => 'NBETAB as NBETEXPL', @@ -218,9 +219,6 @@ $tabDico = array( 'dateFermetureEt', 'activite', 'situationJuridique', - 'situationParution', - 'situationDernCode', - 'situationDernEven', 'indiScore', 'dirigeant', 'bilanN', @@ -229,6 +227,7 @@ $tabDico = array( 'annonces', 'AdresseNormalise', 'SiretSuc', + 'privilege', ), ); @@ -589,7 +588,7 @@ foreach($tabIdentifiant as $item) $tabData[$row]['nic'] = $nicV; } - //Récupération des données + //Récupération des données SQL foreach($tabDico as $element => $select) { //Traitement par requete SQL @@ -1313,6 +1312,35 @@ function SiretSucData($siren, $nic, $values = false) return $tabData; } +function privilegeEntete() +{ + return array( + 'privilege', + ); +} + +function privilegeData() +{ + $return = 'Non'; + //Présence de privilèges + $nbPrivileges = 0; + require_once 'Metier/partenaires/classMPrivileges.php'; + $iPriv = new MPrivileges(); + $ret = $iPriv->getPrivilegesDetail($siren); + $nbPrivileges = count($ret); + if ($nbPrivileges>0) { + $return = 'Oui'; + } else { + $iDb = new WDB('sdv1'); + $sql = "SELECT count(*) AS nbPriv FROM ge_cs2 WHERE cs = 'P' AND dateFin >= NOW() AND dateSuppr=0;"; + $ret = $iDb->query($sql); + if ($ret['nbPriv']>0) { + $return = 'Oui'; + } + } + return $return; +} + /* == FUNCTION == */ diff --git a/library/Scores/Enrichissement.php b/library/Scores/Enrichissement.php index 6601a022..81a0322d 100644 --- a/library/Scores/Enrichissement.php +++ b/library/Scores/Enrichissement.php @@ -124,6 +124,9 @@ class Enrichissement 'adrVilleInsee' => array( 'lib' => 'Insee : Adresse - Commune' ), + 'ADR_DEP' => array( + 'lib' => "Insee : Adresse - Département" + ), 'adrDistSPInsee' => array( 'lib' => 'Insee : Adresse - Distribution spéciale' ), @@ -131,10 +134,10 @@ class Enrichissement 'lib' => "Insee : Forme juridique de l'entreprise" ), 'nafEnInsee' => array( - 'lib' => "Insee : Adresse - NAF de l'entreprise" + 'lib' => "Insee : NAF de l'entreprise" ), 'nafEtInsee' => array( - 'lib' => "Insee : Adresse - NAF de l'etablissement" + 'lib' => "Insee : NAF de l'etablissement" ), 'APRM' => array( 'lib' => "Insee : APRM" @@ -275,10 +278,10 @@ class Enrichissement 'lib' => "Insee : Date de la dernière MAJ notice" ), 'NBETEXPL' => array( - 'lib' => "Insee : Nombre d'établissement exploitant" + 'lib' => "Insee : Nombre d'établissement exploitant actif" ), 'entActiveRncs' => array( - 'lib' => "RNCS : Active" + 'lib' => "RNCS : Actif - Entreprise" ), 'numRC2' => array( 'lib' => "RNCS : Numéro RC" @@ -414,6 +417,7 @@ class Enrichissement 'bilanN1'=> array('values'=>''), 'bilanN2'=> array('values'=>''), 'annonces'=> array('values'=>''), + 'privilege' => array('values'=>''), ); public function __construct(){}