Ajout procédure collective, etablissement actif, vérification date indiscore, issue #0000064
This commit is contained in:
parent
f8793c7310
commit
d3b5a721f8
@ -202,20 +202,25 @@ if(count($listSurveillance)>0)
|
||||
}else{ ?> <p>-</p> <?php } ?>
|
||||
</td>
|
||||
<td class="tooltip" tooltip="<?php
|
||||
if($item['procol']=='P'){
|
||||
echo 'En procédure collective.';
|
||||
echo '<br/>';
|
||||
}
|
||||
if($item['actif']==0){
|
||||
echo 'Établissement inactif.';
|
||||
echo '<br/>';
|
||||
}
|
||||
echo '- Dernier exercice pris en compte : ';
|
||||
echo ( !isset($item['dateBilan']) || $item['dateBilan']=='0000-00-00') ?
|
||||
'Néant' : 'le '.WDate::dateT('Y-m-d', 'd/m/Y',$item['dateBilan']);
|
||||
echo '<br/>';
|
||||
if($item['sourceModif']!='ajout')
|
||||
{
|
||||
if(!empty($item['sourceModif']))
|
||||
{
|
||||
if($item['sourceModif']!='ajout'){
|
||||
if(!empty($item['sourceModif'])){
|
||||
echo '- Dernière modification ';
|
||||
echo ( !isset($item['indiScoreDate']) ||
|
||||
$item['indiScoreDate']=='0000-00-00') ? '' :
|
||||
'le '.WDate::dateT('Y-m-d', 'd/m/Y',$item['indiScoreDate']);
|
||||
if(!empty($item['sourceModif']))
|
||||
{
|
||||
if(!empty($item['sourceModif'])){
|
||||
if(in_array($item['sourceModif'], $dicoSource))
|
||||
$sourceModif = $item['sourceModif'];
|
||||
else
|
||||
@ -224,18 +229,20 @@ if(count($listSurveillance)>0)
|
||||
}
|
||||
echo '<br/>';
|
||||
}
|
||||
if($item['indiScoreDatePre']!='0000-00-00'){
|
||||
echo '- Précédent score : ';
|
||||
echo $indiScorePre.'/'.$maxIndiscore;
|
||||
}
|
||||
}
|
||||
?>">
|
||||
<div class="align_image">
|
||||
<?php
|
||||
if($item['sourceModif']!='ajout')
|
||||
if($item['sourceModif']!='ajout' &&
|
||||
$item['indiScoreDate']!='0000-00-00' &&
|
||||
$item['procol']!='P' && $item['actif']!=0)
|
||||
{
|
||||
?>
|
||||
<span>
|
||||
<?=$indiScore.'/'.$maxIndiscore?>
|
||||
</span>
|
||||
<span><?=$indiScore.'/'.$maxIndiscore?></span>
|
||||
<?php
|
||||
//Procols
|
||||
if($item['procol']=='P'){
|
||||
@ -263,7 +270,7 @@ if(count($listSurveillance)>0)
|
||||
?>
|
||||
<img src="./img/score_alert.gif"/>
|
||||
<?php
|
||||
}else echo '-';
|
||||
}else{ echo '-'; }
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
@ -275,7 +282,8 @@ if(count($listSurveillance)>0)
|
||||
if(!empty($item['encoursClient']) &&
|
||||
$item['sourceModif']!='ajout'){
|
||||
?>
|
||||
<?=$item['encoursClient']?> €
|
||||
<?=number_format(round($item['encoursClient']/1000), 0, ',', ' ')?>
|
||||
K€
|
||||
<?php
|
||||
}else{ ?> - <?php }
|
||||
}else{ ?> - <?php }
|
||||
@ -285,8 +293,10 @@ if(count($listSurveillance)>0)
|
||||
if($item['sourceModif']!='ajout')
|
||||
{
|
||||
?>
|
||||
<td class="encours" title="Précédent : <?=$item['encoursPre']?> €">
|
||||
<?=$item['encours']?> €
|
||||
<td class="encours" title="Précédent :
|
||||
<?=number_format(round($item['encoursPre']/1000), 0, ',', ' ')?>
|
||||
K€">
|
||||
<?=number_format(round($item['encours']/1000), 0, ',', ' ')?> K€
|
||||
</td>
|
||||
<?php
|
||||
}else{
|
||||
|
Loading…
Reference in New Issue
Block a user