124 lines
3.8 KiB
PHP
124 lines
3.8 KiB
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é
|
|
$id=trim(preg_replace('/[^0-9]/', '', $_REQUEST['id']))*1;
|
|
if (($siret*1)==0 && $id==0) die('Paramètres incorrects !');
|
|
$siren=substr($siret,0,9);
|
|
$mil=false;
|
|
|
|
if (!$_SESSION['connected'])
|
|
echo ('Vous devez être connecté afin de pouvoir utiliser cette fonctionnalité');
|
|
elseif (!preg_match('/MARQUES/i', $_SESSION['tabInfo']['droits']))
|
|
echo ('Vous n\'avez pas les droits nécessaires pour utiliser cette fonctionnalité (2)');
|
|
else {
|
|
|
|
require_once 'cache/cache.php';
|
|
require_once 'partenaires/classMTva.php';
|
|
require_once 'partenaires/classMMap.php';
|
|
require_once 'common/dates.php';
|
|
|
|
$tabInfo = $_SESSION['tabInfo'];
|
|
|
|
//Générer un nom de fichier pour le cache et l'export des fichiers
|
|
if (($siret*1)==0 || ($siren*1)<100){ $fileName = $page2.'-'.$idEntreprise;
|
|
}else{ $fileName = $page2.'-'.$siret; }
|
|
if(isset($id)) $fileName = $fileName.'-'.$id;
|
|
cache_filename($fileName);
|
|
|
|
if( cache_exist() && !( preg_match('/saisie/i', $_SESSION['tabInfo']['droits']) || $_SESSION['tabInfo']['mode_edition']==1 ) ){
|
|
$marques = cache_get('marques');
|
|
$firephp->log($marques,'marques');
|
|
}else{
|
|
try {
|
|
$O = $client->getMarques($siren, $id);
|
|
$marques = $O['result'];
|
|
$firephp->log($marques,'marques');
|
|
cache_delete();
|
|
cache_add('marques', $marques);
|
|
} catch (SoapFault $fault) {
|
|
require_once 'soaperror.php';
|
|
processSoapFault($client,$fault,$tabInfo);
|
|
die();
|
|
}
|
|
}
|
|
|
|
$raisonSociale = $_SESSION['tabInfo']['entrep']['raisonSociale'];
|
|
?>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('a[idobjet]').each(function()
|
|
{
|
|
$(this).click(function()
|
|
{
|
|
idObject=$(this).attr('idobjet');
|
|
$('#document'+idObject).html('Construction du document en cours...');
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "/",
|
|
data: "page=getmarques&idObject="+idObject,
|
|
success: function(msg){$('#document'+idObject).html(msg)},
|
|
error: function(){$('#document'+idObject).html('Erreur');}
|
|
});
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
<div id="center">
|
|
<h1 class="titre">PROPRIÉTÉ INTELLECTUELLE</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
|
<td width="350" colspan="2" 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" colspan="2" class="StyleInfoData"><?=$raisonSociale?></td>
|
|
</tr>
|
|
<tr><td colspan="4"> </td></tr>
|
|
</table>
|
|
|
|
<h2>Marque(s) déposée(s)</h2>
|
|
<table>
|
|
<?php
|
|
foreach ($marques as $i=>$marque) {
|
|
$aff = $marque['Marques'];
|
|
if ($marque['IdLien']*1<>0 && $id==0)
|
|
$aff='<a href="./?page=marques&siret='.$siret.'&id='.$marque['IdLien'].'">'.$aff.'</a>';
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="230" class="StyleInfoData">
|
|
Dépôt n°<?=$marque['Depot']?> du <?=WDate::dateT('Y-m-d','d/m/Y',$marque['Date'])?> <a idobjet="<?=$marque['Depot']?>" href="#" title="Voir le détail de l'inscription au BOPI"><img src="./img/exporticones/pdf.png" alt="PDF"></a>
|
|
<div id="document<?=$marque['Depot']?>"></div>
|
|
</td>
|
|
<td width="340" class="StyleInfoLib"><?=$aff?></td>
|
|
</tr>
|
|
<?php
|
|
if ($id<>0) {
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoLib" align="center"><img src="<?=$marque['UrlLien']?>"/> </td>
|
|
</tr>
|
|
<?
|
|
}
|
|
}
|
|
|
|
if (count($marques)==0){
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="550" colspan="3" class="StyleInfoLib">Aucune marque n'a été déposée par cette entreprise depuis 1982.</td>
|
|
</tr>
|
|
<?
|
|
}
|
|
?>
|
|
</table>
|
|
<?
|
|
}
|
|
?>
|