52 lines
1.2 KiB
PHTML
52 lines
1.2 KiB
PHTML
<div id="center">
|
|
<h1>COMMANDES DE PIÈCES</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>
|
|
</table>
|
|
</div>
|
|
|
|
<?php if(!empty($this->message)) { ?>
|
|
<div id="message"><?=$this->message?></div>
|
|
<?php } ?>
|
|
|
|
<style>
|
|
#kbisM {display:none;}
|
|
#kbisC {display:none;}
|
|
#privilegesM {display:none;}
|
|
</style>
|
|
|
|
|
|
<h2>EXTRAIT KBIS</h2>
|
|
<div class="paragraph">
|
|
<?php if ($this->permKbis) {?>
|
|
<?=$this->partial('pieces/commande-kbis.phtml')?>
|
|
<?php } else {?>
|
|
<p class="marge">Vous n'avez pas les droits d'accès pour cette fonctionalité.</p>
|
|
<?php }?>
|
|
</div>
|
|
|
|
<h2>PRIVILÉGES & NANTISSEMENTS</h2>
|
|
<div class="paragraph">
|
|
<?php if ($this->permPriv) {?>
|
|
<?=$this->partial('pieces/commande-privileges.phtml')?>
|
|
<?php } else {?>
|
|
<p class="marge">Vous n'avez pas les droits d'accès pour cette fonctionalité.</p>
|
|
<?php }?>
|
|
</div>
|
|
|
|
</div>
|