62 lines
1.4 KiB
PHP
62 lines
1.4 KiB
PHP
|
<div id="center">
|
|||
|
<?php
|
|||
|
if (!$_SESSION['connected'])
|
|||
|
{
|
|||
|
echo ('Vous devez <20>tre connect<63> afin de pouvoir utiliser cette fonctionnalit<69>');
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
require_once 'common/dates.php';
|
|||
|
require_once 'common/curl.php';
|
|||
|
require_once 'infogreffe/infogreffews.php';
|
|||
|
//Login de l'utilisateur
|
|||
|
$login = strtolower($_SESSION['tabInfo']['login']);
|
|||
|
//Siren
|
|||
|
$siren = substr($_REQUEST['siret'],0,9);
|
|||
|
$cj = $_SESSION['tabInfo']['entrep']['fj'];
|
|||
|
$dep = substr(''.$_SESSION['tabInfo']['entrep']['codeCommune'],0,2);
|
|||
|
//Raison sociale depuis la session
|
|||
|
$raisonSociale = $_SESSION['tabInfo']['entrep']['raisonSociale'];
|
|||
|
//TODO : Raison sociale depuis l'url (cas des associations ?)
|
|||
|
isset($_REQUEST['rs'])? $raisonSociale = $_REQUEST['rs'] : '';
|
|||
|
(isset($_REQUEST['vue']) && !empty($_REQUEST['vue'])) ? $vue = $_REQUEST['vue'] : $vue = '';
|
|||
|
?>
|
|||
|
<h1>PIÈCES OFFICIELLES</h1>
|
|||
|
<table>
|
|||
|
<tr>
|
|||
|
<td width="30"> </td>
|
|||
|
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
|||
|
<td width="350" class="StyleInfoData"><?=substr($siren,0,3).' '.substr($siren,3,3).' '.substr($siren,6,3)?></td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td width="30"> </td>
|
|||
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|||
|
<td width="350" class="StyleInfoData"><?=$raisonSociale?></td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
|
|||
|
<h2>
|
|||
|
<?php
|
|||
|
if($vue=='actes')
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
|
|||
|
?>
|
|||
|
<h2>Actes & Statuts</h2>
|
|||
|
|
|||
|
<?php
|
|||
|
} //Fin vue actes
|
|||
|
elseif($vue=='bilans')
|
|||
|
{
|
|||
|
?>
|
|||
|
<h2>Comptes annuels</h2>
|
|||
|
<?php
|
|||
|
|
|||
|
|
|||
|
} // Fin vue bilans
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
?>
|
|||
|
</div>
|