2009-04-21 07:40:48 +00:00
< ? php
if ( ! $_SESSION [ 'connected' ]) die ();
$tabInfo = $_SESSION [ 'tabInfo' ];
$siret = trim ( preg_replace ( '/[^0-9]/' , '' , $_REQUEST [ 'siret' ]));
if ( strlen ( $siret ) <> 0 && strlen ( $siret ) <> 9 && strlen ( $siret ) <> 14 ) die ( 'Param<61> tres incorrects !' );
$idEntreprise = trim ( preg_replace ( '/[^0-9]/' , '' , $_REQUEST [ 'idEntreprise' ])) * 1 ; // Si id=0 alors non communiqu<71>
if (( $siret * 1 ) == 0 && $idEntreprise == 0 ) die ( 'Param<61> tres incorrects !' );
$siren = substr ( $siret , 0 , 9 );
$raisonSociale = $tabInfo [ 'entrep' ][ 'raisonSociale' ];
2009-05-28 15:50:45 +00:00
if (( $siret * 1 ) == 0 || ( $siren * 1 ) < 100 ){ $fileName = $page2 . '-' . $idEntreprise ;
2009-06-22 06:56:42 +00:00
} else { $fileName = $page2 . '-' . $siret ; }
2009-04-21 07:40:48 +00:00
2009-05-28 15:50:45 +00:00
require_once 'cache.php' ;
$cache = new Cache ();
//Forcer la cr<63> ation de la page dans le cache lorsque l'utilisateur a le mode saisie
2009-06-23 06:55:32 +00:00
$cache -> forceStart = TRUE ;
2009-05-28 15:50:45 +00:00
if ( preg_match ( '/saisie/i' , $_SESSION [ 'tabInfo' ][ 'droits' ]) || $_SESSION [ 'tabInfo' ][ 'mode_edition' ] == 1 ){
$cache -> disable = TRUE ;
2009-04-21 07:40:48 +00:00
}
2009-05-28 15:50:45 +00:00
if ( $cache -> startCapture ( $fileName . '.html' ) == FALSE ){
print $cache -> displayCache ();
} else {
2009-04-21 07:40:48 +00:00
2009-06-23 06:55:32 +00:00
require_once 'ratios/ratios.php' ;
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
try {
$O = $client -> getRatios ( $siren , 'bilan' );
$bilansInfos = $O [ 'result' ][ 'BilansInfos' ];
$ratiosInfos = $O [ 'result' ][ 'RatiosInfos' ];
$ratiosEntrep = $O [ 'result' ][ 'RatiosEntrep' ];
$ratiosEntrepEvol = $O [ 'result' ][ 'RatiosEntrepEvol' ];
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
$dataActif = array ( graphPercent ( 'r51' , 'r22' ),
graphPercent ( 'r52' , 'r22' ),
graphPercent ( 'r53' , 'r22' ),
graphPercent ( 'r60' , 'r22' ),
graphPercent ( 'r61' , 'r22' ),
graphPercent ( 'r62' , 'r22' ),
graphPercent ( 'r63' , 'r22' ),
);
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
$dataPassif = array ( graphPercent ( 'r70' , 'r22' ),
graphPercent ( 'r71' , 'r22' ),
graphPercent ( 'r72' , 'r22' ),
graphPercent ( 'r83' , 'r22' ),
graphPercent ( 'r84' , 'r22' ),
graphPercent ( 'r85' , 'r22' ),
graphPercent ( 'r86' , 'r22' ),
graphPercent ( 'r87' , 'r22' ),
2009-06-22 06:56:42 +00:00
);
2009-05-28 15:50:45 +00:00
$dataSIG = array ( graphPercent ( 'r101' , 'r101' ) - graphPercent ( 'r122' , 'r101' ),
graphPercent ( 'r122' , 'r101' ) - graphPercent ( 'r130' , 'r101' ),
graphPercent ( 'r130' , 'r101' ) - graphPercent ( 'r140' , 'r101' ),
graphPercent ( 'r140' , 'r101' ) - graphPercent ( 'r150' , 'r101' ),
graphPercent ( 'r150' , 'r101' ) - graphPercent ( 'r170' , 'r101' ),
graphPercent ( 'r170' , 'r101' ) - graphPercent ( 'r199' , 'r101' ),
graphPercent ( 'r199' , 'r101' ),
2009-06-22 06:56:42 +00:00
);
2009-04-21 07:40:48 +00:00
2009-05-28 15:50:45 +00:00
} catch ( SoapFault $fault ) {
require_once 'soaperror.php' ;
processSoapFault ( $client , $fault , $tabInfo );
die ();
2009-04-21 07:40:48 +00:00
}
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
?>
< style >
#container {width:580px; background-color:#FFFFFF; }
. bilans { font - family : " Lucida Sans Unicode " , " Lucida Grande " , Sans - Serif ; font - size : 12 px ; margin : 0 ; width : 580 px ; text - align : left ; border - collapse : collapse ;}
. bilans th { padding : 4 px ; font - weight : normal ; font - size : 11 px ; border : 1 px solid #000; color:#000; background:#b9c9fe; text-align:center; font-weight:bold;}
. bilans td { padding : 4 px ; border : 1 px solid #000; color:#000;}
. bilans th . date { font - size : 10 px ;}
. bilans td . right { text - align : right ;}
. bilans td . center { text - align : center ;}
. bilans td . italique { font - style : italic ;}
. bilans tr . subhead td { padding : 4 px ; background : #b9c9fe; border: 1px solid #000; font-weight:bold; color:#000;}
. entete { margin : 1 px ;}
. subentete { margin : 2 px ;}
</ style >
< div id = " container " >
< div >< img class = " entete " src = " ./img/rub_bilans.png " width = " 577 " height = " 36 " ></ div >
< table >
2009-04-21 07:40:48 +00:00
< tr >
2009-05-28 15:50:45 +00:00
< td width = " 30 " >& nbsp ; </ td >
< td width = " 200 " class = " StyleInfoLib " > Num & eacute ; ro identifiant Siren </ td >
< td width = " 350 " class = " StyleInfoData " >< ? = substr ( $siren , 0 , 3 ) . ' ' . substr ( $siren , 3 , 3 ) . ' ' . substr ( $siren , 6 , 3 ) ?> </td>
2009-04-21 07:40:48 +00:00
</ tr >
< tr >
2009-05-28 15:50:45 +00:00
< td width = " 30 " >& nbsp ; </ td >
< td width = " 200 " class = " StyleInfoLib " > Raison Sociale </ td >
< td width = " 350 " class = " StyleInfoData " >< ? = $tabInfo [ 'entrep' ][ 'raisonSociale' ] ?> </td>
2009-04-21 07:40:48 +00:00
</ tr >
2009-05-28 15:50:45 +00:00
</ table >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( count ( $ratiosEntrep ) == 0 || ! isset ( $ratiosEntrep )){
?>
< table >
< tr >< td width = " 30 " >& nbsp ; </ td >< td >< b > Aucun bilan disponible pour cette entreprise !</ b ></ td ></ tr >
</ table >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
} else {
?>
< div >< img class = " subentete " src = " ./img/srub_bilanap.png " width = " 576 " height = " 27 " /></ div >
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
< table class = " bilans " >
< thead >
< tr >
< th > ACTIF </ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 4 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[4]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 3 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[3]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 2 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[2]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 1 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[1]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 0 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[0]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
2009-06-22 06:56:42 +00:00
</ th >
2009-05-28 15:50:45 +00:00
< th >% T . B .</ th >
</ tr >
2009-06-22 06:56:42 +00:00
</ thead >
2009-05-28 15:50:45 +00:00
< tbody >
< tr class = " subhead " >
< td > Actif Immobilis<EFBFBD> Net </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r59' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r59' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r59' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r59' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r59' ); ?> </td>
< td class = " right " >< ? php print dPercent ( 0 , 'r59' , 'r22' ) ?> </td>
2009-05-28 15:50:45 +00:00
</ tr >
< tr >
< td > Incorporelles </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r51' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r51' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r51' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r51' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r51' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r51' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Corporelles </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r52' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r52' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r52' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r52' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r52' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r52' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Financi<EFBFBD> res </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r53' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r53' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r53' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r53' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r53' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r53' , 'r22' ) ?> </td>
</ tr >
< tr class = " subhead " >
< td > Actif Circulant Net </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r69' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r69' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r69' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r69' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r69' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r69' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Stock et encours </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r60' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r60' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r60' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r60' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r60' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r60' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Cr<EFBFBD> ances Clients </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r61' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r61' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r61' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r61' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r61' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r61' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Autres Cr<EFBFBD> ances </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r62' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r62' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r62' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r62' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r62' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r62' , 'r22' ) ?> </td>
</ tr >
< tr >
< td >& nbsp ; </ td >
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td >
< td ></ td >
</ tr >
< tr >
< td > Tr<EFBFBD> sorerie Active </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r63' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r63' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r63' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r63' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r63' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r63' , 'r22' ) ?> </td>
</ tr >
< tr class = " subhead " >
< td > TOTAL ACTIF </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r22' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r22' , 'r22' ) ?> </td>
</ tr >
2009-06-23 06:55:32 +00:00
< tr >< td colspan = " 7 " >
< ? php print bilans_graph_actif ( $dataActif , $fileName ); ?>
</ td ></ tr >
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
</ tbody >
</ table > <EFBFBD>
< br />< br />
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
< table class = " bilans " >
< thead >
< tr >
< th > PASSIF </ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 4 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[4]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 3 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[3]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 2 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[2]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 1 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[1]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 0 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[0]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th >% T . B .</ th >
</ tr >
2009-06-22 06:56:42 +00:00
</ thead >
2009-05-28 15:50:45 +00:00
< tbody >
< tr class = " subhead " >
< td > Ressources Propres </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r79' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r79' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r79' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r79' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r79' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r79' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Fonds Propres </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r70' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r70' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r70' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r70' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r70' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r70' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Provisions Risques </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r71' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r71' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r71' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r71' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r71' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r71' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Comptes Courants </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r72' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r72' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r72' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r72' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r72' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r72' , 'r22' ) ?> </td>
</ tr >
< tr class = " subhead " >
< td > Ressources Externes </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r90' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r90' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r90' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r90' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r90' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r90' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Dettes Financi<EFBFBD> res </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r83' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r83' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r83' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r83' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r83' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r83' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Dettes Fournisseurs </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r84' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r84' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r84' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r84' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r84' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r84' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Dettes Fiscales </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r85' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r85' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r85' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r85' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r85' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r85' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Autres Dettes </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r86' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r86' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r86' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r86' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r86' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r86' , 'r22' ) ?> </td>
</ tr >
< tr >
< td > Tr<EFBFBD> sorerie Passive </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r87' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r87' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r87' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r87' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r87' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r87' , 'r22' ) ?> </td>
</ tr >
< tr class = " subhead " >
< td > TOTAL PASSIF </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r22' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r22' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r22' , 'r22' ) ?> </td>
</ tr >
2009-06-23 06:55:32 +00:00
< tr >< td colspan = " 7 " >
< ? php print bilans_graph_passif ( $dataPassif , $fileName ); ?>
</ td ></ tr >
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
</ tbody >
</ table > <EFBFBD>
< br />< br />
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
< div >< img class = " subentete " src = " ./img/srub_sig.png " width = " 576 " height = " 27 " /></ div >
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
< table class = " bilans " >
< thead >
< tr >
< th colspan = " 2 " > SOLDES INTERMEDIAIRES DE GESTION </ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 4 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 4 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[4]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 3 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 3 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[3]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 2 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 2 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[2]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 1 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 1 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[1]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
</ th >
< th class = " date " >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
if ( isset ( $bilansInfos [ 0 ][ 'dateCloture' ])) {
print substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 6 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 4 , 2 ) . '/' . substr ( $bilansInfos [ 0 ][ 'dateCloture' ], 0 , 4 ); ?> <br/><?php print $bilansInfos[0]['duree']; ?> mois
< ? php } else { print '-' ; } ?>
2009-06-22 06:56:42 +00:00
</ th >
2009-05-28 15:50:45 +00:00
< th >% C . A .</ th >
</ tr >
2009-06-22 06:56:42 +00:00
</ thead >
2009-05-28 15:50:45 +00:00
< tbody >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > CHIFFRE D ' AFFAIRES HORS TAXE </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r101' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r101' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r101' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r101' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r101' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r101' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Achat de marchandises , de mati<EFBFBD> res premi<EFBFBD> res </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r102' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r102' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r102' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r102' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r102' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r102' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > MARGE COMMERCIALE </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r110' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r110' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r110' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r110' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r110' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r110' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Production vendue </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r111' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r111' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r111' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r111' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r111' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r111' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Production immobilis<EFBFBD> e et stock<EFBFBD> e </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r112' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r112' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r112' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r112' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r112' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r112' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > PRODUCTION DE L ' EXERCICE </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r120' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r120' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r120' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r120' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r120' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r120' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >& plusmn ; </ td >< td > Variation de stock de marchandises et mati<EFBFBD> res premi<EFBFBD> res </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r121' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r121' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r121' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r121' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r121' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r121' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > MARGE BRUTE </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r122' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r122' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r122' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r122' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r122' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r122' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Autres charges externes </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r123' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r123' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r123' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r123' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r123' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r123' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > VALEUR AJOUT<EFBFBD> E </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r130' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r130' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r130' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r130' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r130' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r130' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Charges de personnel </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r132' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r132' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r132' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r132' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r132' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r132' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Imp<EFBFBD> ts , taxes & versements assimil<EFBFBD> s </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r133' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r133' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r133' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r133' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r133' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r133' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Subventions d ' exploitation </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r131' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r131' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r131' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r131' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r131' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r131' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > EXC<EFBFBD> DENT BRUT D ' EXPLOITATION ( EBE ) </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r140' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r140' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r140' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r140' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r140' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r140' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Autres produits d ' exploitation </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r141' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r141' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r141' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r141' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r141' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r141' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Autres charges d ' exploitation </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r142' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r142' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r142' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r142' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r142' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r142' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Reprise sur dotations & transferts de charges </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r143' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r143' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r143' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r143' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r143' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r143' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > 70 % Loyer de cr<EFBFBD> dit bail </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r144' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r144' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r144' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r144' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r144' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r144' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Dotations d 'exploitation & provisions d' exploitation </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r145' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r145' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r145' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r145' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r145' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r145' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > R<EFBFBD> SULTAT D ' EXPLOITATION </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r150' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r150' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r150' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r150' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r150' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r150' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Produits financiers </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r151' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r151' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r151' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r151' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r151' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r151' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > 30 % Loyer de cr<EFBFBD> dit bail </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r152' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r152' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r152' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r152' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r152' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r152' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Charges financi<EFBFBD> res </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r153' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r153' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r153' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r153' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r153' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r153' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > R<EFBFBD> SULTAT COURANT AVANT IMPOTS </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r170' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r170' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r170' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r170' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r170' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r170' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >+</ td >< td > Produits exceptionnels </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r171' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r171' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r171' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r171' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r171' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r171' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Charges exceptionnelles </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r172' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r172' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r172' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r172' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r172' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r172' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Imp<EFBFBD> ts sur les b<EFBFBD> n<EFBFBD> fices </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r181' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r181' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r181' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r181' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r181' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r181' , 'r101' ); ?> </td>
</ tr >
< tr >
< td >-</ td >< td > Participation salariale </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r182' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r182' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r182' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r182' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r182' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r182' , 'r101' ); ?> </td>
</ tr >
< tr class = " subhead " >
< td class = " center " colspan = " 2 " > R<EFBFBD> SULTAT NET </ td >
2009-06-22 06:56:42 +00:00
< td class = " right " >< ? php print dRatio ( 4 , 'r199' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 3 , 'r199' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 2 , 'r199' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 1 , 'r199' ); ?> </td>
< td class = " right " >< ? php print dRatio ( 0 , 'r199' ); ?> </td>
2009-05-28 15:50:45 +00:00
< td class = " right " >< ? php dPercent ( 0 , 'r199' , 'r101' ); ?> </td>
</ tr >
2009-06-22 06:56:42 +00:00
2009-05-28 15:50:45 +00:00
</ tbody >
</ table > <EFBFBD>
2009-06-23 06:55:32 +00:00
< ? php print bilans_graph_sig ( $dataSIG , $fileName ); ?>
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
}
?>
</ div >
2009-06-22 06:56:42 +00:00
< ? php
2009-05-28 15:50:45 +00:00
} //Fin du cache
$cache -> stopCapture ();
2009-04-21 07:40:48 +00:00
?>
2009-06-22 06:56:42 +00:00
2009-04-21 07:40:48 +00:00