Modification libellé + privilege
This commit is contained in:
parent
d8cd599d24
commit
e14c56a220
@ -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 == */
|
||||
|
||||
|
@ -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(){}
|
||||
|
Loading…
Reference in New Issue
Block a user