fixed issue #0000327
This commit is contained in:
commit
968b6a50a1
@ -237,7 +237,7 @@ $element = formatElement('identite', 'effectif', array($etab['Effectif'], $etab[
|
||||
if($element!==false){ echo dRow($element['lib'], $element['data'], $element['title']); }
|
||||
|
||||
//Effectif Etablissement
|
||||
$element = formatElement('identite', 'effectifetab', array($etab['EffectifEtab']));
|
||||
$element = formatElement('identite', 'effectifetab', array($etab['EffectifEtab'], $etab['AnneeEffEt']));
|
||||
if($element!==false){ echo dRow($element['lib'], $element['data'], $element['title']); }
|
||||
|
||||
?>
|
||||
|
@ -729,12 +729,13 @@ function identite_effectif($effectif, $bilan, $AnneeEffEn = '')
|
||||
return array($lib, $data, $title);
|
||||
}
|
||||
|
||||
function identite_effectifetab($effectifEtab){
|
||||
function identite_effectifetab($effectifEtab, $AnneeEffEt){
|
||||
if( isset($effectifEtab) && $effectifEtab!='N/C' && $effectifEtab!='NN' &&
|
||||
$effectifEtab!=0 ){
|
||||
$lib = 'Effectif de l\'établissement';
|
||||
$title = '';
|
||||
$data =number_format($effectifEtab * 1, null, null, ' ').' salarié(s)';
|
||||
$data = number_format($effectifEtab * 1, null, null, ' ').' salarié(s)';
|
||||
$data.= empty($AnneeEffEt) || $AnneeEffEt=='0000' ? '' : ' en '.$AnneeEffEt;
|
||||
return array($lib, $data, $title);
|
||||
} else {
|
||||
return false;
|
||||
|
@ -6,8 +6,6 @@ require_once 'partenaires/classMMap.php';
|
||||
require_once 'common/dates.php';
|
||||
require_once 'scoresws/scoresws.php';
|
||||
|
||||
$mil = false; // ?
|
||||
|
||||
$etabs = scoresws_etablissements($siret, $siren, $idEntreprise);
|
||||
if ($etabs === false) {
|
||||
exit;
|
||||
@ -41,7 +39,7 @@ $raisonSociale = $_SESSION['tabInfo']['entrep']['raisonSociale'];
|
||||
foreach ($etabs as $i => $etab)
|
||||
{
|
||||
if ($etab['Siege']==1) $type='siège ';
|
||||
else $type='établissement ';
|
||||
else $type='établ. ';
|
||||
if ($etab['Actif']==1) $type.='actif';
|
||||
else $type.='inactif';
|
||||
|
||||
@ -50,19 +48,44 @@ $raisonSociale = $_SESSION['tabInfo']['entrep']['raisonSociale'];
|
||||
$lien='<a title="Voir la fiche d\'identité" href="/?page=identite&siret='.$siren.$etab['Nic'].'&idEntreprise='.$idEntreprise.'">';
|
||||
?>
|
||||
<tr>
|
||||
<td class="StyleInfoData" width="30"><b><a title="Voir la fiche d'identité" href="/?page=identite&siret=<?=$siren.$etab['Nic']?>&idEntreprise=<?=$idEntreprise?>"><?=$lien.$etab['Nic']?></a></b></td>
|
||||
<td class="StyleInfoData" width="120"><?=$type?></td>
|
||||
<td class="StyleInfoData" width="150">
|
||||
<td class="StyleInfoData" width="30">
|
||||
<b><a title="Voir la fiche d'identité" href="/?page=identite&siret=<?=$siren.$etab['Nic']?>&idEntreprise=<?=$idEntreprise?>"><?=$lien.$etab['Nic']?></a></b>
|
||||
</td>
|
||||
<td class="StyleInfoData" width="80"><?=$type?></td>
|
||||
<td class="StyleInfoData" width="190">
|
||||
<?php
|
||||
if ($etab['Enseigne']<>'') echo '<b>'.$etab['Enseigne'].'</b><br/>';
|
||||
echo $etab['Adresse'] .'<br/>';
|
||||
if ($etab['Adresse2']<>'') echo $etab['Adresse2'].'<br/>';
|
||||
echo '<b>'.$etab['CP'].' '.$etab['Ville'].'</b>';
|
||||
if ($etab['Tel']<>'') echo '<br/><i>Tél : '.$etab['Tel'].'</i> ';
|
||||
if ($etab['Fax']<>'') echo '<br/><i>Fax : '.$etab['Fax'].'</i>';
|
||||
if ($etab['Enseigne']!='') {
|
||||
?>
|
||||
<b><?=$etab['Enseigne']?></b><br/>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<?=$etab['Adresse']?><br/>
|
||||
<?php
|
||||
if ($etab['Adresse2']!='') {?>
|
||||
<?=$etab['Adresse2']?><br/>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<b><?=$etab['CP']?> <?=$etab['Ville']?></b>
|
||||
<?php
|
||||
if ($etab['Tel']!='') echo '<br/><i>Tél : '.$etab['Tel'].'</i> ';
|
||||
if ($etab['Fax']!='') echo '<br/><i>Fax : '.$etab['Fax'].'</i>';
|
||||
?>
|
||||
</td>
|
||||
<td class="StyleInfoData" width="260"><?=$etab['NafEtab'].' : '.$etab['NafEtabLib']?></td>
|
||||
<td class="StyleInfoData" width="260">
|
||||
<?=$etab['NafEtab'].' : '.$etab['NafEtabLib']?>
|
||||
<?php
|
||||
if ($etab['Actif']==1 &&
|
||||
isset($etab['EffEtTrLib']) &&
|
||||
isset($etab['EffEtTr']) &&
|
||||
!in_array($etab['EffEtTr'], array('N/C', 'NN', 0)) ){
|
||||
?>
|
||||
<br/><i><?=$etab['EffEtTrLib']?></i>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
@ -106,6 +129,8 @@ function htmldecode($value){
|
||||
}
|
||||
$tabForExport = htmldecode($etabs);
|
||||
//@TODO a tester
|
||||
if (($siret*1)==0 || ($siren*1)<100){ $fileName = 'etablissements-'.$idEntreprise;
|
||||
}else{ $fileName = 'etablissements-'.$siret; }
|
||||
|
||||
if(count($tabForExport)>0){
|
||||
require_once 'export.php';
|
||||
|
Loading…
x
Reference in New Issue
Block a user