This commit is contained in:
Michael RICOIS 2010-08-05 15:44:30 +00:00
commit f0ae67d408
2 changed files with 12 additions and 2 deletions

View File

@ -35,7 +35,7 @@ Aucune recherche enregistrée.
<?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 } ?>
<?php if($parametres['numVoie']!=''){ ?>N° &amp; VOIE : <b><?=$parametres['numVoie'];?></b><br/><?php } ?>
<?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 } ?>

View File

@ -432,8 +432,18 @@ if ( isset($O['results']['info']) &&
} //Fin test nombre de résultat
?>
<br/>
<p class="StyleInfoLib">Effectuer une recherche entreprise avec les paramètres "<?=$strCriteres?>"</p>
<?php
if ($typeRech=='dir')
{
$search = '';
if(isset($_SESSION['formR']['dirNom'])){ $search.= $_SESSION['formR']['dirNom']; }
if(isset($_SESSION['formR']['dirPrenom']) && count($search)>0 ){ $search.= ' '.$_SESSION['formR']['dirPrenom']; }
if(isset($_SESSION['formR']['dirPrenom']) && count($search)==0 ){ $search.= $_SESSION['formR']['dirPrenom']; }
?>
<p class="StyleInfoLib">Effectuer une recherche entreprise avec les paramètres "<a href="./?page=recherche&vue=list&formR[type]=ent&formR[raisonSociale]=<?=$search?>"><?=$search?></a>"</p>
<?php
}
if ( hasPerm('investig') )
{
?>