Correction affichage des conclusions de l'indiscore

This commit is contained in:
Michael RICOIS 2009-09-25 14:44:28 +00:00
parent bca30cc63a
commit 1bf0b02df5

View File

@ -120,16 +120,16 @@ function info_evaluationconclusion($info)
{ {
if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; } if(count($info)>0) foreach($info as $key => $v) { ${$key} = $v; }
$html.= 'Compte tenu des informations disponibles aupr&egrave;s des sources officielles Scores et D&eacute;cisions pr&eacute;sente la conclusion suivante :<br/>'."\n"; $html.= 'Compte tenu des informations disponibles aupr&egrave;s des sources officielles Scores et D&eacute;cisions pr&eacute;sente la conclusion suivante :<br/>'."\n";
$html.= '<h3>LE SCORE EST DE '.$etab['Indiscore'].' SUR 100 POINTS</h3>'."\n"; $html.= '<h3>LE SCORE EST DE '.$Indiscore.' SUR 100 POINTS</h3>'."\n";
if($etab['infoEncours']!='' && !is_numeric($etab['encours']) && $etab['encours']=='N/A'){ if($infoEncours!='' && !is_numeric($encours) && $encours=='N/A'){
$html.='<h3>'.$etab['infoEncours'].'</h3>'; $html.='<h3>'.$infoEncours.'</h3>';
}else{ }else{
if ($etab['Indiscore']!=0) { if ($Indiscore!=0) {
$html.= '<i>La tendance de la note est '.$etab['TendanceIndiscore'].'</i>'."\n"; $html.= '<i>La tendance de la note est '.$etab['TendanceIndiscore'].'</i>'."\n";
$html.= '<h3>L\'ENCOURS MAXIMUM CONSEILL&Eacute; EST DE '.round($etab['encours']/1000).' K&euro;</h3>'."\n"; $html.= '<h3>L\'ENCOURS MAXIMUM CONSEILL&Eacute; EST DE '.round($encours/1000).' K&euro;</h3>'."\n";
} }
$html.= '<h3>'.$etab['infoEncours'].'</h3>'."\n"; $html.= '<h3>'.$infoEncours.'</h3>'."\n";
} }
return $html; return $html;
} }