Correction encodage
This commit is contained in:
parent
df80a69554
commit
75530ed6e7
@ -1,65 +1,4 @@
|
||||
<?php
|
||||
/*
|
||||
class MScores {
|
||||
|
||||
private $siren;
|
||||
private $tabIdentite=array();
|
||||
|
||||
function __construct($siren) {
|
||||
$this->siren=$siren;
|
||||
$iInsee=new MInsee();
|
||||
$this->tabIdentite=$iInsee->getIdentiteEntreprise($siren);
|
||||
$mBil=new MBilans($siren);
|
||||
$this->tabBilan=$mBil->listeBilans();
|
||||
$mAnn=new MAnnonces($siren);
|
||||
$this->tabAnn=$mAnn->listeAnnonces();
|
||||
$iTva=new MTva($siren);
|
||||
if (!$iTva->vatDefined) echo ' Non attribué';
|
||||
}
|
||||
/*
|
||||
|
||||
Numéro de TVA Intracommunautaire non validé 0 1
|
||||
Numéro de TVA Intracommunautaire non validé et entreprise export 0 1
|
||||
DCD Dirigeant DCD et dirigeant actif 0 0 Un des dirigeants est DCD mais toujours identifié comme dirigeant actif
|
||||
|
||||
Bodacc Entreprise située a une adresse de domiciliation - de 50
|
||||
|
||||
|
||||
Bodacc Faillite Personnelle (en cours) 0 0 Un des dirigeants de l'entreprise est en faillite personnelle
|
||||
Bodacc Interdiction de gérer (la société en cours) 0 0
|
||||
Bodacc Annonce de radiation pour dirigeant DCD 0 0
|
||||
Bodacc CJ1 et DCD 0 5
|
||||
Bodacc Entreprise radiée 0 0 Annonce de radiation au Bodacc Attention FF étab.
|
||||
Bodacc Transparence dépôt dernier Bilan 0 1 La société a publiée un bilan dans les 23 derniers mois
|
||||
Non publication ou Arrêt de publication des bilans
|
||||
Bodacc Différence Enorme entre RS/Ens (Insee Bodacc) 0 1
|
||||
Bodacc Différence Enorme entre Adresses (Insee Bodacc) 0 1
|
||||
Exitence de l'adresse 0 1
|
||||
Nom du 1er dirigeant statutaire clairement identifié 0 3 1
|
||||
Prénom du dirigeants statutaires clairement identifié 0 2
|
||||
Date de naissance du dir. Identifié 0 5
|
||||
Lieu de naissance du dir Identifié 0 1
|
||||
Bodacc Changement de RS dénomination nom 0 1
|
||||
Bodacc Changement de Nom Commercial Enseigne 0 1
|
||||
Bodacc Changement de FJ 0 1
|
||||
Bodacc Modification date activité 0 1
|
||||
Bodacc Modification Pseudonyme 0 1
|
||||
Bodacc Modification sur l'exploitation 0 1
|
||||
Bodacc Modification de l'activité 0 1
|
||||
Bodacc Poursuite d'activité 0 1
|
||||
Bodacc > à 2 ann VC LG Fusion/Abs. Transf. Chg Adm. 0 1
|
||||
Bodacc > à 5 ann de changement de dirigeant 0 1
|
||||
Liens Moyenne des scores actionnaires participations
|
||||
Si une filiale ou 1 actionnaire à 0 ==> 0 0
|
||||
- de 12 mois d'ancienneté 0 1
|
||||
Arrêt de l'activité alors que l'entreprise florisante Résultat en hausse Pizzeria
|
||||
FJ MHZ Incohérence CJ Capital CA Effectif
|
||||
|
||||
RNCS Indicateur Inactif RNCS ?
|
||||
INSEE Indicateur Inactif INSEE ?
|
||||
|
||||
}
|
||||
*/
|
||||
require_once 'Metier/partenaires/classMPrivileges.php';
|
||||
|
||||
/**
|
||||
@ -139,7 +78,7 @@ function calculIndiScore($siren, $nic=0, $accesDist=false, $cycleClient=2, $mail
|
||||
$id=$commentaire['code']*1;
|
||||
$cycle=$commentaire['cycle']*1;
|
||||
$ligne=$commentaire['ligne']*1;
|
||||
$tabCommentaires[$id][$cycle][$ligne]=$commentaire['commentaire'];
|
||||
$tabCommentaires[$id][$cycle][$ligne]=utf8_decode($commentaire['commentaire']);
|
||||
if ($commentaire['tri']) {
|
||||
$tabTri[$id]=$commentaire['tri'];
|
||||
$tabTriAff[$id]=($commentaire['tri'].'.'.(10000000+(1*$commentaire['code'])))*1;
|
||||
@ -1785,7 +1724,7 @@ AltmanCote=$scoreAltmanB".EOL.print_r($tabInfosNotation,true);
|
||||
$DIR2_FONC=$dir['Titre'];
|
||||
$DIR2_TYPE='PP';
|
||||
}
|
||||
$tabDir=$iInsee->rechercheDir($dir['Nom'], $dir['Prenom'], '', $dir['NaissDate'], '', 0, 200, 200);
|
||||
//$tabDir=$iInsee->rechercheDir($dir['Nom'], $dir['Prenom'], '', $dir['NaissDate'], '', 0, 200, 200);
|
||||
$tabDir=$tabDir['reponses'];
|
||||
$nbFctDir=$nbFctDirSci=$nbFctDirSciAdr=0;
|
||||
if (count($tabDir)>0){
|
||||
|
@ -1296,7 +1296,7 @@ class Entreprise extends WsScore
|
||||
$tab = array();
|
||||
foreach($value as $comment) {
|
||||
require_once 'i18n/cleanchar.php';
|
||||
$tab[] = prepareString(fixEncoding($comment));
|
||||
$tab[] = fixEncoding(prepareString($comment));
|
||||
}
|
||||
$output->tabCommentaires = $tab;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user