Library Update
This commit is contained in:
parent
185ffc7f69
commit
ac2ad0a607
@ -4966,13 +4966,9 @@ class Metier_Insee_MInsee extends Metier_Insee_Table
|
||||
// --- Liste des jugements principaux - Tri chronologique par date de jugement
|
||||
foreach ($tabRet as $i => $ann) {
|
||||
$item = new stdClass();
|
||||
$dateEff = str_replace('-', '', $ann['dateEffet'])*1;
|
||||
$dateJug = str_replace('-', '', $ann['dateJugement'])*1;
|
||||
$datePar = str_replace('-', '', $ann['DateParution'])*1;
|
||||
if ($dateEff > 0) {
|
||||
$item->date = $dateEff;
|
||||
$item->dateISO8601 = $ann['dateEffet'];
|
||||
} elseif ($dateJug > 0) {
|
||||
if ($dateJug > 0) {
|
||||
$item->date = $dateJug;
|
||||
$item->dateISO8601 = $ann['dateJugement'];
|
||||
} elseif ($datePar > 0) {
|
||||
|
@ -417,7 +417,7 @@ class Metier_Sfr_Scoring
|
||||
$this->conn = $conn;
|
||||
}
|
||||
|
||||
//Charger les Rules (dans l'ordre)
|
||||
// Charger les Rules (dans l'ordre)
|
||||
$this->RulesVORP = include realpath(dirname(__FILE__)) . '/RulesVorp-'.$this->version.'.php';
|
||||
$this->RulesVORD = include realpath(dirname(__FILE__)) . '/RulesVord-'.$this->version.'.php';
|
||||
$this->RulesPO = include realpath(dirname(__FILE__)) . '/RulesPo-'.$this->version.'.php';
|
||||
@ -433,7 +433,7 @@ class Metier_Sfr_Scoring
|
||||
file_put_contents('sfr.log', "SIREN = $siren\n", FILE_APPEND);
|
||||
}
|
||||
|
||||
//Set ValContratAge
|
||||
// Set ValContratAge
|
||||
if (!empty($this->ValContratDate)) {
|
||||
$dateContrat = DateTime::createFromFormat('Ymd', $this->ValContratDate);
|
||||
$dateNow = new DateTime();
|
||||
|
@ -90,14 +90,14 @@ class Scores_Ws_Server
|
||||
* @var array
|
||||
*/
|
||||
protected $listePrefs = array(
|
||||
'NAF4' => "Afficher les anciens NAF",
|
||||
'NACE' => "Afficher les codes NACES",
|
||||
'NEWS' => "Afficher les news Google©",
|
||||
'MAPPY' => "Afficher les façades d'immeubles",
|
||||
'NAF4' => "Afficher les anciens NAF",
|
||||
'NACE' => "Afficher les codes NACES",
|
||||
'NEWS' => "Afficher les news Google©",
|
||||
'MAPPY' => "Afficher les façades d'immeubles",
|
||||
'CARTES' => "Afficher les cartes et les plans",
|
||||
'VOIRSURV' => "Afficher les entités sous surveillances",
|
||||
'VOIRSURV' => "Afficher les entités sous surveillances",
|
||||
'DEMANDEREF' => "Demande de référence par defaut",
|
||||
'RECHREF' => "Afficher le formulaire de recherche par référence",
|
||||
'RECHREF' => "Afficher le formulaire de recherche par référence",
|
||||
);
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user