263 lines
8.7 KiB
PHTML
263 lines
8.7 KiB
PHTML
<?php if (empty($this->AutrePage)) {?>
|
||
<div id="center">
|
||
<?php }?>
|
||
|
||
<?php if (empty($this->AutrePage)) {?>
|
||
<h1>LIENS FINANCIERS</h1>
|
||
<div class="paragraph">
|
||
<table class="identite">
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="200" class="StyleInfoLib">Numéro identifiant Siren</td>
|
||
<td width="350" class="StyleInfoData"><?=$this->SirenTexte($this->siren)?></td>
|
||
</tr>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
||
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
||
</tr>
|
||
<?php if ($this->liengroupe) { ?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoLib">
|
||
<a id="groupesarbo" title="Arborescence du groupe" href="<?=$this->liengroupe?>">Organigramme du groupe</a>
|
||
</td>
|
||
</tr>
|
||
<?php }?>
|
||
|
||
<?php if ($this->edition) {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="200" class="StyleInfoLib" valign="top">Documents</td>
|
||
<td width="350" class="StyleInfoLib">
|
||
<?php echo $this->action('liendoc', 'identite', null, array('id'=>$this->siren, 'type'=>'Entreprise')); ?>
|
||
<br/>
|
||
<a class="dialogDoc" title="Lier un document" href="<?=$this->url(array('controller'=>'saisie','action'=>'liendoc','siren'=>$this->siren), null, true)?>">
|
||
<img src="/themes/default/images/interfaces/page_white_put.png" />
|
||
Lier un document (organigramme du groupe)
|
||
</a>
|
||
</td>
|
||
</tr>
|
||
<?php }?>
|
||
|
||
<?php if ($this->edition) {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoLib">
|
||
|
||
</td>
|
||
</tr>
|
||
<?php }?>
|
||
|
||
</table>
|
||
</div>
|
||
<?php }?>
|
||
|
||
<?php $liste = array('actionnaires', 'participations');?>
|
||
<?php foreach ($liste as $part) {?>
|
||
|
||
<?php if ($part == 'actionnaires') {?>
|
||
<h2>Actionnariat</h2>
|
||
<?php } else {?>
|
||
<h2>Participations</h2>
|
||
<?php }?>
|
||
|
||
<div class="paragraph">
|
||
<table>
|
||
<?php if ( count($this->$part)>0 ) {?>
|
||
<?php foreach ($this->$part as $lien) {?>
|
||
<tr>
|
||
<td class="StyleInfoData" width="100">
|
||
<?php
|
||
if (intval($lien->PDetention)>0) echo $lien->PDetention.' %';
|
||
elseif ($lien->MajMin=='+') echo 'major.';
|
||
elseif ($lien->MajMin=='-') echo 'minor.';
|
||
elseif ($lien->MajMin=='C') echo 'major.';
|
||
elseif ($lien->MajMin=='S') echo 'minor.';
|
||
elseif ($lien->MajMin=='F') echo 'absorption';
|
||
elseif ($lien->MajMin=='A') echo 'absorbant';
|
||
else echo ' ';
|
||
?>
|
||
</td>
|
||
<td class="StyleInfoLib" width="300">
|
||
<span class="lienfiche" href="<?=$this->url(array('controller'=>'identite','action'=>'lienfiche', 'idFiche'=>$lien->idFiche))?>"><?=$lien->nom?></span>
|
||
</td>
|
||
<td class="StyleInfoData" width="150">
|
||
<?php
|
||
if ( !empty($lien->siren) && intval($lien->siren)!=0 ) {
|
||
$href = $this->url(array(
|
||
'controller' => 'identite',
|
||
'action' => 'fiche',
|
||
'siret' => $lien->siren
|
||
), null, true);
|
||
echo 'Siren <a href="'.$href.'">'.$lien->siren.'</a>';
|
||
}
|
||
else ' ';
|
||
|
||
if ($lien->pays<>'France') echo '<b>'.$lien->pays.'</b>';
|
||
?>
|
||
</td>
|
||
<?php if ($this->edition) {?>
|
||
<td>
|
||
<a class="documentsLien" title="Documents associés" href="<?=$this->url(array('controller'=>'identite','action'=>'liendoc','id'=>$lien->id,'type'=>'Lien'))?>">+</a>
|
||
<?php if ($part == 'actionnaires') {?>
|
||
<a class="dialog" title="Modifier actionnaire" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'actionnaire','mode'=>'edit','siren'=>$this->siren,'idLien'=>$lien->id), null, true)?>"><img src="/themes/default/images/interfaces/editer.png" /></a>
|
||
<a class="dialog" title="Supprimer actionnaire" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'actionnaire','mode'=>'delete','siren'=>$this->siren,'idLien'=>$lien->id), null, true)?>"><img src="/themes/default/images/interfaces/supprimer.png" /></a>
|
||
<?php } else {?>
|
||
<a class="dialog" title="Modifier participation" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'participation','mode'=>'edit','siren'=>$this->siren,'idLien'=>$lien->id), null, true)?>"><img src="/themes/default/images/interfaces/editer.png" /></a>
|
||
<a class="dialog" title="Supprimer participation" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'participation','mode'=>'delete','siren'=>$this->siren,'idLien'=>$lien->id), null, true)?>"><img src="/themes/default/images/interfaces/supprimer.png" /></a>
|
||
<?php }?>
|
||
<a class="dialogDoc" title="Lier un document" href="<?=$this->url(array('controller'=>'saisie','action'=>'liendoc','idLien'=>$lien->id), null, true)?>"><img src="/themes/default/images/interfaces/page_white_put.png" /></a>
|
||
</td>
|
||
<?php }?>
|
||
</tr>
|
||
<?php }?>
|
||
<?php } else {?>
|
||
<?php if ($part == 'actionnaires') {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoData">Aucun actionnaire référencé par nos services</td>
|
||
</tr>
|
||
<?php if ($this->lienStatuts) {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoData">
|
||
<?php if ($this->lienStatuts) {?>
|
||
Afin d’identifier les actionnaires de cette entreprise, consulter ses <a href="<?=$this->lienStatuts?>">statuts</a>.
|
||
<?php }?>
|
||
</td>
|
||
</tr>
|
||
<?php }?>
|
||
<?php } else {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoData">Aucune participation référencée par nos services</td>
|
||
</tr>
|
||
<?php if ($this->lienBilans) {?>
|
||
<tr>
|
||
<td width="30"> </td>
|
||
<td width="550" colspan="2" class="StyleInfoData">
|
||
<?php if ($this->lienStatuts) {?>
|
||
Afin d’identifier les participations de cette entreprise, consulter son <a href="<?=$this->lienBilans?>">dernier bilan publié</a>.
|
||
<?php }?>
|
||
</td>
|
||
</tr>
|
||
<?php }?>
|
||
<?php } ?>
|
||
<?php } ?>
|
||
</table>
|
||
|
||
<?php if ($this->edition) {?>
|
||
<?php if ($part == 'actionnaires') {?>
|
||
<div style="line-height:16px;">
|
||
<a class="dialog" title="Ajouter un actionnaire" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'actionnaire','mode'=>'add','siren'=>$this->siren), null, true)?>">
|
||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" /> Ajouter un actionnaire</a>
|
||
</div>
|
||
<?php } else {?>
|
||
<div style="line-height:16px;">
|
||
<a class="dialog" title="Ajouter une participation" href="<?=$this->url(array('controller'=>'saisie','action'=>'lien','type'=>'participation','mode'=>'add','siren'=>$this->siren), null, true)?>">
|
||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" /> Ajouter une participation</a>
|
||
</div>
|
||
<?php }?>
|
||
<?php }?>
|
||
</div>
|
||
|
||
<?php }?>
|
||
|
||
<?php if (empty($this->AutrePage)) {?>
|
||
<?=$this->render('cgu.phtml', $this->cgu)?>
|
||
<?php }?>
|
||
|
||
<?php if (empty($this->AutrePage)) {?>
|
||
</div>
|
||
<?php }?>
|
||
|
||
<script>
|
||
$('span.lienfiche').each(function(){
|
||
$(this).qtip({
|
||
content: {
|
||
text: "Chargement...",
|
||
title: { text: "Informations", button: 'Fermer' },
|
||
ajax: { url: $(this).attr('href') }
|
||
},
|
||
position: {
|
||
my: "bottom left",
|
||
at: "top right"
|
||
},
|
||
hide: { event: 'unfocus' },
|
||
show: { solo: true }
|
||
});
|
||
});
|
||
</script>
|
||
|
||
<?php if ($this->edition) {?>
|
||
<script>
|
||
$('a.documentsLien').on('click', function(e){
|
||
e.preventDefault();
|
||
var tr = $(this).parents('tr');
|
||
var contentB = '<tr><td width="30"> </td><td width="300"class="StyleInfoData">';
|
||
var contentE = '</td><td></td</tr>';
|
||
$.post($(this).attr('href'), function(data){
|
||
tr.after(contentB + data + contentE);
|
||
});
|
||
});
|
||
|
||
$('a.dialogDoc').on('click', function(){
|
||
var href = $(this).attr('href');
|
||
if (href!='#') {
|
||
var title = $(this).attr('title');
|
||
var dialogOpts = {
|
||
bgiframe: true,
|
||
title: title,
|
||
width: 650,
|
||
height: 600,
|
||
modal: true,
|
||
open: function(event, ui) {
|
||
$(this).html('Chargement...');
|
||
$(this).load(href);
|
||
},
|
||
buttons: {
|
||
Annuler: function() { $(this).dialog('close'); }
|
||
},
|
||
close: function() { $('#dialogcmd').remove(); }
|
||
};
|
||
$('<div id="dialog"></div>').dialog(dialogOpts);
|
||
return false;
|
||
}
|
||
});
|
||
|
||
$('a.dialog').on('click', function(){
|
||
var href = $(this).attr('href');
|
||
if (href!='#') {
|
||
var title = $(this).attr('title');
|
||
var dialogOpts = {
|
||
bgiframe: true,
|
||
title: title,
|
||
width: 650,
|
||
height: 600,
|
||
modal: true,
|
||
open: function(event, ui) {
|
||
$(this).html('Chargement...');
|
||
$(this).load(href);
|
||
},
|
||
buttons: {
|
||
Valider: function() {
|
||
if ($('input[name=id1]').length>0 && $('input[name=id2]').length>0) {
|
||
var form = $('form[name=lien]');
|
||
$.post(form.attr('action'), form.serialize(), function(data){
|
||
$('form[name=lien]').replaceWith(data);
|
||
}).error(function(){ alert('Unknow error'); });
|
||
} else {
|
||
alert("Quelque chose manque !");
|
||
}
|
||
},
|
||
Annuler: function() { $(this).dialog('close'); }
|
||
},
|
||
close: function() { $('#dialogcmd').remove(); }
|
||
};
|
||
$('<div id="dialog"></div>').dialog(dialogOpts);
|
||
return false;
|
||
}
|
||
});
|
||
</script>
|
||
<?php }?> |