89 lines
2.3 KiB
PHTML
Raw Normal View History

2012-10-04 16:01:20 +00:00
<div id="center">
<?php if ($message!='') { ?>
<div style="margin:5px; padding: 0pt 0.7em;" class="ui-state-highlight ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-info"></span>
<?=$message?></p>
</div>
<?php } ?>
<h1 class="titre">IDENTITE DE L'ENTREPRISE</h1>
<div class="paragraph">
<div>
<label>Num&eacute;ro identifiant SIREN (France)</label>
<?=$this->SirenTexte($this->etab->Siren)?>
</div>
<div class="clearfix">
<label>Raison Sociale</label>
<?php
echo $this->etab->Nom;
if ($this->etab->Nom2!='') echo ' / '.$this->etab->Nom2;
?>
</div>
<div class="clearfix">
<label>Adresse</label>
<div style="float:left;">
<?php
echo $this->etab->AdresseNum.' '.$this->etab->AdresseRue.'<br/>';
if (!empty($this->etab->Adresse)) echo $this->etab->Adresse.'<br/>';
if (!empty($this->etab->Adresse2)) echo $this->etab->Adresse2.'<br/>';
echo $this->etab->CP.' '.$this->etab->Ville;
?>
</div>
</div>
</div>
<h2>Raison sociale et coordonnées</h2>
<form name="form_saisie" action="<?=$this->url(array('controller'=>'saisie', 'action'=>'boursesave'), null, true)?>" method="post" enctype="multipart/form-data">
<input type="hidden" name="id" value="<?=$this->id?>"/>
<div class="paragraph">
<label>siren</label>
<label>raisonSociale</label>
<label>adresse</label>
<label>effectif</label>
<label>code_sicovam</label>
<label>code_bloomberg</label>
<label>code_datasream</label>
<label>code_isin</label>
<label>logo</label>
<label>code_ric</label>
<label>code_boursorama</label>
<label>dateIntroduction</label>
<label>dateIntroYmd</label>
<label>dateDerAG</label>
<label>deliste</label>
<label>dateRadiation</label>
<label>autre_isin</label>
<label>eligibleSRD</label>
<label>eligiblePEA</label>
<label>nombreTitres</label>
<label>dateNbTitres</label>
<label>contactBourse</label>
<label>tel1</label>
<label>tel2</label>
<label>fax1</label>
<label>fax2</label>
<label>web</label>
<label>mail</label>
<label>marche</label>
<label>placeCotation</label>
<label>description</label>
<label>secteur</label>
<label>code_icb</label>
<label>activite</label>
<label>activiteDet</label>
</div>
<div class="submit clearfix"><input type="submit" name="submit" value="Sauver"/></div>
</div>
</form>
</div>