extranet/includes/recherche/recherche_act.php
2011-04-07 14:10:16 +00:00

71 lines
2.7 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 ACTIONNAIRE</h2>
<form name="form_recherche" id="formR-id" action="./?page=recherche&action=rechercher&vue=list" method="post">
<input type="hidden" name="formR[type]" value="act" />
<div class="fieldgrp">
<label>SIREN</label>
<input type="text" id="siret" 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">
<label>RAISON SOCIALE / NOM</label>
<input type="text" name="formR[actNom]" value="<?=$formR['actNom']?>" size="30" maxlength="40" style="vertical-align:middle;" />
</div>
<div class="fieldgrp">
<label>PRENOM</label>
<input type="text" name="formR[actPrenom]" value="<?=$formR['actPrenom']?>" size="30" maxlength="40" />
</div>
<div class="fieldgrp">
<label>DATE NAISSANCE</label>
<input type="text" name="formR[naissJJ]" value="<?=$formR['naisJJ']?>" size="2" maxlength="2" /> /
<input type="text" name="formR[naissMM]" value="<?=$formR['naisMM']?>" size="2" maxlength="2" /> /
<input type="text" name="formR[naissAAAA]" value="<?=$formR['naisMM']?>" size="4" maxlength="4" />
</div>
<div class="fieldgrp">
<label>CP OU D&Eacute;P. / VILLE DE NAISSANCE</label>
<input type="text" name="formR[cpVille]" value="<?=$formR['cpVille']?>" size="30" maxlength="250" />
</div>
<div class="fieldgrp">
<label>PAYS</label>
<input type="text" name="formR[pays]" value="<?=$formR['pays']?>" size="30" maxlength="15" />
</div>
<div class="fieldgrp">
<label>PAR ACTION, DE</label>
<input type="text" size="3" maxlength="3" name="formR[pctMin]" id="formR-naf" value="<?=$formR['pctMin']?>" /> &Agrave;
<input type="text" size="3" maxlength="3" name="formR[pctMax]" id="formR-naf" value="<?=$formR['pctMax']?>" /> %
</div>
<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>