2009-08-27 09:01:45 +00:00
|
|
|
<div id="center">
|
2010-02-10 17:27:03 +00:00
|
|
|
<h1>Liste de vos dernières recherches</h1>
|
2009-08-27 09:01:45 +00:00
|
|
|
<?php
|
|
|
|
require_once 'recherche/session.php';
|
|
|
|
$nb_recherche = count($_SESSION['recherche']['list']);
|
|
|
|
|
2009-10-09 13:27:15 +00:00
|
|
|
require_once 'recherche/session.php';
|
|
|
|
$parametres = recherche_element(0);
|
|
|
|
if( isset($parametres) && $parametres['info']['page']=='recherche' )
|
2010-05-04 16:17:50 +00:00
|
|
|
{
|
2009-10-09 13:27:15 +00:00
|
|
|
recherche_saveinfo( array('page' => '') );
|
|
|
|
}
|
|
|
|
|
2009-10-08 15:50:08 +00:00
|
|
|
if($nb_recherche==0){
|
2009-08-27 09:01:45 +00:00
|
|
|
?>
|
2010-02-10 17:27:03 +00:00
|
|
|
Aucune recherche enregistrée.
|
2009-08-27 09:01:45 +00:00
|
|
|
<?php
|
|
|
|
}else{
|
|
|
|
?>
|
|
|
|
<ul>
|
|
|
|
<?php
|
2009-09-10 15:31:37 +00:00
|
|
|
for($i=0;$i<$nb_recherche;$i++)
|
|
|
|
{
|
2009-08-27 09:01:45 +00:00
|
|
|
$parametres = recherche_element($i);
|
2009-09-10 15:31:37 +00:00
|
|
|
$firephp->log($parametres, 'parametres');
|
2009-08-27 09:01:45 +00:00
|
|
|
?>
|
|
|
|
<li>
|
|
|
|
<?php
|
2009-08-31 08:21:47 +00:00
|
|
|
if($parametres['type']=='ent')
|
|
|
|
{
|
2009-08-27 09:01:45 +00:00
|
|
|
?>
|
2009-09-10 15:31:37 +00:00
|
|
|
<p><u>RECHERCHE ENTREPRISE :</u></p>
|
|
|
|
<div>
|
|
|
|
<?php if($parametres['siret']!=''){ ?>SIREN : <b><?=$parametres['siret'];?></b>
|
|
|
|
<?php if($parametres['raisonSociale']=='' && $parametres['info']['raisonSociale']!=''){ print ' ('.$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° & VOIE : <b><?=$parametres['numVoie'];?> <?=$parametres['voie'];?></b><br/><?php } ?>
|
2010-02-10 17:27:03 +00:00
|
|
|
<?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 } ?>
|
2009-09-10 15:31:37 +00:00
|
|
|
<?php if($parametres['naf']!=''){ ?>NAF : <b><?=$parametres['naf'];?></b><br/><?php } ?>
|
2009-08-27 09:01:45 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
elseif($parametres['type']=='dir')
|
|
|
|
{
|
|
|
|
?>
|
2009-09-10 15:31:37 +00:00
|
|
|
<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 } ?>
|
2010-02-10 17:27:03 +00:00
|
|
|
<?php if($parametres['dirCpVille']!=''){ ?>CP OU DÉP. / VILLE DE NAISSANCE : <b><?=$parametres['dirCpVille'];?></b><br/><?php } ?>
|
2009-08-27 09:01:45 +00:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2010-05-04 16:17:50 +00:00
|
|
|
<?php
|
2009-09-15 09:38:56 +00:00
|
|
|
if( $parametres['info']['page']=='identite' && isset($parametres['info']['siret']) && isset($parametres['info']['idEntreprise']) )
|
2009-09-15 09:18:59 +00:00
|
|
|
{
|
|
|
|
?>
|
2010-02-10 17:27:03 +00:00
|
|
|
<a href="./?page=identite&siret=<?=$parametres['info']['siret']?>&idEntreprise=<?=$parametres['info']['idEntreprise']?>">Afficher la fiche d'identité consultée</a>
|
2010-05-04 16:17:50 +00:00
|
|
|
<?php
|
2009-09-15 09:18:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-04 16:17:50 +00:00
|
|
|
?>
|
|
|
|
<a href="./?page=recherche&action=rechercher&vue=list<?=$parametres['link']?>">Lancer la recherche</a>
|
|
|
|
<?php
|
2009-09-15 09:18:59 +00:00
|
|
|
}
|
|
|
|
?>
|
2009-09-10 15:31:37 +00:00
|
|
|
<br/>
|
|
|
|
<a href="./?page=recherche&action=rechercher&vue=<?=$parametres['type']?><?=$parametres['link'];?>">Afficher le formulaire</a>
|
|
|
|
</div>
|
2009-08-27 09:01:45 +00:00
|
|
|
</li>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</ul>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</a>
|
|
|
|
</div>
|