Quelques correction de lien
This commit is contained in:
parent
f5b5e93660
commit
5524796ed0
@ -22,26 +22,18 @@
|
||||
<td class="StyleInfoData" width="320">
|
||||
|
||||
<?php if ($dir->Societe != '') { ?>
|
||||
<a href="<?=$this->url(array('controller' => 'recherche', 'action' => 'liste', 'type' => 'ent','raisonSociale' => $dir->Societe), 'default', true)?>"
|
||||
title="<?=$this->translate("Recherche à partir de la dénomination sociale")?>">
|
||||
<?=$dir->Societe?>
|
||||
</a>
|
||||
<a href="<?=$this->url(array('module'=>'search', 'controller'=>'entreprise', 'action'=>'liste',
|
||||
'raisonSociale'=>$dir->Societe), 'default', true)?>"
|
||||
title="<?=$this->translate("Recherche à partir de la dénomination sociale")?>"><?=$dir->Societe?></a>
|
||||
<br/>
|
||||
<?php }?>
|
||||
|
||||
<?php if ($dir->Nom != '') { ?>
|
||||
<a href="<?=$this->url(array(
|
||||
'controller' => 'recherche',
|
||||
'action' => 'liste',
|
||||
'type' => 'dir',
|
||||
'dirNom' => $dir->Nom,
|
||||
'dirPrenom' => $dir->Prenom,
|
||||
'dirDateNaissJJ' => substr($dir->NaissDate,0,2),
|
||||
'dirDateNaissMM' => substr($dir->NaissDate,3,2),
|
||||
'dirDateNaissAAAA' => substr($dir->NaissDate,6,4),
|
||||
'dirCpVille' => $dir->NaissVille,
|
||||
), 'default', true)?>" title="<?=$this->translate("Recherche à partir du nom du dirigeant")?>">
|
||||
<?=$dir->Nom.' '.$dir->Prenom?>
|
||||
<a href="<?=$this->url(array('module'=>'search', 'controller'=>'dirigeant', 'action'=>'liste',
|
||||
'dirNom'=>$dir->Nom, 'dirPrenom'=>$dir->Prenom, 'dirDateNaissJJ'=>substr($dir->NaissDate,0,2),
|
||||
'dirDateNaissMM'=>substr($dir->NaissDate,3,2), 'dirDateNaissAAAA'=>substr($dir->NaissDate,6,4),
|
||||
'dirCpVille'=>$dir->NaissVille), 'default', true)?>"
|
||||
title="<?=$this->translate("Recherche à partir du nom du dirigeant")?>"><?=$dir->Nom.' '.$dir->Prenom?>
|
||||
</a>
|
||||
<?php
|
||||
if (trim($dir->NaissDate) != '' && trim($dir->NaissVille.' '.$dir->NaissDepPays) != '') { ?>
|
||||
@ -57,7 +49,8 @@
|
||||
</td>
|
||||
<td class="StyleInfoData" width="100" valign="top">
|
||||
<?php if ($dir->Siren!='') {?>
|
||||
<a title="<?=$this->translate("Consulter la fiche identité")?>" href="<?=$this->url(array('controller'=>'identite', 'action'=>'fiche', 'siret'=>$dir->Siren), 'default', true)?>">
|
||||
<a title="<?=$this->translate("Consulter la fiche identité")?>" href="<?=$this->url(array('module'=>'legal',
|
||||
'controller'=>'identite', 'action'=>'fiche', 'siret'=>$dir->Siren), 'default', true)?>">
|
||||
<?=$this->SirenTexte($dir->Siren)?></a>
|
||||
|
||||
<?php if (empty($this->AutrePage) && $this->edition) {?>
|
||||
@ -115,20 +108,3 @@ $('a.dialog').on('click', function(){
|
||||
});
|
||||
</script>
|
||||
<?php }?>
|
||||
|
||||
<?php if (empty($this->AutrePage) && $this->accessWorldCheck) {?>
|
||||
<script>
|
||||
$('img.wcheck').each(function(){
|
||||
$(this).qtip({
|
||||
hide: { event: 'unfocus' },
|
||||
show: { solo: true, delay: 500 },
|
||||
content: {
|
||||
button: true,
|
||||
title: 'WorlCheck',
|
||||
text: "Chargement...",
|
||||
ajax: { url: $(this).data('url') } },
|
||||
position: { my: 'right center', at: 'left center' }
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<?php }?>
|
||||
|
@ -9,8 +9,10 @@
|
||||
|
||||
<h2><?=$this->translate("Dirigeants Opérationnels")?></h2>
|
||||
<?php if ($this->edition) {?>
|
||||
<p><a class="dialog" title="Ajouter un dirigeant" href="<?=$this->url(array('controller'=>'saisie','action'=>'diropcontrol','mode'=>'add','siret'=>$this->siret), 'default', true)?>">
|
||||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" /><?=$this->translate("Ajouter un dirigeant")?></a></p>
|
||||
<p><a class="dialog" title="Ajouter un dirigeant" href="<?=$this->url(array('controller'=>'saisie',
|
||||
'action'=>'diropcontrol','mode'=>'add','siret'=>$this->siret), 'default', true)?>">
|
||||
<img style="vertical-align:middle;" src="/themes/default/images/interfaces/ajouter.png" />
|
||||
<?=$this->translate("Ajouter un dirigeant")?></a></p>
|
||||
<?php }?>
|
||||
<?php if ( count($this->dirigeants)>0 ) {?>
|
||||
<table class="table table-bordered">
|
||||
@ -19,16 +21,16 @@
|
||||
<td width="140"><?=$dir->Titre?></td>
|
||||
<td id="<?=$dir->Id?>" width="200">
|
||||
<?php if ($dir->Societe != '') { ?>
|
||||
<a href="<?=$this->url(array('controller' => 'recherche', 'action' => 'liste', 'type' => 'ent',
|
||||
'raisonSociale' => $dir->Societe), 'default', true)?>"
|
||||
<a href="<?=$this->url(array('module'=>'search', 'controller'=>'entreprise', 'action'=>'liste',
|
||||
'raisonSociale'=>$dir->Societe), 'default', true)?>"
|
||||
title="<?=$this->translate("Recherche à partir de la Dénomination sociale")?>">
|
||||
<?=$dir->Societe?>
|
||||
</a>
|
||||
|
||||
<?php }?>
|
||||
<?php if ($dir->Nom != '') { ?>
|
||||
<a href="<?=$this->url(array('controller' => 'recherche', 'action' => 'liste', 'type' => 'dir',
|
||||
'dirNom' => $dir->Nom, 'dirPrenom' => $dir->Prenom), 'default', true)?>"
|
||||
<a href="<?=$this->url(array('module'=>'search', 'controller'=>'dirigeant', 'action'=>'liste', 'dirNom'=>$dir->Nom,
|
||||
'dirPrenom'=>$dir->Prenom), 'default', true)?>"
|
||||
title="<?=$this->translate("Recherche à partir du nom du dirigeant")?>">
|
||||
<?=$dir->Civilite.' '.$dir->Nom.' '.$dir->Prenom?>
|
||||
</a>
|
||||
|
@ -24,7 +24,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<form class="form-inline" name="options" method="post" action="<?=$this->url(array('controller'=>'identite',
|
||||
<form class="form-inline" name="options" method="post" action="<?=$this->url(array('module'=>'legal', 'controller'=>'identite',
|
||||
'action'=>'etablissements', 'siret'=>$this->siret, 'id'=>$this->id), 'default', true);?>">
|
||||
<div class="form-group form-group-sm">
|
||||
<label><?=$this->translate("Actif")?> / <?=$this->translate("Inactif")?></label>
|
||||
@ -51,7 +51,7 @@
|
||||
|
||||
if(intval($etab->Nic)==0 || intval($etab->Nic)>=99990) $type.=' provisoire';
|
||||
|
||||
$href = $this->url(array('controller'=>'identite', 'action'=>'fiche', 'siret'=>$this->siren.$etab->Nic,
|
||||
$href = $this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'fiche', 'siret'=>$this->siren.$etab->Nic,
|
||||
'id'=>$this->id), 'default', true);
|
||||
?>
|
||||
<tr>
|
||||
@ -107,7 +107,7 @@
|
||||
<?php }?>
|
||||
<?php if($this->hasPrefCarte){?>
|
||||
<div class="paragraph">
|
||||
<?=$this->action('carte', 'identite', null, array(
|
||||
<?=$this->action('carte', 'identite', 'legal', array(
|
||||
'siret'=>$this->siret, 'id'=>$this->id,
|
||||
'actif'=>$this->actif, 'page'=>$this->PageCurrent) )?>
|
||||
</div>
|
||||
|
@ -11,12 +11,13 @@
|
||||
<?php if ( empty($this->AutrePage) ) {?>
|
||||
<p>
|
||||
<?php if ( $this->Entreprise == 1 ) {?>
|
||||
Liste des événements de l'entreprise. <a href="<?=$this->url(array('controller'=>'identite', 'action'=>'evenements',
|
||||
'siret'=>$this->siret, 'nic'=>$this->Nic), 'default', true)?>">Afficher uniquement les événements de l'établissement.</a>
|
||||
Liste des événements de l'entreprise. <a href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite',
|
||||
'action'=>'evenements', 'siret'=>$this->siret, 'nic'=>$this->Nic), 'default', true)?>">
|
||||
Afficher uniquement les événements de l'établissement.</a>
|
||||
<?php } else {?>
|
||||
Liste des événements uniquement sur l'établissement <?=$this->Nic?>.
|
||||
<a href="<?=$this->url(array('controller'=>'identite', 'action'=>'evenements', 'siret'=>$this->siret),
|
||||
'default', true)?>">Afficher tous les événements de l'entreprise.</a>
|
||||
<a href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'evenements',
|
||||
'siret'=>$this->siret), 'default', true)?>">Afficher tous les événements de l'entreprise.</a>
|
||||
<?php }?>
|
||||
</p>
|
||||
<?php }?>
|
||||
@ -29,17 +30,10 @@ Liste des événements uniquement sur l'établissement <?=$this->Nic?>.
|
||||
foreach ($this->evens as $i=>$even) {
|
||||
if ($even->Siege==1) $type='siège';
|
||||
else $type='établissement';
|
||||
$lien = '<a title="Voir la fiche d\'identité" href="'.$this->url(array(
|
||||
'controller' => 'identite',
|
||||
'action' => 'fiche',
|
||||
'siret' => $this->siren.$even->Nic,
|
||||
'id' => $this->id,
|
||||
), 'default', true).'">';
|
||||
$lien2 = '<a title="Voir la fiche d\'identité" href="'.$this->url(array(
|
||||
'controller' => 'identite',
|
||||
'action' => 'fiche',
|
||||
'siret' => $even->SiretAss,
|
||||
), 'default', true).'">';
|
||||
$lien = '<a title="Voir la fiche d\'identité" href="'.$this->url(array('module'=>'legal', 'controller'=>'identite',
|
||||
'action' => 'fiche', 'siret' => $this->siren.$even->Nic, 'id' => $this->id), 'default', true).'">';
|
||||
$lien2 = '<a title="Voir la fiche d\'identité" href="'.$this->url(array('module'=>'legal', 'controller'=>'identite',
|
||||
'action'=>'fiche','siret' => $even->SiretAss), 'default', true).'">';
|
||||
?>
|
||||
<tr>
|
||||
<td width="80" valign="top">
|
||||
|
@ -91,9 +91,10 @@
|
||||
<td width="350">
|
||||
<?php
|
||||
$date = new Zend_Date($this->naissanceDate, 'YYYY-MM-dd');
|
||||
$param = array(
|
||||
'controller'=>'recherche',
|
||||
'action'=>'dirigeant',
|
||||
$param = array(
|
||||
'module'=>'search',
|
||||
'controller'=>'dirigeant',
|
||||
'action'=>'index',
|
||||
'dirNom'=>$this->nom,
|
||||
'dirPrenom'=>$this->prenom,
|
||||
'dirDateNaissJJ' =>$date?$date->get('dd'):'',
|
||||
@ -170,9 +171,11 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
</td>
|
||||
<td class="lienfiche" id="<?=$lien->idFiche?>">
|
||||
<?php if (intval($lien->siren)!=0) {?>
|
||||
<a class="lienNom" href="<?=$this->url(array('controller'=>'identite','action'=>'liens','siret'=>$lien->siren), null, true)?>">
|
||||
<a class="lienNom" href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'siret'=>$lien->siren), 'default', true)?>">
|
||||
<?php } else {?>
|
||||
<a class="lienNom" href="<?=$this->url(array('controller'=>'identite','action'=>'liens','lienref'=>$lien->idFiche), null, true)?>">
|
||||
<a class="lienNom" href="<?=$this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'liens',
|
||||
'lienref'=>$lien->idFiche), 'default', true)?>">
|
||||
<?php }?>
|
||||
<?=$lien->nom?>
|
||||
<?php if($lien->sigle) echo " (".$lien->sigle.")"; ?>
|
||||
@ -181,11 +184,8 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
<td width="200">
|
||||
<?php
|
||||
if ( !empty($lien->siren) && intval($lien->siren)!=0 ) {
|
||||
$href = $this->url(array(
|
||||
'controller' => 'identite',
|
||||
'action' => 'fiche',
|
||||
'siret' => $lien->siren
|
||||
), 'default', true);
|
||||
$href = $this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'fiche',
|
||||
'siret'=>$lien->siren), 'default', true);
|
||||
echo 'Siren <a href="'.$href.'">'.$this->SirenTexte($lien->siren).'</a>';
|
||||
}
|
||||
else ' ';
|
||||
@ -218,16 +218,16 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
<div>Aucun actionnaire référencé par nos services.</div>
|
||||
<?php if ($this->lienStatuts) {?>
|
||||
<?php if ($this->lienStatuts && $this->FJ1) {?>
|
||||
<div>Afin d’identifier l'unique actionnaire de cette entreprise, consulter ses <a href="<?=$this->lienStatuts?>">statuts</a>.</div>
|
||||
<div>Afin d'identifier l'unique actionnaire de cette entreprise, consulter ses <a href="<?=$this->lienStatuts?>">statuts</a>.</div>
|
||||
<?php } elseif ($this->lienStatuts) {?>
|
||||
<div>Afin d’identifier les actionnaires de cette entreprise, consulter ses <a href="<?=$this->lienStatuts?>">statuts</a>.</div>
|
||||
<div>Afin d'identifier les actionnaires de cette entreprise, consulter ses <a href="<?=$this->lienStatuts?>">statuts</a>.</div>
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
<?php } else {?>
|
||||
<div>Aucune participation référencée par nos services.</div>
|
||||
<?php if ($this->lienBilans) {?>
|
||||
<?php if ($this->lienStatuts) {?>
|
||||
<div>Afin d’identifier les participations de cette entreprise, consulter son <a href="<?=$this->lienBilans?>">dernier bilan publié</a>.</div>
|
||||
<div>Afin d'identifier les participations de cette entreprise, consulter son <a href="<?=$this->lienBilans?>">dernier bilan publié</a>.</div>
|
||||
<?php }?>
|
||||
<?php }?>
|
||||
<?php } ?>
|
||||
@ -255,11 +255,8 @@ Cette entreprise est une personne physique exerçant son activité en nom propre
|
||||
</td>
|
||||
<td width="200" valign="top">
|
||||
<?php if ( !empty($lien->siren) && intval($lien->siren)!=0 ) {
|
||||
$href = $this->url(array(
|
||||
'controller' => 'identite',
|
||||
'action' => 'fiche',
|
||||
'siret' => $lien->siren
|
||||
), 'default', true);
|
||||
$href = $this->url(array('module'=>'legal', 'controller'=>'identite', 'action'=>'fiche',
|
||||
'siret'=>$lien->siren), 'default', true);
|
||||
echo 'Siren <a href="'.$href.'">'.$this->SirenTexte($lien->siren).'</a>';
|
||||
}?>
|
||||
<?php if (empty($this->AutrePage) && $this->edition && intval($lien->siren)!=0) {?>
|
||||
|
Loading…
Reference in New Issue
Block a user