Ajout ratios secteur
This commit is contained in:
parent
0d4a823ac7
commit
4a404b5e9c
@ -32,7 +32,9 @@ $firephp->log('getIdentite', 'Appel WEBSERVICE');
|
||||
$tabEntrep['SourceId']=$etab['SourceId'];
|
||||
$tabEntrep['codeCommune']=$etab['Dept'].$etab['codeCommune']; //Utilise pour les compétences territoriales
|
||||
$tabEntrep['nafEn']=$etab['NafEnt'];
|
||||
$tabEntrep['nafEnLib']=$etab['NafEntLib'];
|
||||
$tabEntrep['nafEt']=$etab['NafEtab'];
|
||||
$tabEntrep['nafEtLib']=$etab['NafEtabLib'];
|
||||
$tabEntrep['fj']=$etab['FJ'];
|
||||
$_SESSION['tabInfo']['entrep']=$tabEntrep;
|
||||
} catch (SoapFault $fault) {
|
||||
|
@ -21,6 +21,7 @@ try {
|
||||
$ratiosInfos = $O['result']['RatiosInfos'];
|
||||
$ratiosEntrep = $O['result']['RatiosEntrep'];
|
||||
$ratiosEntrepEvol = $O['result']['RatiosEntrepEvol'];
|
||||
$ratiosSecteur = $O['result']['RatiosSecteur'];
|
||||
print '<!--';
|
||||
print_r($O['result']);
|
||||
print '-->';
|
||||
@ -30,6 +31,31 @@ try {
|
||||
die();
|
||||
}
|
||||
|
||||
function dSecteur($nAnnee,$nRatio){
|
||||
global $ratiosSecteur;
|
||||
global $ratiosInfos;
|
||||
$ratio = $ratiosSecteur[$nAnnee][$nRatio];
|
||||
if ($ratio=='NS') {
|
||||
print 'NS';
|
||||
}elseif($ratio==NULL){
|
||||
print '-';
|
||||
}else {
|
||||
if ( ($ratiosInfos[$nRatio]['unite']=='EUR') && ((abs($ratio)/1000)>0) ){
|
||||
print number_format($ratio/1000, 0, '', ' ').' K€';
|
||||
}elseif (($ratiosInfos[$nRatio]['unite']=='EUR') && ((abs($ratio)/1000)<0)) {
|
||||
print number_format($ratio, 0, '', ' ').' €';
|
||||
}elseif (($ratiosInfos[$nRatio]['unite']=='Jours')) {
|
||||
print number_format($ratio, 0, '', ' ').' '.$ratiosInfos[$nRatio]['unite'];
|
||||
}elseif (($ratiosInfos[$nRatio]['unite']=='AN')) {
|
||||
print number_format($ratio, 2, '', ' ').' '.$ratiosInfos[$nRatio]['unite'];
|
||||
}elseif (($ratiosInfos[$nRatio]['unite']=='%')) {
|
||||
print number_format($ratio, 2, '', ' ').' '.$ratiosInfos[$nRatio]['unite'];
|
||||
}else{
|
||||
print $ratio.' '.$ratiosInfos[$nRatio]['unite'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function dRatio($nAnnee,$nRatio){
|
||||
global $ratiosEntrep;
|
||||
global $ratiosInfos;
|
||||
@ -203,7 +229,7 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td>
|
||||
Secteur d'activité : <?php print $tabInfo['entrep']['nafEn']; ?> - <b>Conseil pour les affaires et la gestion</b>
|
||||
Secteur d'activité : <?php print $tabInfo['entrep']['nafEn']; ?> - <b><?php print $tabInfo['entrep']['nafEnLib']; ?></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -219,49 +245,49 @@ Secteur d'activit
|
||||
<tr>
|
||||
<td><a id="r235">FR (FONDS DE ROULEMENT)<div class="tooltip"><?=$ratiosInfos['r231']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r235'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r235'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r236">BFR (Besoin en fonds de roulement)<div class="tooltip"><?=$ratiosInfos['r232']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r236'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r236'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r233">MARGE BRUTE D'AUTOFINANCEMENT (MBA) ou CAF<div class="tooltip"><?=$ratiosInfos['r233']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r233'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r233'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r234">COUVERTURE du BFR (FR/BFR)<div class="tooltip"><?=$ratiosInfos['r234']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r234'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r234'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r237">COUVERTURE des IMMOS NETTES <br/>capitaux permanents/immobilisations nettes<div class="tooltip"><?=$ratiosInfos['r237']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r237'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r237'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r238">COUVERTURE du CA <br/>fond de roulement net global sur 12m x 360 / chiffre d'affaire<div class="tooltip"><?=$ratiosInfos['r238']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r238'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r238'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r239">SOLVABILITE capitaux propres / ensemble des dettes<div class="tooltip"><?=$ratiosInfos['r239']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r239'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r239'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r240">INDEPENDANCE FINANCIERE (Cap.propres/Capitaux permanents)<div class="tooltip"><?=$ratiosInfos['r240']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r240'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r240'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
@ -274,31 +300,31 @@ Secteur d'activit
|
||||
<tr>
|
||||
<td><a id="r262">RENTABILITE ECONOMIQUE (EBE/TOTAL bilan)<div class="tooltip"><?=$ratiosInfos['r262']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r262'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r262'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r263">RENTABILITE FINANCIERE (Résult.Net/Cap.propres)<div class="tooltip"><?=$ratiosInfos['r263']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r263'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r263'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r264">RENTABILITE COMMERCIALE (résultat net/CA)<div class="tooltip"><?=$ratiosInfos['r264']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r264'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r264'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r265">CONTRIBUTION DU CAPITAL<br/>Capacité d'autofinancement sur 12 mois / capitaux permanents<div class="tooltip"><?=$ratiosInfos['r265']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r265'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r265'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r266">CONTRIBUTION DE LA VA<br/>capacité d'autofinancement / valeur ajoutée<div class="tooltip"><?=$ratiosInfos['r266']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r266'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r266'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
@ -311,19 +337,19 @@ Secteur d'activit
|
||||
<tr>
|
||||
<td><a id="r250">LIQUIDITE IMMEDIATE : (Disponibilité/Dettes CT)<div class="tooltip"><?=$ratiosInfos['r250']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r250'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r250'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r251">LIQUIDITE GENERALE : (Act.circulant net/Dettes CT)<div class="tooltip"><?=$ratiosInfos['r251']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r251'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r251'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r252">LIQUIDITE REDUITE: Disponibilité et créances réelles /Dettes CT)<div class="tooltip"><?=$ratiosInfos['r252']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r252'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r252'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
@ -336,19 +362,19 @@ Secteur d'activit
|
||||
<tr>
|
||||
<td><a id="r244">ENDETTEMENT (dettes a + 1 an / capitaux propres)<div class="tooltip"><?=$ratiosInfos['r244']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r244'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r244'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r247">CAPACITE DE REMBOURSEMENT (Dettes.bancaires.(+MT+LT+C.bail)/CAF)<div class="tooltip"><?=$ratiosInfos['r247']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r247'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r247'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r248">FINANCEMENT DES STOCKS (dettes aux fournisseurs / stock)<div class="tooltip"><?=$ratiosInfos['r248']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r248'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r248'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
@ -361,31 +387,31 @@ Secteur d'activit
|
||||
<tr>
|
||||
<td><a id="r271">PRODUCTIVITE DE l'ACTIF<br/>chiffre d'affaire/actif comptable<div class="tooltip"><?=$ratiosInfos['r271']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r271'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r271'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r278">DUREE CLIENT (Rotation clients en VJ TTC)<div class="tooltip"><?=$ratiosInfos['r278']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r278'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r278'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r279">DUREE FOURNISSEUR (Rotation fournisseurs en JA TTC)<div class="tooltip"><?=$ratiosInfos['r279']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r279'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r279'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r281">POIDS MASSE SALARIALE (Ch personnel/VA)<div class="tooltip"><?=$ratiosInfos['r281']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r281'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r281'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r261">RENDEMENT (Production sur 12mois / effectif)<div class="tooltip"><?=$ratiosInfos['r261']['commentaires']?></div></a></td>
|
||||
<td class="right"><?php dRatio(0,'r261'); ?></td>
|
||||
<td class="right"></td>
|
||||
<td class="right"><?php dSecteur(0,'r261'); ?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user