135 lines
3.7 KiB
PHP
135 lines
3.7 KiB
PHP
<?
|
|
if (!page_checkParams()) die('Paramètres incorrects !');
|
|
|
|
$id = (isset($_GET['id']) == true) ?
|
|
trim(preg_replace('/[^0-9]/', '', $_GET['id'])) * 1 : 0;
|
|
|
|
$mil=false;
|
|
|
|
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 ($id > 0) $fileName = $fileName.'-'.$id;
|
|
cache_filename($fileName);
|
|
|
|
if( cache_exist() && !hasModeEdition() ){
|
|
$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();
|
|
}
|
|
}
|
|
|
|
?>
|
|
<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
|
|
<?php
|
|
$date = new WDate;
|
|
print $date->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>
|
|
|
|
<?php
|
|
// --------------------------------------------------------------------------- //
|
|
// Export
|
|
// --------------------------------------------------------------------------- //
|
|
if ($id == 0 && count($marques)>0) {
|
|
require_once 'export.php';
|
|
if (isset($siret) == true) {
|
|
$fileName = $page.'-'.$siret;
|
|
} else {
|
|
$fileName = $page.'-'.$idEntreprise;
|
|
}
|
|
|
|
for ($i = 0; $i < count($marques); ++$i) {
|
|
unset($marques[$i]['IdLien']);
|
|
}
|
|
|
|
$parseTab = new tabExport;
|
|
$parseTab->tab = array($marques);
|
|
|
|
$array2csv = new ExportCSV;
|
|
$array2csv->records = $parseTab->convertTable();
|
|
$array2csv->writeCSV($fileName);
|
|
|
|
$array2xml = new ExportXML;
|
|
$array2xml->rootName = $page;
|
|
$array2xml->defaultTagName = substr($page, 0 , -1);
|
|
$array2xml->records = $marques;
|
|
$array2xml->writeXML($fileName);
|
|
}
|
|
|
|
require_once 'cgu/cgu.php';
|
|
print '<p class="confidentiel blockh2">'.afficheCgu();
|
|
?>
|
|
</p>
|
|
</div>
|