96 lines
2.3 KiB
PHP
96 lines
2.3 KiB
PHP
<?php
|
|
if (!$_SESSION['connected']) {
|
|
echo ('Vous devez être connecté afin de pouvoir utiliser cette fonctionnalité');
|
|
exit;
|
|
}
|
|
|
|
require_once 'cache/cache.php';
|
|
|
|
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
|
|
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
|
|
|
|
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1; // Si id=0 alors non communiqué
|
|
if (($siret*1)==0 && $idEntreprise==0) die('Paramètres incorrects !');
|
|
$siren=substr($siret,0,9);
|
|
|
|
if (($siret*1)==0 || ($siren*1)<100){ $fileName = $page.'-'.$idEntreprise;
|
|
}else{ $fileName = $page.'-'.$siret; }
|
|
cache_filename($fileName);
|
|
|
|
|
|
if( cache_exist() && !( preg_match('/saisie/i', $_SESSION['tabInfo']['droits']) || $_SESSION['tabInfo']['mode_edition']==1 ) )
|
|
{
|
|
$rbanque = cache_get('rbanque');
|
|
}else{
|
|
try {
|
|
$O = $client->getBanques($siren);
|
|
$rbanque = $O['results'];
|
|
cache_delete();
|
|
cache_add('rbanque', $rbanque);
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$_SESSION['tabInfo']);
|
|
$soaperror = true;
|
|
}
|
|
}
|
|
?>
|
|
<style type="text/css">
|
|
.relation p { margin:0; }
|
|
.relation p.banque { margin-top:10px; text-decoration:underline; }
|
|
.ralation p.info { }
|
|
</style>
|
|
<div id="center">
|
|
<h1 class="titre">RELATIONS BANCAIRES</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"><?=$_SESSION['tabInfo']['entrep']['raisonSociale']?></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Liste des relations bancaires</h2>
|
|
<?php
|
|
if( count($rbanque)==0 && isset($soaperror) )
|
|
{
|
|
?>
|
|
<p>Impossible de récupérer les informations.</p>
|
|
<?php
|
|
}
|
|
elseif( count($rbanque)==0 )
|
|
{
|
|
?>
|
|
<p>Aucune information.</p>
|
|
<?php
|
|
}
|
|
elseif( count($rbanque)>0 )
|
|
{
|
|
?>
|
|
<ul class="relation">
|
|
<?php
|
|
$firephp->log($rbanque, 'rbanque');
|
|
foreach($rbanque as $relation)
|
|
{
|
|
?>
|
|
<li>
|
|
<p class="banque"><?=$relation['libBanque']?></p>
|
|
<p class="info">Code banque : <?=$relation['codeBanque']?></p>
|
|
<p class="info">Code guichet : <?=$relation['codeGuichet']?></p>
|
|
</li>
|
|
<?php
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
<?php
|
|
|