2011-05-11 13:38:14 +00:00
|
|
|
<div id="center">
|
|
|
|
|
|
|
|
<h1>PIÈCES OFFICIELLES</h1>
|
|
|
|
<div class="paragraph">
|
|
|
|
<table class="identite">
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td width="200" class="StyleInfoLib">
|
|
|
|
Numéro identifiant Siren
|
|
|
|
</td>
|
|
|
|
<td width="350" class="StyleInfoData">
|
|
|
|
<?=$this->SirenTexte($this->siren)?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
|
|
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
|
|
|
</tr>
|
2012-03-01 13:10:25 +00:00
|
|
|
<?php if ($this->surveillance) {?>
|
2011-05-18 14:37:58 +00:00
|
|
|
<tr>
|
|
|
|
<td width="30"> </td>
|
|
|
|
<td colspan="2" width="550" class="StyleInfoData">
|
|
|
|
<?=$this->action('infos','surveillance', null, array(
|
|
|
|
'source' => 'actes',
|
|
|
|
'siret' => $this->siret
|
|
|
|
))?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2012-03-01 13:10:25 +00:00
|
|
|
<?php }?>
|
2011-05-11 13:38:14 +00:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Compte annuels</h2>
|
|
|
|
<div class="paragraph">
|
2011-08-16 08:21:36 +00:00
|
|
|
<?php if ($this->ErreurMessage):?>
|
|
|
|
<?=$this->ErreurMessage?>
|
|
|
|
<?php else:?>
|
2011-05-11 13:38:14 +00:00
|
|
|
<table class="greffe">
|
|
|
|
<thead>
|
|
|
|
<tr><th>Date de clôture</th><th>Type</th><th>Décisions</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php foreach($this->InfosBilans as $bilan):?>
|
2011-05-17 12:22:31 +00:00
|
|
|
<?php
|
|
|
|
$style = '';
|
|
|
|
if ($bilan['mode']=='fichier' && $this->ModeEdition) {
|
|
|
|
$style.=' style="background-color: #007DFF;"';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr<?=$style?>>
|
2011-05-11 13:38:14 +00:00
|
|
|
<td class="date"><?=$bilan['date']?></td>
|
|
|
|
<td class="type"><?=$bilan['type']?>
|
|
|
|
<?php
|
|
|
|
switch($bilan['mode'])
|
|
|
|
{
|
|
|
|
case 'fichier':
|
|
|
|
case 'T':
|
|
|
|
?>
|
|
|
|
<span class="fichier">
|
|
|
|
<a href="<?=$bilan['href']?>" title="<?=$bilan['title']?>">
|
|
|
|
<img alt="PDF" src="/themes/default/images/interfaces/icone_pdf.gif"/>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
case 'courrier':
|
|
|
|
case 'C':
|
|
|
|
?>
|
|
|
|
<a class="dialogcmd" href="<?=$bilan['href']?>" title="<?=$bilan['title']?>">
|
|
|
|
<img alt="Courrier" src="/themes/default/images/interfaces/icone_courrier.png"/>
|
|
|
|
</a>
|
|
|
|
<?php
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
?>
|
2012-02-14 09:18:59 +00:00
|
|
|
<?php if ($this->ModeEdition && $bilan['mode']!='fichier'){?>
|
2011-12-10 17:56:25 +00:00
|
|
|
<br/><a href="<?=$this->url(array(
|
|
|
|
'controller' => 'pieces',
|
|
|
|
'action' => 'cmdfactice',
|
|
|
|
'siret' => $this->siret,
|
|
|
|
'ref' => $bilan['ref'],
|
|
|
|
|
|
|
|
), null, true)?>" target="_blank">
|
|
|
|
Créer une commande factice.
|
|
|
|
</a>
|
|
|
|
<?php }?>
|
2011-05-11 13:38:14 +00:00
|
|
|
</td>
|
|
|
|
<td class="decision"><?=$bilan['decision']?></td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach;?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2011-08-16 08:21:36 +00:00
|
|
|
<?php endif;?>
|
2011-05-11 13:38:14 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|