45 lines
1.3 KiB
PHTML
45 lines
1.3 KiB
PHTML
<div id="center">
|
|
<?php if ($this->detail) { ?>
|
|
<h1>Détails des inscriptions d'endettement</h1>
|
|
<?php } else { ?>
|
|
<h1>Synthèse des inscriptions d'endettement</h1>
|
|
<?php } ?>
|
|
<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>
|
|
</table>
|
|
|
|
<?php if ($this->detail) { ?>
|
|
<a href="<?=$this->url(array('controller'=>'pieces','action'=>'privileges','siret'=>$this->siret), null, true)?>">
|
|
Retour à la Synthese des inscriptions</a><br/>
|
|
<?php } ?>
|
|
</div>
|
|
|
|
<?php if ($this->surveillance) {?>
|
|
<div class="paragraph">
|
|
<?=$this->action('infos','surveillance', null, array('siret' => $this->siret, 'source'=>'privileges'), null, true)?>
|
|
</div>
|
|
<?php }?>
|
|
|
|
<?php
|
|
if ($this->detail) {
|
|
echo $this->partial('pieces/privileges-details.phtml', array(
|
|
'type' => $this->type,
|
|
'privileges' => $this->privileges,
|
|
'detail' => $this->detail));
|
|
} else {
|
|
echo $this->partial('pieces/privileges-cumul.phtml', array(
|
|
'siret' => $this->siret,
|
|
'privileges' => $this->privileges));
|
|
}
|
|
?>
|
|
</div>
|