issue #0001238 : Ajout Présence de privileges et situation juridique
This commit is contained in:
parent
f71f977197
commit
81ac17781c
@ -87,7 +87,24 @@ class Entreprise extends WsScore
|
||||
$identite->DateMajINSEE = $entrep['DateMajINSEE']; //@todo : date
|
||||
$identite->DateMajRCS = $entrep['DateMajRCS']; //@todo : date
|
||||
$identite->DateMajID = $entrep['dateMajIdentite']; //@todo : date
|
||||
|
||||
$identite->SituationJuridique = $entrep['SituationJuridique'];
|
||||
|
||||
//Présence de privilèges
|
||||
$identite->Privileges = false;
|
||||
$nbPrivileges = 0;
|
||||
$iPriv = new MPrivileges();
|
||||
$ret = $iPriv->getPrivilegesDetail($siren);
|
||||
$nbPrivileges = count($ret);
|
||||
if ($nbPrivileges>0) {
|
||||
$identite->Privileges = true;
|
||||
} 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) {
|
||||
$identite->Privileges = true;
|
||||
}
|
||||
}
|
||||
debugLog('I', 'Etablissement retourné = '. $entrep['Nom'], __LINE__, __FILE__, __FUNCTION__, __CLASS__);
|
||||
|
||||
$this->wsLog('identite',$siret,$id);
|
||||
|
@ -198,6 +198,21 @@ class Identite
|
||||
* @var string
|
||||
*/
|
||||
public $DateMajID;
|
||||
|
||||
/**
|
||||
* Code situation juridique de l'entreprise
|
||||
* (RR: Radié du Registre du Commerce et de Sociétés, RP: Radiation publié, PL: Plan en cours,
|
||||
* P: En procédure collectire)
|
||||
* @var string
|
||||
*/
|
||||
public $SituationJuridique;
|
||||
|
||||
/**
|
||||
* Présence de privileges
|
||||
* @var boolean
|
||||
*/
|
||||
public $Privileges;
|
||||
|
||||
}
|
||||
|
||||
class SearchEntrepriseReturn
|
||||
@ -327,7 +342,6 @@ class EntrepriseItem
|
||||
* @var string
|
||||
*/
|
||||
public $NafEntLib;
|
||||
|
||||
}
|
||||
|
||||
class EntrepriseCriteres
|
||||
@ -530,6 +544,4 @@ class ActionnaireIdentite
|
||||
* @var string
|
||||
*/
|
||||
public $FJ_Lib;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user