81 lines
1.8 KiB
PHTML
Raw Normal View History

2011-05-11 13:38:14 +00:00
<div id="center">
<h1>PI&Egrave;CES OFFICIELLES</h1>
<div class="paragraph">
<table class="identite">
<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>
2011-05-18 14:37:58 +00:00
<tr>
<td width="30">&nbsp;</td>
<td colspan="2" width="550" class="StyleInfoData">
<?=$this->action('infos','surveillance', null, array(
'source' => 'actes',
'siret' => $this->siret
))?>
</td>
</tr>
2011-05-11 13:38:14 +00:00
</table>
</div>
<h2>Actes & Status</h2>
<div class="paragraph">
<table class="greffe">
<thead>
<tr><th>Date</th><th>Type</th><th>Décisions</th>
</tr>
</thead>
<tbody>
<?php foreach($this->InfosActes as $acte):?>
<?php
$style = '';
if ($acte['mode']=='fichier' && $this->ModeEdition) {
$style.=' style="background-color: #007DFF;"';
}
?>
<tr<?=$style?>>
2011-05-11 13:38:14 +00:00
<td class="date"><?=$acte['date']?></td>
<td class="type"><?=$acte['lib']?>
<?php
switch($acte['mode'])
{
case 'fichier':
case 'T':
?>
<span class="fichier">
<a href="<?=$acte['href']?>" title="<?=$acte['title']?>"><img alt="PDF" src="/themes/default/images/interfaces/icone_pdf.gif"/>
</a>
</span>
<?php
break;
case 'courrier':
case 'C':
?>
<a class="dialogcmd" href="<?=$acte['href']?>" title="<?=$acte['title']?>">
<img alt="Courrier" src="/themes/default/images/interfaces/icone_courrier.png"/>
</a>
<?php
break;
}
//Attention mode edition affichage lien factice
?>
</td>
<td class="decision"><?=$acte['decision']?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>