issue #0000963
This commit is contained in:
parent
b73b5e69b8
commit
c8148fb4de
@ -56,7 +56,7 @@ if (substr($etab['Web'],0,7)<>'http://')
|
||||
$siteWeb='http://'.$etab['Web'];
|
||||
else
|
||||
$siteWeb=$etab['Web'];
|
||||
?>
|
||||
?>
|
||||
<h2 id="dFormLogo" alt="<?=$etab['Siren']?>">Logo</h2>
|
||||
<div class="blockh2">
|
||||
<div id="formLogo"></div>
|
||||
@ -149,6 +149,24 @@ require_once realpath(dirname(__FILE__)).'/saisie_form_event.php';
|
||||
<label>Autre siren (doublon)</label>
|
||||
<input type="text" size="11" name="frmSaisie[sirenDoublon]" value="<?=$etab['sirenDoublon']?>"/>
|
||||
|
||||
<label>Refus d’inscription au Registre du Commerce et des Sociétés</label>
|
||||
<select name="frmSaisie[moisRefusRCS]">
|
||||
<option value="">-</option>
|
||||
<?php
|
||||
setlocale (LC_TIME, 'fr_FR.UTF-8', 'fra');
|
||||
$month = date("m");
|
||||
for($i=0;$i<12;$i++)
|
||||
{
|
||||
$lastmonth = mktime(0, 0, 0, $month-$i, date("d"), date("Y"));
|
||||
$selected = '';
|
||||
if($i==1) $selected = 'selected';
|
||||
?>
|
||||
<option value="<?=date('Ym',$lastmonth)?>" <?=$selected?>><?=strftime('%B',$lastmonth)?> <?=date('Y',$lastmonth)?></option>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<?php
|
||||
$waldec = '';
|
||||
if (substr($etab['autreId'],0,1)=='W'){
|
||||
@ -183,15 +201,15 @@ if (substr($etab['autreId'],0,1)=='W'){
|
||||
|
||||
|
||||
<?php
|
||||
if($etab['FJ'][0]==1)
|
||||
{
|
||||
?>
|
||||
<label>Entreprise ayant exercée son droit d'opposition en</label>
|
||||
<input type="checkbox" name="oppositionInsee" value="1"/>
|
||||
<div id="divOppositionInsee"></div>
|
||||
<?php
|
||||
$disable = ' disabled';
|
||||
if($etab['FJ'][0] || in_array($etab['FJ'], array(2310, 2320, 2385))) {
|
||||
$disable = '';
|
||||
}
|
||||
?>
|
||||
<label>Entreprise ayant exercée son droit d'opposition en</label>
|
||||
<input type="checkbox" name="oppositionInsee" value="1"<?=$disable?>/>
|
||||
<div id="divOppositionInsee"></div>
|
||||
|
||||
<p class="submit"><input type="submit" name="submit" value="Sauver"/></p>
|
||||
|
||||
</form>
|
Loading…
x
Reference in New Issue
Block a user