89 lines
3.1 KiB
PHP
89 lines
3.1 KiB
PHP
<?php
|
|
foreach (array('siret',
|
|
'raisonSociale',
|
|
'numVoie',
|
|
'voie',
|
|
'cpVille',
|
|
'telFax',
|
|
'naf') as $label) {
|
|
if (isset($formR[$label]) == false) {
|
|
$formR[$label] = '';
|
|
}
|
|
}
|
|
?>
|
|
<div id="recherche">
|
|
|
|
<h2 align="center" class="StyleRechercheTitre">RECHERCHE ENTREPRISE</h2>
|
|
|
|
<form name="form_recherche" id="formR-id" action="./?page=recherche&action=rechercher&vue=list" method="post">
|
|
<input type="hidden" name="formR[type]" value="ent" />
|
|
|
|
<div class="fieldgrp">
|
|
<label>SIREN</label>
|
|
<input type="text" name="formR[siret]" value="<?=$formR['siret']?>" size="30"
|
|
maxlength="20" style="vertical-align:middle;"
|
|
title="Recherche par SIREN, SIRET, N° TVA intracommunautaire, N° RC, R.N.A., ISIN"/>
|
|
<img src="img/info.gif" style="vertical-align:middle;"
|
|
title="Recherche par SIREN, SIRET, N° TVA intracommunautaire, N° RC, R.N.A., ISIN"/>
|
|
<img id="goidentite" src="img/siretdirect.gif" style="vertical-align:middle;"
|
|
title="Accès direct à la fiche identité (Raccourci clavier : Maintenir touche CTRL puis ENTREE)" />
|
|
</div>
|
|
|
|
<div class="fieldgrp marge">
|
|
<label>RAISON SOCIALE<br/>ENSEIGNE / SIGLE</label>
|
|
<input type="text" name="formR[raisonSociale]" value="<?=$formR['raisonSociale']?>" size="30" maxlength="250" />
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label>N° & VOIE</label>
|
|
<input type="text" name="formR[numVoie]" value="<?=$formR['numVoie']?>" size="4" maxlength="4" />
|
|
<input type="text" name="formR[voie]" value="<?=$formR['voie']?>" size="20" maxlength="250" />
|
|
</div>
|
|
|
|
<div class="fieldgrp marge">
|
|
<label>CP OU DÉP. / VILLE</label>
|
|
<input type="text" name="formR[cpVille]" value="<?=$formR['cpVille']?>" size="30" maxlength="250" />
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label>TÉL / FAX</label>
|
|
<input type="text" name="formR[telFax]" value="<?=$formR['telFax']?>" size="30" maxlength="15" />
|
|
</div>
|
|
|
|
<div class="fieldgrp">
|
|
<label>NAF</label>
|
|
<input type="text" title="Commencer à saisir le code ou le libellé du Naf, puis séléctionner l'une des propositions" size="30" name="formR[naf]" id="formR-naf" value="<?=$formR['naf']?>" />
|
|
</div>
|
|
|
|
<?php
|
|
if (isset($formR['pays']) == false) {
|
|
$formR['pays'] = 'FR';
|
|
}
|
|
if ($_SESSION['tabInfo']['international_giant'] == 1) {
|
|
$recherchePaysListe = array('FR' => 'France',
|
|
'BE' => 'Belgique',
|
|
'NL' => 'Pays bas');
|
|
print '<div class="fieldgrp">';
|
|
print '<label>Pays</label>';
|
|
print '<select name="formR[pays]">';
|
|
foreach ($recherchePaysListe as $index => $valeur) {
|
|
print '<option value="'.$index.'"';
|
|
if ($formR['pays'] == $index) {
|
|
print ' selected';
|
|
}
|
|
print '>'.$recherchePaysListe[$index].'</option>';
|
|
}
|
|
print '</select>';
|
|
print '</div>';
|
|
} else {
|
|
echo '<input type="hidden" name="formR[pays]" value="FR" />';
|
|
}
|
|
?>
|
|
|
|
<div class="submit">
|
|
<input class="button" type="submit" name="submit" value="Recherche" title="Lancer la recherche..." />
|
|
<input class="button" type="reset" name="reset" value="Effacer" title="Remise à zéro" />
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|