extranet/includes/recherche/recherche_histo.php

82 lines
2.7 KiB
PHP
Raw Normal View History

<div id="center">
<h1>Liste de vos dernières recherches</h1>
<?php
require_once 'recherche/session.php';
$nb_recherche = count($_SESSION['recherche']['list']);
require_once 'recherche/session.php';
$parametres = recherche_element(0);
if( isset($parametres) && $parametres['info']['page']=='recherche' )
{
recherche_saveinfo( array('page' => '') );
}
if($nb_recherche==0){
?>
Aucune recherche enregistrée.
<?php
}else{
?>
<ul>
<?php
for($i=0;$i<$nb_recherche;$i++)
{
$parametres = recherche_element($i);
$firephp->log($parametres, 'parametres');
?>
<li>
<?php
if($parametres['type']=='ent')
{
?>
<p><u>RECHERCHE ENTREPRISE :</u></p>
<div>
<?php if($parametres['siret']!=''){ ?>SIREN : <b><?=$parametres['siret'];?></b>
<?php if($parametres['raisonSociale']=='' && $parametres['info']['raisonSociale']!=''){ print '&nbsp;('.$parametres['info']['raisonSociale'].')'; } ?>
<br/><?php } ?>
<?php if($parametres['raisonSociale']!=''){ ?>RAISON SOCIALE : <b><?=$parametres['raisonSociale'];?></b><br/><?php } ?>
2010-08-04 15:27:36 +00:00
<?php if($parametres['numVoie']!=''){ ?>N° &amp; VOIE : <b><?=$parametres['numVoie'];?> <?=$parametres['voie'];?></b><br/><?php } ?>
<?php if($parametres['cpVille']!=''){ ?>CP OU DÉP. / VILLE : <b><?=$parametres['cpVille'];?></b><br/><?php } ?>
<?php if($parametres['telFax']!=''){ ?>TÉL / FAX : <b><?=$parametres['telFax'];?></b><br/><?php } ?>
<?php if($parametres['naf']!=''){ ?>NAF : <b><?=$parametres['naf'];?></b><br/><?php } ?>
<?php
}
elseif($parametres['type']=='dir')
{
?>
<p><u>RECHERCHE DIRIGEANT :</u></p>
<div>
<?php if($parametres['dirNom']!=''){ ?>NOM : <b><?=$parametres['dirNom'];?></b><br/><?php } ?>
<?php if($parametres['dirPrenom']!=''){ ?>PRENOM : <b><?=$parametres['dirPrenom'];?></b><br/><?php } ?>
<?php if($parametres['dirDateNaissJJ']!=''){ ?>DATE DE NAISSANCE : <b><?=$parametres['dirDateNaissJJ'].'/'.$parametres['dirDateNaissMM'].'/'.$parametres['dirDateNaissAAAA'];?></b><br/><?php } ?>
<?php if($parametres['dirCpVille']!=''){ ?>CP OU DÉP. / VILLE DE NAISSANCE : <b><?=$parametres['dirCpVille'];?></b><br/><?php } ?>
<?php
}
?>
<?php
if( $parametres['info']['page']=='identite' && isset($parametres['info']['siret']) && isset($parametres['info']['idEntreprise']) )
{
?>
<a href="./?page=identite&siret=<?=$parametres['info']['siret']?>&idEntreprise=<?=$parametres['info']['idEntreprise']?>">Afficher la fiche d'identité consultée</a>
<?php
}
else
{
?>
<a href="./?page=recherche&action=rechercher&vue=list<?=$parametres['link']?>">Lancer la recherche</a>
<?php
}
?>
<br/>
<a href="./?page=recherche&action=rechercher&vue=<?=$parametres['type']?><?=$parametres['link'];?>">Afficher le formulaire</a>
</div>
</li>
<?php
}
?>
</ul>
<?php
}
?>
</a>
</div>