2009-05-28 14:48:23 +00:00
< ? php
2010-04-27 08:09:23 +00:00
if ( ! page_checkParams ()) die ( 'Paramètres incorrects !' );
2009-08-27 07:39:27 +00:00
require_once 'cache/cache.php' ;
require_once 'partenaires/classMTva.php' ;
require_once 'partenaires/classMMap.php' ;
require_once 'partenaires/classMCoface.php' ;
require_once 'common/dates.php' ;
2009-10-08 13:20:51 +00:00
require_once 'scoresws/scoresws.php' ;
2009-02-19 16:28:12 +00:00
2010-03-05 09:56:29 +00:00
if ( isset ( $_REQUEST [ 'idan' ]) && $_REQUEST [ 'idan' ] * 1 != 0 )
2010-02-04 13:52:02 +00:00
$idan = $_REQUEST [ 'idan' ];
2010-03-05 09:56:29 +00:00
else
2010-02-04 13:52:02 +00:00
$idan = false ;
2009-02-27 10:06:54 +00:00
2010-04-02 10:00:32 +00:00
$vue = ( isset ( $_GET [ 'vue' ])) ? $_GET [ 'vue' ] : '' ;
2009-02-19 16:28:12 +00:00
$message = '' ;
2009-05-28 14:48:23 +00:00
2010-02-10 17:27:03 +00:00
//Récupération des infos du webservice
2009-10-08 13:20:51 +00:00
$annonces = scoresws_annonces ( $siret , $siren , $idEntreprise , $vue , $idan );
2010-06-23 08:58:24 +00:00
FB :: log ( $annonces , 'annonces' );
2009-06-03 08:44:13 +00:00
?>
2009-08-27 07:39:27 +00:00
< div id = " center " >
2009-06-18 15:26:44 +00:00
< h1 class = " titre " > ANNONCES L & Eacute ; GALES </ h1 >
2009-06-03 08:44:13 +00:00
< table >
2009-08-27 07:39:27 +00:00
< ? php if ( $message <> '' ) { ?>
2009-06-03 08:44:13 +00:00
< tr >
< td width = " 30 " >& nbsp ; </ td >
2010-02-04 13:52:02 +00:00
< td width = " 550 " colspan = " 3 " class = " StyleInfoData " >
< h3 >< ? = $message ; ?> </h3>
</ td >
2009-06-03 08:44:13 +00:00
</ tr >
2009-08-27 07:39:27 +00:00
< ? php } ?>
2009-06-03 08:44:13 +00:00
< tr >
< td width = " 30 " >& nbsp ; </ td >
2010-02-04 13:52:02 +00:00
< td width = " 200 " colspan = " 2 " class = " StyleInfoLib " >
Num & eacute ; ro identifiant Siren
</ td >
< td width = " 350 " class = " StyleInfoData " >
< ? = substr ( $siren , 0 , 3 ) . ' ' . substr ( $siren , 3 , 3 ) . ' ' . substr ( $siren , 6 , 3 ) ?>
</ td >
2009-06-03 08:44:13 +00:00
</ tr >
< tr >
< td width = " 30 " >& nbsp ; </ td >
2010-02-04 13:52:02 +00:00
< td width = " 200 " colspan = " 2 " class = " StyleInfoLib " >
Raison Sociale
</ td >
< td width = " 350 " class = " StyleInfoData " >
< ? = $raisonSociale ?>
< ? php
if ( hasModeEdition ())
{
?>
< a href = " ./?page=saisie&siret=<?= $siret ?>&idEntreprise=<?= $idEntreprise ?> " >
( Edition )
</ a >
2010-03-05 09:56:29 +00:00
< ? php
2010-02-04 13:52:02 +00:00
}
?>
</ td >
2009-06-03 08:44:13 +00:00
</ tr >
</ table >
2009-08-27 07:39:27 +00:00
< ? php
if ( $idan && ( $vue == 'bodacc' || $vue == 'abod' || $vue == 'balo' || $vue == 'asso' ))
{
2009-12-04 17:17:09 +00:00
if ( $vue == 'asso' && $siren == 0 )
{
2010-04-01 08:08:50 +00:00
foreach ( $annonces as $ann ){
if ( $ann [ 'id' ] == $idan )
break ;
}
2009-12-04 17:17:09 +00:00
} else {
$ann = $annonces [ 0 ];
}
2010-03-05 09:56:29 +00:00
2009-08-27 07:39:27 +00:00
/** AFFICHAGE D'UNE ANNONCE BODACC / BALO / ASSO **/
2009-06-18 15:26:44 +00:00
2010-02-10 17:27:03 +00:00
// Entête BALO
2009-08-27 07:39:27 +00:00
if ( $vue == 'balo' )
{
?>
< h2 > BALO </ h2 >
< table >
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 550 " colspan = " 3 " class = " StyleInfoData " >
BALO n & deg ; < ? = $ann [ 'BodaccNum' ] ?> du <?=WDate::dateT('Y-m-d','d/m/Y',$ann['DateParution'])?>. Entré n°<?=$ann['NumAnnonce']?>. Entrée en base S&D : <?=WDate::dateT('Y-m-d','d/m/Y',$ann['dateInsertionSD'])?>.<br/>
2010-05-03 14:55:00 +00:00
< a href = " /?page=annonces&siret=<?= $siret ?>&idEntreprise=<?= $idEntreprise ?>&idan=<?= $_REQUEST['idan'] ?>&vue=balo&mode=pdf " target = " _blank " > Cliquez ici pour voir cette annonce au format PDF & nbsp ;( < ? = adapteOCtets ( @ filesize ( PATH_DATA . '/jo/balo/' . WDate :: dateT ( 'Y-m-d' , 'Y' , $ann [ 'DateParution' ]) . '/' . $ann [ 'Lien_Annonce_Pdf' ])) ?> )</a>
2009-08-27 07:39:27 +00:00
.</ td >
</ tr >
< tr >
< td width = " 30 " >& nbsp ; </ td >
2009-09-18 17:09:22 +00:00
< td width = " 550 " colspan = " 3 " class = " StyleInfoLib " >< b >< ? = $ann [ 'Categorie' ] ?> </b></td>
2009-08-27 07:39:27 +00:00
</ tr >
< tr >
</ table >
2009-03-23 10:17:19 +00:00
< ? php
2009-08-27 07:39:27 +00:00
$ann [ 'texteAnnonce' ] = utf8_decode ( $ann [ 'texteAnnonce' ]);
}
elseif ( $vue == 'bodacc' || $vue == 'abod' )
{
2009-05-28 14:48:23 +00:00
?>
2009-08-27 07:39:27 +00:00
< h2 >& Eacute ; V & Eacute ; NEMENTS L & Eacute ; GAUX </ h2 >
< table >
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 550 " colspan = " 3 " class = " StyleInfoData " >
2010-03-05 09:56:29 +00:00
< ? php
2009-08-27 07:39:27 +00:00
$tabSource = explode ( '-' , $ann [ 'BodaccCode' ]);
$source = $tabSource [ 0 ];
$idSource =@ $tabSource [ 1 ];
2010-06-24 09:42:23 +00:00
if ( $source [ 0 ] == 'B' ) {
$logo = 'img/logo_jo.png' ;
if ( $ann [ 'BodaccNum' ] == 0 ){
$libelle = 'Source BODACC ' . substr ( $ann [ 'BodaccCode' ], - 1 ) .
' du ' . WDate :: dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'DateParution' ]);
} else {
$libelle = 'Source BODACC n°' . $ann [ 'BodaccNum' ] . ' ' .
substr ( $ann [ 'BodaccCode' ], - 1 ) .
' du ' . WDate :: dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'DateParution' ]) .
'. Département n°' . $ann [ 'Departement' ] .
'. <a href="/?page=competences&siret=' . $siret .
'&type=tri">' . $ann [ 'Tribunal' ] . '</a>' ;
}
2009-08-27 07:39:27 +00:00
} elseif ( $source [ 0 ] == 'G' || $source [ 0 ] == 'T' ){
2010-06-24 09:42:23 +00:00
$logo = './img/logo_greffe.png' ;
$libelle = 'Source Greffe du Tribunal' ;
2009-08-27 07:39:27 +00:00
} elseif ( $source [ 0 ] == 'P' ){
2010-06-24 09:42:23 +00:00
$logo = './img/logo_inpi.png' ;
$libelle = 'Source Registre National du Commerce' ;
2009-08-27 07:39:27 +00:00
} else {
2010-06-24 09:42:23 +00:00
$logo = './img/logo_jal.png' ;
$libelle = '' ;
2010-03-05 09:56:29 +00:00
if ( hasModeEdition () && substr ( $source , 0 , 2 ) == 'JT' ){
2010-06-24 09:42:23 +00:00
$libelle = '<b>Source TESSI</b> - ' ;
2010-03-05 09:56:29 +00:00
}
2010-06-24 09:42:23 +00:00
$libelle .= 'Source Journal Annonces Légales' ;
}
if ( $ann [ 'dateInsertionSD' ] <> '' ) {
$libelle .= ' - Entrée en base : ' ;
$date = new WDate ;
$libelle .= $date -> dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'dateInsertionSD' ]);
}
$edition = '' ;
if ( hasModeEdition () ){
$edition .= ' <a class="annonceEdit" href="/?page=saisieajax&q=annonces/editDialog/' .
$idan . '/' . $siret . '" title="Edition annonce">' .
'<img src="./img/interface/editer.png"/></a>' ;
$edition .= ' <a class="annonceDelete" href="/?page=saisieajax&q=annonces/deleteDialog/' .
$idan . '/' . $siret . '"' . ' title="Suppression annonce">' .
'<img src="./img/interface/supprimer.png"/></a>' ;
$edition .= ' <a class="annonceCopy" href="/?page=saisieajax&q=annonces/copyDialog/' .
$idan . '/' . $siret . '"' . ' title="Dupliquer sur autre Siren ">' .
'<img src="./img/save_copy.png"/></a>' ;
2010-06-25 12:49:43 +00:00
$edition .= '<script type="text/javascript" src="js/jquery.form.js"></script>' ;
$edition .= '<script type="text/javascript" src="js/annonces.js"></script>' ;
2010-06-24 09:42:23 +00:00
}
?>
< ? = '<img src="' . $logo . '" />' ?> <?=$libelle?> <?=$edition?>
</ td >
2009-08-27 07:39:27 +00:00
</ tr >
</ table >
< ? php
}
elseif ( $vue == 'asso' )
{
?>
< h2 > Associations </ h2 >
< table >
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 550 " colspan = " 3 " class = " StyleInfoData " > J . O . ASSOCIATION n & deg ; < ? = $ann [ 'BodaccNum' ] ?> du <?=WDate::dateT('Y-m-d','d/m/Y',$ann['DateParution'])?>. Annonce n°<?=$ann['NumAnnonce']?>. Entrée en base S&D : <?=WDate::dateT('Y-m-d','d/m/Y',$ann['dateInsertionSD'])?>.</td>
</ tr >
</ table >
< ? php
}
?>
2009-06-03 08:44:13 +00:00
< table >
2009-08-27 07:39:27 +00:00
< tr >
2009-05-28 14:48:23 +00:00
< td width = " 30 " >& nbsp ; </ td >
2009-06-03 08:44:13 +00:00
< td width = " 550 " colspan = " 3 " class = " StyleInfoLib " >
< b >
2009-05-28 14:48:23 +00:00
< ? php
2009-06-03 08:44:13 +00:00
foreach ( @ $ann [ 'evenements' ] as $i => $even ) { echo @ $even [ 'LibEven' ] . '<br/>' ; }
?>
</ b >
2009-05-28 14:48:23 +00:00
</ td >
2009-08-27 07:39:27 +00:00
</ tr >
< tr >
2009-05-28 14:48:23 +00:00
< td colspan = " 4 " >& nbsp ; </ td >
2009-08-27 07:39:27 +00:00
</ tr >
< tr >
2009-05-28 14:48:23 +00:00
< td width = " 30 " >& nbsp ; </ td >
2009-08-20 09:52:50 +00:00
< ? php
2009-05-28 14:48:23 +00:00
/**Affichage du texte de l'annonce**/
2010-04-02 10:00:32 +00:00
$texte = preg_replace_callback ( " /((?:[0-9] { 9,9})|(?:[0-9] { 3,3} [0-9] { 3,3} [0-9] { 3,3})|(?:[0-9] { 3,3} \ .[0-9] { 3,3} \ .[0-9] { 3,3})|(?:[0-9] { 3,3}-[0-9] { 3,3}-[0-9] { 3,3}))/ " , 'replace_siren' , $ann [ 'texteAnnonce' ]);
2009-08-20 09:52:50 +00:00
?>
2009-08-27 07:39:27 +00:00
< td width = " 550 " colspan = " 3 " >< code >< ? = $texte ?> </code></td>
</ tr >
< tr >< td colspan = " 4 " >& nbsp ; </ td ></ tr >
< tr >
2010-02-10 17:27:03 +00:00
< td colspan = " 4 " align = " center " class = " StyleInfoData " >< a href = " Javascript:history.back() " > Revenir à la liste des annonces </ a ></ td >
2009-08-27 07:39:27 +00:00
</ tr >
</ table >
< ? php
2010-04-02 08:44:45 +00:00
} else if ( count ( $annonces ) > 0 ) {
// Tri des annonces dans des tableaux différents
$annoncesBodacc = array ();
$annoncesBalo = array ();
$annoncesAsso = array ();
foreach ( $annonces as $i => $ann ) {
if ( $ann [ 'BodaccCode' ] == 'BODA' ||
$ann [ 'BodaccCode' ] == 'BODB' ||
$ann [ 'BodaccCode' ] == 'BODC' ) {
$annoncesBodacc [] = $ann ;
} else if ( $ann [ 'BodaccCode' ] == 'BALO' ) {
$annoncesBalo [] = $ann ;
} else if ( $ann [ 'BodaccCode' ] == 'ASSO' ) {
$annoncesAsso [] = $ann ;
} else {
$annoncesBodacc [] = $ann ;
}
}
/** Affichage de la liste des annonces **/
// Affiche annonces Bodacc
if ( count ( $annoncesBodacc ) > 0 ) {
?>
< h2 > EV & Eacute ; NEMENTS L & Eacute ; GAUX </ h2 >
< table >
< ? php
foreach ( $annoncesBodacc as $i => $ann ) {
?>
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 140 " class = " StyleInfoLib " >
2010-05-28 15:19:59 +00:00
< span id = " annoncesDate " >< p > Le
2010-04-02 08:44:45 +00:00
< ? php
$date = new WDate ;
print $date -> dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'DateParution' ]);
?>
2010-05-28 15:19:59 +00:00
</ p ></ span >
< span id = " annoncesImg " >
2010-04-02 08:44:45 +00:00
< ? php
$tabSource = explode ( '-' , $ann [ 'BodaccCode' ]);
$source = $tabSource [ 0 ];
$idSource = @ $tabSource [ 1 ];
if ( $source [ 0 ] == 'B' ) {
echo '<img src="./img/logo_jo.png" title="Source BODACC ' .
$ann [ 'BodaccNum' ] . ' ' .
substr ( $source , - 1 ) . ' ' .
substr ( $ann [ 'DateParution' ], 0 , 4 ) . '"/>' ;
} else if ( $source [ 0 ] == 'G' ||
$source [ 0 ] == 'T' ) {
echo '<img src="./img/logo_greffe.png"' .
' title="Source Collecte Greffe"/>' ;
} else if ( $source [ 0 ] == 'P' ) {
echo '<img src="./img/logo_inpi.png"' .
' title="Source Collecte RNCS"/>' ;
} else {
echo '<img src="./img/logo_jal.png"' .
' title="Source Collecte JAL' ;
if ( $idSource > 0 ) echo ' $idSource' ;
echo '"/>' ;
}
?>
2010-05-28 15:19:59 +00:00
</ span >
2010-04-02 08:44:45 +00:00
</ td >
< td width = " 450 " colspan = " 2 " class = " StyleInfoData " >
2010-05-03 14:55:00 +00:00
< a href = " /?page=annonces&siret=<?= $siret ?>&idEntreprise=<?= $idEntreprise ?>&idan=<?= $ann['id'] ?>&vue=bodacc " >
2010-04-02 08:44:45 +00:00
< ? php
foreach ( $ann [ 'evenements' ] as $i => $even ) {
echo $even [ 'LibEven' ];
if ( hasModeEdition () && substr ( $source , 0 , 2 ) == 'JT' ) {
echo ' <b>(Source TESSI)</b>' ;
}
$numEven = $even [ 'CodeEven' ] * 1 ;
if ( $numEven > 3000 && $numEven < 3999 ) {
print ' (clôture au ' ;
$date = new WDate ;
print $date -> dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'dateEffet' ]) .
')' ;
}
echo '<br/>' ;
}
?>
</ a >
</ td >
</ tr >
< ? php
}
?>
</ table >
< ? php
}
// Affiche annonces Balo
if ( count ( $annoncesBalo ) > 0 ) {
?>
< h2 > BALO </ h2 >
< table >
< ? php
foreach ( $annoncesBalo as $i => $ann ) {
?>
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 140 " class = " StyleInfoLib " >
< span id = " annoncesDate " > Le
< ? php
$date = new WDate ;
print $date -> dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'DateParution' ]);
?>
</ span >
< span id = " annoncesImg " >
< ? php
2009-08-27 07:39:27 +00:00
if ( $ann [ 'BodaccCode' ] == 'BALO' ){
2010-03-05 09:56:29 +00:00
echo '<img src="./img/logo_jo.png" title="Source BALO n°' . $ann [ 'BodaccNum' ] . '"/>' ;
2009-06-18 15:26:44 +00:00
}
?>
2009-08-27 07:39:27 +00:00
</ span >
</ td >
< td width = " 450 " colspan = " 2 " class = " StyleInfoData " >
2010-05-03 14:55:00 +00:00
< a href = " /?page=annonces&siret=<?= $siret ?>&idEntreprise=<?= $idEntreprise ?>&idan=<?= $ann['id'] ?>&vue=balo " >
2009-06-03 08:44:13 +00:00
< ? php
2009-08-27 07:39:27 +00:00
foreach ( $ann [ 'evenements' ] as $i => $even ) {
print $even [ 'LibEven' ];
$numEven = $even [ 'CodeEven' ] * 1 ;
2010-02-10 17:27:03 +00:00
if ( $numEven > 3000 && $numEven < 3999 ) print ' (clôture au ' . WDate :: dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'dateEffet' ]) . ')' ;
2009-08-27 07:39:27 +00:00
print '<br/>' ;
}
?>
</ a ></ td >
</ tr >
< ? php
2009-06-03 08:44:13 +00:00
}
2009-08-27 07:39:27 +00:00
?>
</ table >
< ? php
}
2009-06-18 15:26:44 +00:00
2009-08-27 07:39:27 +00:00
//Affiche annonces Asso
if ( count ( $annoncesAsso ) > 0 )
{
?>
< h2 > Associations </ h2 >
< table >
< ? php
2009-12-04 17:17:09 +00:00
foreach ( $annoncesAsso as $i => $ann )
2010-03-05 09:56:29 +00:00
{
2009-12-04 17:17:09 +00:00
?>
2009-08-27 07:39:27 +00:00
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 140 " class = " StyleInfoLib " >
< span id = " annoncesDate " > Le < ? = WDate :: dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'DateParution' ]); ?> </span>
< span id = " annoncesImg " >
2009-06-18 15:26:44 +00:00
< ? php
2009-08-27 07:39:27 +00:00
if ( $ann [ 'BodaccCode' ] == 'ASSO' ){
2010-02-10 17:27:03 +00:00
print '<img src="./img/logo_jo.png" title="Source JO ASSOCIATION n°' . $ann [ 'BodaccNum' ] . '"/>' ;
2009-06-18 15:26:44 +00:00
}
?>
2009-08-27 07:39:27 +00:00
</ span >
</ td >
< td width = " 450 " colspan = " 2 " class = " StyleInfoData " >
2009-12-04 17:17:09 +00:00
< a href = " /?page=annonces&siret=<?= $siret ?>&idEntreprise=<?= $idEntreprise ?>&idan=<?= $ann['id'] ?>&vue=asso " >
2009-06-03 08:44:13 +00:00
< ? php
2009-08-27 07:39:27 +00:00
foreach ( $ann [ 'evenements' ] as $i => $even ) {
print $even [ 'LibEven' ];
$numEven = $even [ 'CodeEven' ] * 1 ;
2010-02-10 17:27:03 +00:00
if ( $numEven > 3000 && $numEven < 3999 ) print ' (clôture au ' . WDate :: dateT ( 'Y-m-d' , 'd/m/Y' , $ann [ 'dateEffet' ]) . ')' ;
2009-08-27 07:39:27 +00:00
print '<br/>' ;
}
?>
</ a ></ td >
</ tr >
< ? php
2009-06-18 15:26:44 +00:00
}
2009-08-27 07:39:27 +00:00
?>
</ table >
< ? php
2009-02-19 16:28:12 +00:00
}
2009-08-27 07:39:27 +00:00
}
else
{
/** Aucune annonce bodacc pour cette entreprise **/
?>
2010-02-10 17:27:03 +00:00
< h2 > Evénements légaux </ h2 >
2009-08-27 07:39:27 +00:00
< table >
< tr >
< td width = " 30 " >& nbsp ; </ td >
< td width = " 100 " class = " StyleInfoLib " >& nbsp ; </ td >
< td width = " 450 " colspan = " 2 " class = " StyleInfoData " > N & eacute ; ant </ td >
</ tr >
< tr >
< td colspan = " 4 " >& nbsp ; </ td >
</ tr >
</ table >
< ? php
}
2009-06-18 15:26:44 +00:00
2010-06-23 08:58:24 +00:00
if ( count ( $annonces ) > 0 )
{
if (( $siret * 1 ) == 0 || ( $siren * 1 ) < 100 ){ $fileName = $page . '-' . $idEntreprise ;
} else { $fileName = $page . '-' . $siret ; }
if ( $vue != '' ){ $fileName .= '-' . $idan ;}
2009-10-08 13:20:51 +00:00
2010-06-23 08:58:24 +00:00
require_once 'export.php' ;
$parseTab = new tabExport ();
$parseTab -> tab = $annonces ;
$parseTab -> notdisplay = array ( 'id' );
$parseTab -> title = array ( 'BodaccCode' => 'Code Bodacc' ,
'BodaccNum' => 'Numéro Bodacc' ,
'NumAnnonce' => 'Numéro annonce' ,
'DateParution' => 'Date de parution' ,
'TribunalSiret' => 'Siret du tribunal' ,
'typeAnnonce' => 'Type annonce' ,
'texteRectificatif' => 'Texte rectificatif' ,
'texteAnnonce' => 'Texte annonce' ,
'dateEffet' => 'Date effet' ,
'dateJugement' => 'Date jugement' ,
'dateInsertionSD' => 'Date insertion' ,
'evenements' => 'Evenements' );
$parseTab -> type = array ();
$tabForExport = $parseTab -> convertTable ();
2009-06-18 15:26:44 +00:00
2010-06-23 08:58:24 +00:00
$array2csv = new ExportCSV ();
$array2csv -> records = $tabForExport ;
$array2csv -> writeCSV ( $fileName );
2009-05-28 14:48:23 +00:00
2010-06-23 08:58:24 +00:00
$tabForExport = $annonces ;
$array2xml = new ExportXML ();
$array2xml -> rootName = $page . 's' ;
$array2xml -> defaultTagName = $page ;
$array2xml -> records = $tabForExport ;
$array2xml -> writeXML ( $fileName );
}
2009-02-19 16:28:12 +00:00
2009-08-27 07:39:27 +00:00
if ( ! $idan )
{
2009-05-20 15:49:08 +00:00
?>
2009-06-03 08:44:13 +00:00
< table >
2009-02-19 16:28:12 +00:00
< tr >
< td width = " 30 " >& nbsp ; </ td >
2009-05-22 09:53:48 +00:00
< td colspan = " 3 " width = " 550 " class = " StyleInfoData " >
2010-02-23 15:27:18 +00:00
< a class = " dialogsurv " href = " " ></ a >
2009-06-18 15:26:44 +00:00
< ? php
2009-05-20 15:49:08 +00:00
require_once 'surveillance/surveillance.php' ;
2009-12-15 17:14:21 +00:00
echo getSurveillance ( 'annonces' , $siret );
2009-05-20 15:49:08 +00:00
?>
</ td >
2009-02-19 16:28:12 +00:00
</ tr >
2009-06-03 08:44:13 +00:00
</ table >
2009-06-18 15:26:44 +00:00
< ? php
}
2009-02-19 16:28:12 +00:00
?>
2010-04-12 14:49:55 +00:00
< p class = " confidentiel blockh2 " >
< ? php
require_once 'cgu/cgu.php' ;
echo afficheCgu ();
?>
</ p >
2009-06-03 08:44:13 +00:00
</ div >