2011-04-22 15:10:03 +00:00

180 lines
4.0 KiB
PHTML

<div id="center">
<h1>LIEN FINANCIER</h1>
<div class="paragraph">
<table>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">
Num&eacute;ro identifiant Siren
</td>
<td width="350" class="StyleInfoData">
<?=$this->SirenTexte($this->siren)?>
</td>
</tr>
<tr>
<td width="30">&nbsp;</td>
<td width="200" class="StyleInfoLib">Raison Sociale</td>
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
</tr>
</table>
</div>
<h2>Actionariat</h2>
<div class="paragraph">
<table>
<?php
if ( count($this->actionnaires)>0 ){
foreach ($this->actionnaires as $lien){
if ($lien->Actif==0){
$font1 = '<font color="gray"><i>';
$font2 = '</i></font>';
} else {
$font1 = $font2 = '';
}
?>
<tr>
<td class="StyleInfoData" width="100">
<?php
echo $font1;
if (intval($lien->Pmin)>0) echo $lien->Pmin.'&nbsp;%';
elseif ($lien->MajMin=='+') echo 'major.';
elseif ($lien->MajMin=='-') echo 'minor.';
elseif ($lien->MajMin=='C') echo 'major.';
elseif ($lien->MajMin=='S') echo 'minor.';
elseif ($lien->MajMin=='F') echo 'absorption';
elseif ($lien->MajMin=='A') echo 'absorbant';
else echo '&nbsp;';
echo $font2;
?>
</td>
<td class="StyleInfoLib" width="300">
<?php
echo $font1;
echo $lien->RaisonSociale;
echo $font2;
?>
</td>
<td class="StyleInfoData" width="150">
<?php
echo $font1;
if ( !empty($lien->Siren) ) {
$href = $this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $lien->Siren
));
echo 'Siren&nbsp;<a href="'.$href.'">'.$lien->Siren.'</a>';
}
else '&nbsp;';
if ($lien->Pays<>'France') echo '<b>'.$lien->Pays.'</b>';
echo $font2;
?>
</td>
</tr>
<?php
} //Fin pour chaque actionnaire
//Aucun actionnaire
} else {
?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="2" class="StyleInfoData">Aucun actionnaire r&eacute;f&eacute;renc&eacute; par nos services</td>
</tr>
<?php } ?>
</table>
</div>
<h2>Participations</h2>
<div class="paragraph">
<table>
<?php
if (count($this->participations)>0)
{
foreach ($this->participations as $lien){
if ($lien->Actif==0) {
$font1='<font color="gray"><i>';
$font2='</i></font>';
} else
$font1=$font2='';
?>
<tr>
<td class="StyleInfoData" width="100">
<?php
echo $font1;
if (intval($lien->Pmin)>0) echo $lien->Pmin.'&nbsp;%';
elseif ($lien->MajMin=='+') echo 'major.';
elseif ($lien->MajMin=='-') echo 'minor.';
elseif ($lien->MajMin=='C') echo 'major.';
elseif ($lien->MajMin=='S') echo 'minor.';
else echo '&nbsp;';
echo $font2;
?>
</td>
<td class="StyleInfoLib" width="300"><?
echo $font1;
echo $lien->RaisonSociale;
echo $font2;
?>
</td>
<td class="StyleInfoData" width="150"><?
echo $font1;
if ( !empty($lien->Siren) ) {
$href = $this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $lien->Siren
));
echo 'Siren&nbsp;<a href="'.$href.'">'.$lien->Siren.'</a>';
}
else '&nbsp;';
if ($lien->Pays<>'France') echo '<b>'.$lien->Pays.'</b>';
echo $font2;?></b>
</td>
</tr>
<?
} // Fin pour chaque participations
} else {
?>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="2" class="StyleInfoData">Aucune participation r&eacute;f&eacute;renc&eacute;e par nos services</td>
</tr>
<?php } ?>
</table>
</div>
<div class="paragraph">
<table>
<tr>
<td width="30">&nbsp;</td>
<td width="550" colspan="2" class="StyleInfoData">
<?php if (!empty($this->source) || !empty($this->dateMaj) ){?>
<?php if (!empty($this->source)){ ?>
Source <?=$this->source?>,
<?php
switch(strtolower($this->source)) {
case 'presse':
echo '<img src="./img/logo_jal.png"/>';
break;
case 'collecte':
break;
case 'sed':
break;
case 'actes':
echo '<img src="./img/logo_jo.png"/>';
break;
}
}
?>
<?php if (!empty($this->dateMaj)){ ?>
Mise à jour le <?=WDate::dateT('Y-m-d','d/m/Y',$this->dateMaj)?>
<?php }
} ?>
</td>
</tr>
</table>
</div>
</div>