Utilisation de la librairie qTip
This commit is contained in:
parent
ebf01aa1a4
commit
99d6d64f9b
@ -25,7 +25,7 @@ try {
|
||||
$ratiosEntrepEvol = $O['result']['RatiosEntrepEvol'];
|
||||
$ratiosSecteur = $O['result']['RatiosSecteur'];
|
||||
print '<!--';
|
||||
print_r($O['result']);
|
||||
//print_r($O['result']);
|
||||
print '-->';
|
||||
}catch (SoapFault $fault) {
|
||||
include_once(realpath(dirname(__FILE__).'/../../').'/includes/soaperror.php');
|
||||
@ -169,126 +169,75 @@ function dRatio($nAnnee,$nRatio){
|
||||
print $return;
|
||||
}
|
||||
|
||||
function wrapComment($text){
|
||||
$fontSize = 5;
|
||||
$blockSize = 500;
|
||||
$newtext = wordwrap($text, $blockSize/$fontSize , "\n");
|
||||
$newtext = htmlentities($newtext);
|
||||
$newtext = nl2br($newtext);
|
||||
return $newtext;
|
||||
}
|
||||
?>
|
||||
<script type="text/javascript" src="./js/jquery.simpletip.js"></script>
|
||||
<script type="text/javascript" src="./js/jtip.js"></script>
|
||||
<script type="text/javascript" src="./js/jquery.qtip.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
$("#r235").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r235 > .tooltip").text()});
|
||||
$("#r236").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r236 > .tooltip").text()});
|
||||
$("#r233").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r233 > .tooltip").text()});
|
||||
$("#r234").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r234 > .tooltip").text()});
|
||||
$("#r237").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r237 > .tooltip").text()});
|
||||
$("#r238").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r238 > .tooltip").text()});
|
||||
$("#r239").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r239 > .tooltip").text()});
|
||||
$("#r240").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r240 > .tooltip").text()});
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#ratios a[tooltip]').each(function()
|
||||
{
|
||||
$(this).qtip( {
|
||||
content: $(this).attr('tooltip'),
|
||||
style: { width: 500, name: 'dark' },
|
||||
position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
|
||||
});
|
||||
});
|
||||
|
||||
$("#r262").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r262 > .tooltip").text()});
|
||||
$("#r263").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r263 > .tooltip").text()});
|
||||
$("#r264").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r264 > .tooltip").text()});
|
||||
$("#r265").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r265 > .tooltip").text()});
|
||||
$("#r266").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r266 > .tooltip").text()});
|
||||
|
||||
$("#r250").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r250 > .tooltip").text()});
|
||||
$("#r251").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r251 > .tooltip").text()});
|
||||
$("#r252").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r252 > .tooltip").text()});
|
||||
|
||||
$("#r244").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r244 > .tooltip").text()});
|
||||
$("#r247").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r247 > .tooltip").text()});
|
||||
$("#r248").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r248 > .tooltip").text()});
|
||||
|
||||
$("#r271").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r271 > .tooltip").text()});
|
||||
$("#r278").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r278 > .tooltip").text()});
|
||||
$("#r279").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r279 > .tooltip").text()});
|
||||
$("#r281").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r281 > .tooltip").text()});
|
||||
$("#r261").simpletip({ fixed: true, position: 'bottom', content: $(this).find("#r261 > .tooltip").text()});
|
||||
$('.jTip').each(function()
|
||||
{
|
||||
$(this).qtip(
|
||||
{
|
||||
content: {
|
||||
text: 'Chargement...',
|
||||
url: $(this).attr('href'),
|
||||
title: {
|
||||
text: 'Evolution - ' + $(this).attr('name'),
|
||||
}
|
||||
},
|
||||
position: {
|
||||
corner: {
|
||||
target: 'leftMiddle',
|
||||
tooltip: 'rightMiddle'
|
||||
},
|
||||
},
|
||||
show: { solo: true},
|
||||
style: {
|
||||
tip: true,
|
||||
border: {
|
||||
width: 1,
|
||||
radius: 0
|
||||
},
|
||||
name: 'light',
|
||||
width: 400
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<link rel="stylesheet" type="text/css" href="./css/jtip.css" />
|
||||
<style>
|
||||
#container
|
||||
{
|
||||
width: 580px;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
#ratios
|
||||
{
|
||||
clear:both;
|
||||
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
|
||||
font-size: 12px;
|
||||
margin: 10px 0 0 0;
|
||||
width: 580px;
|
||||
text-align: left;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
#ratios a {
|
||||
color:#000000;
|
||||
cursor:help;
|
||||
}
|
||||
|
||||
#ratios th
|
||||
{
|
||||
padding: 8px;
|
||||
font-weight: normal;
|
||||
font-size: 13px;
|
||||
color: #039;
|
||||
background: #b9c9fe;
|
||||
}
|
||||
#ratios td
|
||||
{
|
||||
padding: 8px;
|
||||
border: 1px solid #000;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#ratios td.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#ratios td.italique {
|
||||
font-style: italic ;
|
||||
}
|
||||
|
||||
#ratios td.right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#ratios td.position {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#ratios tr.subhead td
|
||||
{
|
||||
padding: 8px;
|
||||
background: #b9c9fe;
|
||||
border: 1px solid #000;
|
||||
font-weight: bold;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#entete {
|
||||
margin:1px;
|
||||
}
|
||||
|
||||
#secteur{
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.tooltip{
|
||||
display:none;
|
||||
position: absolute;
|
||||
padding: 10px 10px;
|
||||
width: 300px;
|
||||
z-index: 3;
|
||||
color: #303030;
|
||||
background-color: #f5f5b5;
|
||||
border: 1px solid #DECA7E;
|
||||
font-family: sans-serif;
|
||||
font-weight:normal;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
}
|
||||
#container { width: 580px; background-color: #FFFFFF; }
|
||||
#ratios { clear:both; font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif; font-size: 12px; margin: 10px 0 0 0; width: 580px; text-align: left; border-collapse: collapse; }
|
||||
#ratios a { color:#000000; cursor:help; }
|
||||
#ratios th { padding: 8px; font-weight: normal; font-size: 13px; color: #039; background: #b9c9fe; }
|
||||
#ratios td { padding: 8px; border: 1px solid #000; color: #000; }
|
||||
#ratios td.center { text-align: center; }
|
||||
#ratios td.italique { font-style: italic ; }
|
||||
#ratios td.right { text-align: right; }
|
||||
#ratios td.position { text-align: center; }
|
||||
#ratios tr.subhead td { padding: 8px; background: #b9c9fe; border: 1px solid #000; font-weight: bold; color: #000; }
|
||||
#entete { margin:1px; }
|
||||
#secteur{ margin-top:10px; }
|
||||
.qtip-title {font-size:11px;}
|
||||
.qtip-content {font-size:11px;}
|
||||
</style>
|
||||
|
||||
<div id="container">
|
||||
@ -377,74 +326,74 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
</tr>
|
||||
<!--
|
||||
<tr>
|
||||
<td><a id="r235">FR (FONDS DE ROULEMENT)<div class="tooltip"><?=$ratiosInfos['r231']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r231']['commentaires'])?>">FR (FONDS DE ROULEMENT)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r235'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r235'); ?></td>
|
||||
<td class="position"><?php dPosition($bilan,'r235','>'); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r236">BFR (Besoin en fonds de roulement)<div class="tooltip"><?=$ratiosInfos['r232']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r232']['commentaires'])?>">BFR (Besoin en fonds de roulement)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r236'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r236'); ?></td>
|
||||
<td class="position"><?php dPosition($bilan,'r236','<'); ?></td>
|
||||
</tr>
|
||||
-->
|
||||
<tr>
|
||||
<td><a id="r233">MARGE BRUTE D'AUTOFINANCEMENT (MBA) ou CAF<div class="tooltip"><?=$ratiosInfos['r233']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r233']['commentaires'])?>">MARGE BRUTE D'AUTOFINANCEMENT (MBA) ou CAF</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r233'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r233'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr233" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r233')));?>" name="MARGE BRUTE D'AUTOFINANCEMENT (MBA) ou CAF">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r233')));?>" name="MARGE BRUTE D'AUTOFINANCEMENT (MBA) ou CAF">
|
||||
<?php dPosition($bilan,'r233','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r234">COUVERTURE du BFR (FR/BFR)<div class="tooltip"><?=$ratiosInfos['r234']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r234']['commentaires'])?>">COUVERTURE du BFR (FR/BFR)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r234'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r234'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr234" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r234')));?>" name="COUVERTURE du BFR (FR/BFR)">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r234')));?>" name="COUVERTURE du BFR (FR/BFR)">
|
||||
<?php dPosition($bilan,'r234','>'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r237']['commentaires'])?>">COUVERTURE des IMMOS NETTES <br/>capitaux permanents/immobilisations nettes</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r237'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r237'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr237" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r237')));?>" name="COUVERTURE des IMMOS NETTES">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r237')));?>" name="COUVERTURE des IMMOS NETTES">
|
||||
<?php dPosition($bilan,'r237','>'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r238']['commentaires'])?>">COUVERTURE du CA <br/>fond de roulement net global sur 12m x 360 / chiffre d'affaire</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r238'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r238'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr238" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r238')));?>" name="COUVERTURE du CA">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r238')));?>" name="COUVERTURE du CA">
|
||||
<?php dPosition($bilan,'r238','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r239">SOLVABILITE capitaux propres / ensemble des dettes<div class="tooltip"><?=$ratiosInfos['r239']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r239']['commentaires'])?>">SOLVABILITE capitaux propres / ensemble des dettes</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r239'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r239'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr239" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r239')));?>" name="SOLVABILITE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r239')));?>" name="SOLVABILITE">
|
||||
<?php dPosition($bilan,'r239','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r240">INDEPENDANCE FINANCIERE (Cap.propres/Capitaux permanents)<div class="tooltip"><?=$ratiosInfos['r240']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r240']['commentaires'])?>">INDEPENDANCE FINANCIERE (Cap.propres/Capitaux permanents)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r240'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r240'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr240" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r240')));?>" name="INDEPENDANCE FINANCIERE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r240')));?>" name="INDEPENDANCE FINANCIERE">
|
||||
<?php dPosition($bilan,'r240','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
@ -457,51 +406,51 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
<td>Position</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r262">RENTABILITE ECONOMIQUE (EBE/TOTAL bilan)<div class="tooltip"><?=$ratiosInfos['r262']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r262']['commentaires'])?>">RENTABILITE ECONOMIQUE (EBE/TOTAL bilan)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r262'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r262'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr262" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r262')));?>" name="RENTABILITE ECONOMIQUE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r262')));?>" name="RENTABILITE ECONOMIQUE">
|
||||
<?php dPosition($bilan,'r262','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r263">RENTABILITE FINANCIERE (Résult.Net/Cap.propres)<div class="tooltip"><?=$ratiosInfos['r263']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r263']['commentaires'])?>">RENTABILITE FINANCIERE (Résult.Net/Cap.propres)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r263'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r263'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr263" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r263')));?>" name="RENTABILITE FINANCIERE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r263')));?>" name="RENTABILITE FINANCIERE">
|
||||
<?php dPosition($bilan,'r263','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r264">RENTABILITE COMMERCIALE (résultat net/CA)<div class="tooltip"><?=$ratiosInfos['r264']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r264']['commentaires'])?>">RENTABILITE COMMERCIALE (résultat net/CA)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r264'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r264'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr264" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r264')));?>" name="RENTABILITE COMMERCIALE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r264')));?>" name="RENTABILITE COMMERCIALE">
|
||||
<?php dPosition($bilan,'r264','>'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r265']['commentaires'])?>">CONTRIBUTION DU CAPITAL<br/>Capacité d'autofinancement sur 12 mois / capitaux permanents</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r265'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r265'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr265" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r265')));?>" name="CONTRIBUTION DU CAPITAL">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r265')));?>" name="CONTRIBUTION DU CAPITAL">
|
||||
<?php dPosition($bilan,'r265','>'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r266']['commentaires'])?>">CONTRIBUTION DE LA VA<br/>capacité d'autofinancement / valeur ajoutée</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r266'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r266'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr266" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r266')));?>" name="CONTRIBUTION DE LA VA">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r266')));?>" name="CONTRIBUTION DE LA VA">
|
||||
<?php dPosition($bilan,'r266','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
@ -514,31 +463,31 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
<td>Position</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r250">LIQUIDITE IMMEDIATE : (Disponibilité/Dettes CT)<div class="tooltip"><?=$ratiosInfos['r250']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r250']['commentaires'])?>">LIQUIDITE IMMEDIATE : (Disponibilité/Dettes CT)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r250'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r250'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr250" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r250')));?>" name="LIQUIDITE IMMEDIATE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r250')));?>" name="LIQUIDITE IMMEDIATE">
|
||||
<?php dPosition($bilan,'r250','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r251">LIQUIDITE GENERALE : (Act.circulant net/Dettes CT)<div class="tooltip"><?=$ratiosInfos['r251']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r251']['commentaires'])?>">LIQUIDITE GENERALE : (Act.circulant net/Dettes CT)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r251'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r251'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr251" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r251')));?>" name="LIQUIDITE GENERALE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r251')));?>" name="LIQUIDITE GENERALE">
|
||||
<?php dPosition($bilan,'r251','>'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r252']['commentaires'])?>">LIQUIDITE REDUITE: Disponibilité et créances réelles /Dettes CT)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r252'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r252'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr252" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r252')));?>" name="LIQUIDITE REDUITE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r252')));?>" name="LIQUIDITE REDUITE">
|
||||
<?php dPosition($bilan,'r252','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
@ -551,31 +500,31 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
<td class="position">Position</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r244">ENDETTEMENT (dettes a + 1 an / capitaux propres)<div class="tooltip"><?=$ratiosInfos['r244']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r244']['commentaires'])?>">ENDETTEMENT (dettes a + 1 an / capitaux propres)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r244'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r244'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr244" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r244')));?>" name="ENDETTEMENT">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r244')));?>" name="ENDETTEMENT">
|
||||
<?php dPosition($bilan,'r244','<'); ?>
|
||||
</a>
|
||||
</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><a tooltip="<?=wrapComment($ratiosInfos['r247']['commentaires'])?>">CAPACITE DE REMBOURSEMENT (Dettes.bancaires.(+MT+LT+C.bail)/CAF)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r247'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r247'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr247" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r247')));?>" name="CAPACITE DE REMBOURSEMENT">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r247')));?>" name="CAPACITE DE REMBOURSEMENT">
|
||||
<?php dPosition($bilan,'r247','<'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r248">FINANCEMENT DES STOCKS (dettes aux fournisseurs / stock)<div class="tooltip"><?=$ratiosInfos['r248']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r248']['commentaires'])?>">FINANCEMENT DES STOCKS (dettes aux fournisseurs / stock)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r248'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r248'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr248" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r248')));?>" name="FINANCEMENT DES STOCKS">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r248')));?>" name="FINANCEMENT DES STOCKS">
|
||||
<?php dPosition($bilan,'r248','<'); ?>
|
||||
</a>
|
||||
</td>
|
||||
@ -588,61 +537,61 @@ $firephp->log($tabInfo,'tabInfo');
|
||||
<td>Position</td>
|
||||
</tr>
|
||||
<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><a tooltip="<?=wrapComment($ratiosInfos['r271']['commentaires'])?>">PRODUCTIVITE DE L'ACTIF<br/>chiffre d'affaire/actif comptable</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r271'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r271'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr271" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r271')));?>" name="PRODUCTIVITE DE L'ACTIF">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r271')));?>" name="PRODUCTIVITE DE L'ACTIF">
|
||||
<?php dPosition($bilan,'r271','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r278">DUREE CLIENT (Rotation clients en VJ TTC)<div class="tooltip"><?=$ratiosInfos['r278']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r278']['commentaires'])?>">DUREE CLIENT (Rotation clients en VJ TTC)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r278'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r278'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr278" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r278')));?>" name="DUREE CLIENT">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r278')));?>" name="DUREE CLIENT">
|
||||
<?php dPosition($bilan,'r278','<'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r279">DUREE FOURNISSEUR (Rotation fournisseurs en JA TTC)<div class="tooltip"><?=$ratiosInfos['r279']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r279']['commentaires'])?>">DUREE FOURNISSEUR (Rotation fournisseurs en JA TTC)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r279'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r279'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr279" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r279')));?>" name="DUREE FOURNISSEUR">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r279')));?>" name="DUREE FOURNISSEUR">
|
||||
<?php dPosition($bilan,'r279','<'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r281">POIDS MASSE SALARIALE (Ch personnel/VA)<div class="tooltip"><?=$ratiosInfos['r281']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r281']['commentaires'])?>">POIDS MASSE SALARIALE (Ch personnel/VA)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r281'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r281'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr281" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r281')));?>" name="POIDS MASSE SALARIALE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r281')));?>" name="POIDS MASSE SALARIALE">
|
||||
<?php dPosition($bilan,'r281','<'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r261">RENDEMENT (Production sur 12mois / effectif)<div class="tooltip"><?=$ratiosInfos['r261']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r261']['commentaires'])?>">RENDEMENT (Production sur 12mois / effectif)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r261'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r261'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr261" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r261')));?>" name="RENDEMENT">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r261')));?>" name="RENDEMENT">
|
||||
<?php dPosition($bilan,'r261','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a id="r267">PRODUCTIVITE <br/>(CA/effectif)<div class="tooltip"><?=$ratiosInfos['r267']['commentaires']?></div></a></td>
|
||||
<td><a tooltip="<?=wrapComment($ratiosInfos['r267']['commentaires'])?>">PRODUCTIVITE <br/>(CA/effectif)</a></td>
|
||||
<td class="right"><?php dRatio($bilan,'r267'); ?></td>
|
||||
<td class="right"><?php dSecteur($bilan,'r267'); ?></td>
|
||||
<td class="position">
|
||||
<a class="jTip" id="gr267" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r267')));?>" name="PRODUCTIVITE">
|
||||
<a class="jTip" href="./pages/ratios_dgraph.php?width=375&data=<?=urlencode(serialize(dGraph('r267')));?>" name="PRODUCTIVITE">
|
||||
<?php dPosition($bilan,'r267','>'); ?>
|
||||
</a>
|
||||
</td>
|
||||
|
@ -139,10 +139,8 @@ $path = '../cache/';
|
||||
file_put_contents($path.$fileName, serialize($dataGraph));
|
||||
|
||||
?>
|
||||
<script type="text/javascript" src="./js/jtip.js"></script>
|
||||
<script type="text/javascript" src="./js/jquery.qtip.js"></script>
|
||||
<script type="text/javascript">
|
||||
// Create the tooltips only on document load
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#synthese a[tooltip]').each(function()
|
||||
@ -150,8 +148,39 @@ $(document).ready(function()
|
||||
$(this).qtip({
|
||||
content: $(this).attr('tooltip'),
|
||||
style: { width: 500, name: 'dark' },
|
||||
position: { corner: { target: 'bottomMiddle', tooltip: 'topMiddle' } }
|
||||
});
|
||||
});
|
||||
|
||||
$('.jTip').each(function()
|
||||
{
|
||||
$(this).qtip(
|
||||
{
|
||||
content: {
|
||||
text: 'Chargement...',
|
||||
url: $(this).attr('href'),
|
||||
title: {
|
||||
text: 'Evolution - ' + $(this).attr('name'),
|
||||
}
|
||||
},
|
||||
position: {
|
||||
corner: {
|
||||
target: 'leftMiddle',
|
||||
tooltip: 'rightMiddle'
|
||||
},
|
||||
},
|
||||
show: { solo: true},
|
||||
style: {
|
||||
tip: true,
|
||||
border: {
|
||||
width: 1,
|
||||
radius: 0
|
||||
},
|
||||
name: 'light',
|
||||
width: 400
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<link rel="stylesheet" type="text/css" href="./css/jtip.css" />
|
||||
@ -167,13 +196,12 @@ $(document).ready(function()
|
||||
#synthese .head { font-weight:bold; }
|
||||
#graphInfo { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; margin-left:10px; }
|
||||
|
||||
/* ----- add selectors here for font sizing ----- */
|
||||
#JT_close_left, #JT_close_right{font-size: 12px;}
|
||||
#JT_copy p, #JT_copy ul{font-size: 12px;}
|
||||
p, label{font-size: 12px;}
|
||||
|
||||
ul{list-style: none;}
|
||||
ul li{padding-top:3px;}
|
||||
.qtip-title {font-size:11px;}
|
||||
.qtip-content {font-size:11px;}
|
||||
</style>
|
||||
|
||||
<div id="container">
|
||||
@ -231,85 +259,85 @@ if (count($ratiosEntrep)==0 || !isset($ratiosEntrep)){
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="head"><a id="r5" tooltip="<?=wrapComment($ratiosInfos['r5']['commentaires'])?>">CHIFFRE D'AFFAIRES</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r5']['commentaires'])?>">CHIFFRE D'AFFAIRES</a></td>
|
||||
<td class="right"><?php dRatio(2,'r5'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r5'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r6'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r5'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r6'); ?></td>
|
||||
<td><a class="jTip" id="gr1" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r5))?>" name="CHIFFRE D'AFFAIRES :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r5))?>" name="CHIFFRE D'AFFAIRES"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r7" tooltip="<?=wrapComment($ratiosInfos['r7']['commentaires'])?>">RESULTAT COURANT AVANT IMPOTS</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r7']['commentaires'])?>">RESULTAT COURANT AVANT IMPOTS</a></td>
|
||||
<td class="right"><?php dRatio(2,'r7'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r7'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r8'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r7'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r8'); ?></td>
|
||||
<td><a class="jTip" id="gr7" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r7))?>" name="RESULTAT COURANT AVANT IMPOTS :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r7))?>" name="RESULTAT COURANT AVANT IMPOTS"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r10" tooltip="<?=wrapComment($ratiosInfos['r10']['commentaires'])?>">RESULTAT NET</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r10']['commentaires'])?>">RESULTAT NET</a></td>
|
||||
<td class="right"><?php dRatio(2,'r10'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r10'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r11'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r10'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r11'); ?></td>
|
||||
<td><a class="jTip" id="gr10" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r10))?>" name="RESULTAT NET :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r10))?>" name="RESULTAT NET"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r18" tooltip="<?=wrapComment($ratiosInfos['r18']['commentaires'])?>">FONDS PROPRES</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r18']['commentaires'])?>">FONDS PROPRES</a></td>
|
||||
<td class="right"><?php dRatio(2,'r18'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r18'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r19'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r18'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r19'); ?></td>
|
||||
<td class="right"><a class="jTip" id="gr82" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r18))?>" name="FONDS PROPRES :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td class="right"><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r18))?>" name="FONDS PROPRES"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r22" tooltip="<?=wrapComment($ratiosInfos['r22']['commentaires'])?>">TOTAL BILAN</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r22']['commentaires'])?>">TOTAL BILAN</a></td>
|
||||
<td class="right"><?php dRatio(2,'r22'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r22'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r23'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r22'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r23'); ?></td>
|
||||
<td><a class="jTip" id="gr22" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r22))?>" name="TOTAL BILAN :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r22))?>" name="TOTAL BILAN"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r231" tooltip="<?=wrapComment($ratiosInfos['r231']['commentaires'])?>">FONDS DE ROULEMENT</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r231']['commentaires'])?>">FONDS DE ROULEMENT</a></td>
|
||||
<td class="right"><?php dRatio(2,'r231'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r231'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r235'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r231'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r235'); ?></td>
|
||||
<td><a class="jTip" id="gr231" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r231))?>" name="FONDS DE ROULEMENT :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r231))?>" name="FONDS DE ROULEMENT"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r232" tooltip="<?=wrapComment($ratiosInfos['r232']['commentaires'])?>">BESOIN EN FONDS DE ROULEMENT</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r232']['commentaires'])?>">BESOIN EN FONDS DE ROULEMENT</a></td>
|
||||
<td class="right"><?php dRatio(2,'r232'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r232'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r236'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r232'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r236'); ?></td>
|
||||
<td><a class="jTip" id="gr232" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r232))?>" name="BESOIN EN FONDS DE ROULEMENT :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r232))?>" name="BESOIN EN FONDS DE ROULEMENT"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r63" tooltip="<?=wrapComment($ratiosInfos['r63']['commentaires'])?>">TRESORERIE</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r63']['commentaires'])?>">TRESORERIE</a></td>
|
||||
<td class="right"><?php dRatio(2,'r63'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r63'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r64'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r63'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r64'); ?></td>
|
||||
<td><a class="jTip" id="gr63" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r63))?>" name="TRESORERIE :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r63))?>" name="TRESORERIE"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="head"><a id="r24" tooltip="<?=wrapComment($ratiosInfos['r24']['commentaires'])?>">EFFECTIF</a></td>
|
||||
<td class="head"><a tooltip="<?=wrapComment($ratiosInfos['r24']['commentaires'])?>">EFFECTIF</a></td>
|
||||
<td class="right"><?php dRatio(2,'r24'); ?></td>
|
||||
<td class="right"><?php dRatio(1,'r24'); ?></td>
|
||||
<td class="right"><?php dEvol(1,'r24'); ?></td>
|
||||
<td class="right"><?php dRatio(0,'r24'); ?></td>
|
||||
<td class="right"><?php dEvol(0,'r24'); ?></td>
|
||||
<td><a class="jTip" id="gr24" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r24))?>&unite=<?=$ratiosInfos['r24']['unite']?>" name="EFFECTIF :"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
<td><a class="jTip" href="./pages/synthese_dgraph.php?width=375&data=<?=urlencode(serialize($evol_r24))?>&unite=<?=$ratiosInfos['r24']['unite']?>" name="EFFECTIF"><img src="./img/synthese/chart_bar.png" alt="Visionner le graphique"></a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user