ajout de nbEntNaf dans l'export
This commit is contained in:
parent
64c51ecb96
commit
c8e40153fb
@ -611,14 +611,15 @@ function ratios_tablerow($ratiosInfos, $bilan, $ratio = '')
|
||||
// ratiosExport
|
||||
// --------------------------------------------------------------------------- //
|
||||
function ratiosExport($siren, $raisonSociale, $secteur, $type, $date, $duree,
|
||||
$ratiosInfos, $bilan, $ratio = '')
|
||||
$ratiosInfos, $bilan, $nbEntNaf, $ratio = '')
|
||||
{
|
||||
global $tabRatio;
|
||||
|
||||
$e = array('siren' => $siren,
|
||||
'raisonSociale' => $raisonSociale,
|
||||
'secteur' => $secteur,
|
||||
'type' => $type);
|
||||
'type' => $type,
|
||||
'nbEntNaf' => $nbEntNaf);
|
||||
if (empty($ratio) == true) {
|
||||
$e['date'] = $date;
|
||||
$e['duree'] = $duree;
|
||||
|
@ -137,8 +137,11 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
$ratiosInfos, $ratiosSecteur, $page, $firephp;
|
||||
|
||||
$fileName = 'ratios-';
|
||||
if (($siret*1)==0 || ($siren*1)<100){ $fileName.= $idEntreprise;
|
||||
}else{ $fileName = $siren; }
|
||||
if (($siret*1) == 0 || ($siren*1) < 100) {
|
||||
$fileName .= $idEntreprise;
|
||||
} else {
|
||||
$fileName .= $siren;
|
||||
}
|
||||
|
||||
cache_filename($fileName);
|
||||
if( cache_exist() && !( hasPerm('saisie') || hasModeEdition() ) )
|
||||
@ -148,6 +151,7 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
$ratiosEntrepEvol = cache_get('ratiosEntrepEvol');
|
||||
$ratiosInfos = cache_get('ratiosInfos');
|
||||
$ratiosSecteur = cache_get('ratiosSecteur');
|
||||
$nbEntNaf = cache_get('nbEntNaf');
|
||||
$dataActif = cache_get('dataActif');
|
||||
$dataPassif = cache_get('dataPassif');
|
||||
$dataSIG = cache_get('dataSIG');
|
||||
@ -157,6 +161,7 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
'ratiosEntrepEvol'=>$ratiosEntrepEvol,
|
||||
'ratiosInfos'=>$ratiosInfos,
|
||||
'ratiosSecteur'=>$ratiosSecteur,
|
||||
'nbEntNaf' => $nbEntNaf,
|
||||
'dataActif'=>$dataActif,
|
||||
'dataPassif'=>$dataPassif,
|
||||
'dataSIG'=>$dataSIG
|
||||
@ -169,6 +174,7 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
$ratiosEntrep = $O['result']['RatiosEntrep'];
|
||||
$ratiosEntrepEvol = $O['result']['RatiosEntrepEvol'];
|
||||
$ratiosSecteur = $O['result']['RatiosSecteur'];
|
||||
$nbEntNaf = $O['result']['NbEntNaf'];
|
||||
if(count($bilansInfos)>0)
|
||||
{
|
||||
$format = formatRatios(
|
||||
@ -189,6 +195,7 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
cache_add('ratiosEntrepEvol', $ratiosEntrepEvol);
|
||||
cache_add('ratiosInfos', $ratiosInfos);
|
||||
cache_add('ratiosSecteur', $ratiosSecteur);
|
||||
cache_add('nbEntNaf', $nbEntNaf);
|
||||
cache_add('dataActif', $dataActif);
|
||||
cache_add('dataPassif', $dataPassif);
|
||||
cache_add('dataSIG', $dataSIG);
|
||||
@ -198,6 +205,7 @@ function scoresws_ratios($siret, $siren, $idEntreprise)
|
||||
'ratiosEntrepEvol'=>$ratiosEntrepEvol,
|
||||
'ratiosInfos'=>$ratiosInfos,
|
||||
'ratiosSecteur'=>$ratiosSecteur,
|
||||
'nbEntNaf' => $nbEntNaf,
|
||||
'dataActif'=>$dataActif,
|
||||
'dataPassif'=>$dataPassif,
|
||||
'dataSIG'=>$dataSIG
|
||||
|
@ -237,7 +237,7 @@ $export = ratiosExport($siren, $raisonSociale,
|
||||
$typeBilan,
|
||||
$bilansInfos[$bilan]['dateCloture'],
|
||||
$bilansInfos[$bilan]['duree'],
|
||||
$ratiosInfos, $bilan, $ratio);
|
||||
$ratiosInfos, $bilan, $result['nbEntNaf'], $ratio);
|
||||
|
||||
$parseTab = new tabExport;
|
||||
$parseTab->tab = array($export);
|
||||
|
Loading…
x
Reference in New Issue
Block a user