Remove notice
This commit is contained in:
parent
e6b5e1b745
commit
47d4b6918e
@ -82,7 +82,7 @@ class IdentiteEntreprise
|
||||
return '<a href="http://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=CELEX:31991L0680:FR:HTML" target="_blank">Non attribué dans les D.O.M.</a>';
|
||||
}
|
||||
|
||||
$data.= substr($this->identite->TvaNumero,0,2).' '.
|
||||
$data = substr($this->identite->TvaNumero,0,2).' '.
|
||||
substr($this->identite->TvaNumero,2,2).' '.
|
||||
substr($this->identite->TvaNumero,-9);
|
||||
if (!$this->identite->TvaAttribue)
|
||||
@ -207,11 +207,10 @@ class IdentiteEntreprise
|
||||
}
|
||||
public function getActifTexte()
|
||||
{
|
||||
|
||||
$data = '';
|
||||
if ( $this->identite->AncienSiege==1
|
||||
|| count($this->identite->AutreSiret->item)>0
|
||||
|| ($this->identite->ActifEco==0 && !empty($this->identite->ActifEcoDate))
|
||||
|| count($this->identite->AutreSiret->item)>0 )
|
||||
|| ( property_exists($this->identite->AutreSiret, 'item') && count($this->identite->AutreSiret->item)>0 )
|
||||
|| ( $this->identite->ActifEco==0 && !empty($this->identite->ActifEcoDate) ) )
|
||||
{
|
||||
$title = '';
|
||||
|
||||
@ -311,9 +310,8 @@ class IdentiteEntreprise
|
||||
}
|
||||
|
||||
if ( $this->identite->AncienSiege==1
|
||||
|| count($this->identite->AutreSiret->item)>0
|
||||
|| ($this->identite->ActifEco==0 && !empty($this->identite->ActifEcoDate))
|
||||
|| count($this->identite->AutreSiret->item)>0 )
|
||||
|| ( property_exists($this->identite->AutreSiret, 'item') && count($this->identite->AutreSiret->item)>0 )
|
||||
|| ($this->identite->ActifEco==0 && !empty($this->identite->ActifEcoDate)) )
|
||||
{
|
||||
$data.= '</a>';
|
||||
}
|
||||
@ -327,6 +325,7 @@ class IdentiteEntreprise
|
||||
$data.=' <a title="Voir l\'avis de situation correspondant de l\'INSEE" target="_blank" href="/identite/avis/siret/'.
|
||||
$this->identite->Siret.'">(Situation au répertoire SIRENE)</a>';
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
@ -395,7 +394,7 @@ class IdentiteEntreprise
|
||||
{
|
||||
$typeLib = array('doublon'=>'Doublon Insee');
|
||||
$data = false;
|
||||
if(count($this->identite->AutreSiren->item)>0) {
|
||||
if( property_exists($this->identite->AutreSiren, 'item') && count($this->identite->AutreSiren->item)>0) {
|
||||
foreach($this->identite->AutreSiren->item as $doublon) {
|
||||
if(in_array($doublon->type, array_keys($typeLib))) {
|
||||
$data.= '<a href="'.$this->view->url(array(
|
||||
@ -1013,7 +1012,7 @@ class IdentiteEntreprise
|
||||
$dir2DateNaiss = WDate::dateT('Y-m-d', 'd/m/Y',$this->identite->dir2DateNaiss);
|
||||
}
|
||||
$dir2LieuNaiss = '';
|
||||
if ($this->identite->Dir2LieuNaiss != '') {
|
||||
if ($this->identite->dir2LieuNaiss != '') {
|
||||
$dir2LieuNaiss = $this->identite->dir2LieuNaiss;
|
||||
}
|
||||
$dir1NaissText = '';
|
||||
@ -1063,6 +1062,8 @@ class IdentiteEntreprise
|
||||
}
|
||||
public function getEffectifTexte()
|
||||
{
|
||||
$data = '';
|
||||
|
||||
if (empty($this->identite->Effectif)
|
||||
|| ($this->identite->Effectif == 'N/C' || $this->identite->Effectif == 0)
|
||||
&& !empty($this->identite->Bilan->Effectif)) {
|
||||
@ -1110,17 +1111,21 @@ class IdentiteEntreprise
|
||||
}
|
||||
public function getSurfaceMagasinTexte()
|
||||
{
|
||||
switch($this->identite->SurfaceMagasin)
|
||||
$data = false;
|
||||
|
||||
switch($this->identite->SurfaceMagasin)
|
||||
{
|
||||
case '1' : $data = 'Inférieure à 300m<sup>2</sup>'; break;
|
||||
case '2' : $data = 'Entre 300 et 400m<sup>2</sup>'; break;
|
||||
case '3' : $data = 'Entre 400 à 2 500m<sup>2</sup>'; break;
|
||||
case '4' : $data = 'Supérieure à 2 500m<sup>2</sup>'; break;
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
protected function moneyKM($number){
|
||||
protected function moneyKM($number)
|
||||
{
|
||||
if($number!=0){
|
||||
$i=0;
|
||||
while(abs($number/1000)>1){
|
||||
|
Loading…
Reference in New Issue
Block a user