extranet/includes/recherche/recherche_vueannonce.php

63 lines
1.8 KiB
PHP

<h1 class="titre">RECHERCHE ANNONCES L&Eacute;GALES</h1>
<?php
require_once 'common/dates.php';
require_once 'siren.php';
$parametresTxt = array(
'source'=>'Source',
'bodacc'=>'Type',
'histo'=>'',
'annee'=>'Année',
'dateparution'=>'Date de parution',
'nparution'=>'Numéro de parution',
'bpage'=>'Page',
'nannonce'=>'Numéro d\'annonce',
'naffaire'=>'Numéro d\'affaire',
'txt'=>'Recherche');
$strCriteres = '';
foreach ($parametresTxt as $key => $param)
{
if($_SESSION['recherchehisto'][$key]!='' && $param!='')
{
$strCriteres.= $param.' : '.$_SESSION['recherchehisto'][$key].',&nbsp;';
}
}
if ( $O['nbReponses']==0)
{
?>
<p class="StyleInfoLib">
Pas de r&eacute;sultat affich&eacute; avec le(s) crit&egrave;re(s) <a title="Retour au formulaire de recherche" href="./index.php?page=recherche&vue=annonce"><?=$strCriteres?></a>
</p>
<?php
}
else
{
//Affichage des critères de recherche
?>
<p class="StyleInfoLib">Critères de recherche <a title="Retour au formulaire de recherche" href="./index.php?page=recherche&vue=annonce"><?=$strCriteres?></a></p>
<div id="annonce">
<?php
//Affichage des données
foreach( $O['reponses'] as $annonce )
{
$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, $annonce['Annonce']);
if(substr($O['criteres']['source'], 0, 3) == 'BOD' )
{
?>
Source BODACC n°<?=$annonce['Num_Parution']?> <?=substr($O['criteres']['source'], 3, 1)?> du <?=WDate::dateT('Y-m-d', 'd/m/Y', $annonce['Date_Parution'])?>.
<?php
}
?>
Département n°<?=$annonce['Departement']?>. <?=$annonce['Tribunal_Code']?>
<br/><br/>
<code><?=$texte?></code><br/>
<?php
}
?>
</div>
<?php
}