Remove notice

This commit is contained in:
Michael RICOIS 2013-05-29 15:15:21 +00:00
parent e6b5e1b745
commit 47d4b6918e

View File

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