Suppression

This commit is contained in:
Michael RICOIS 2016-05-09 15:35:07 +02:00
parent b8bf4f5217
commit 090b63ae34
30 changed files with 0 additions and 1226 deletions

View File

@ -1,5 +0,0 @@
<div class="paragraph">
<p class="confidentiel">
<?=$this->cgu?>
</p>
</div>

View File

@ -1,37 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Extranet - Erreur</title>
</head>
<body>
<div id="center">
<h1>Erreur</h1>
<div class="paragraph">
<b><?php echo $this->message ?></b>
</div>
<?php if (isset($this->exception)): ?>
<h2>Exception information:</h2>
<div class="paragraph">
<p>
<b>Message:</b> <pre><?php echo $this->exception->getMessage() ?></pre>
</p>
</div>
<br/>
<h2>Stack trace:</h2>
<div class="paragraph">
<pre><?php echo $this->exception->getTraceAsString() ?></pre>
</div>
<br/>
<h2>Request Parameters:</h2>
<div class="paragraph">
<pre><?php echo var_export($this->request->getParams(), true) ?></pre>
</div>
<?php endif ?>
</div>
</body>
</html>

View File

@ -1,12 +0,0 @@
<div id="center">
<h2>Erreur</h2>
<div class="paragraph">
<?php
$message = 'Paramètres incorrectes!';
?>
<div style="padding:0.7em;" class="ui-state-error ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
<strong>Erreur :</strong> <?=$message?></p>
</div>
</div>
</div>

View File

@ -1,13 +0,0 @@
<div id="center">
<h2>Erreur</h2>
<div class="paragraph">
<?php
$message = 'Vous n\'avez pas les droits nécessaires pour utiliser cette fonctionnalité.';
?>
<div style="padding:0.7em;" class="ui-state-error ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
<strong>Erreur :</strong> <?=$message?></p>
</div>
</div>
</div>

View File

@ -1,16 +0,0 @@
<div id="center">
<h2>Erreur</h2>
<div class="paragraph">
<div style="padding:0.7em;" class="ui-state-error ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
Une erreur est survenue lors de votre requête...<br/>
Un message à été envoyé à l'administrateur.<br/>
Nous vous remercions de bien vouloir renouveler votre demande ultérieurement.
</p>
</div>
</div>
</div>

View File

@ -1,5 +0,0 @@
<p>&copy; 2006-<?php echo date('Y')?> Scores &amp; D&eacute;cisions SAS -
Tous droits r&eacute;serv&eacute;s -
<a href="http://www.scores-decisions.com/mentions.php" target="_blank">
Mentions l&eacute;gales
</a>

View File

@ -1,42 +0,0 @@
<?php if ($this->navigation()->menu()->hasPages()) { ?>
<div id="menu">
<div id="logo">
<img src="/themes/default/images/logos/logo_sd.gif" width="200" height="65" />
</div>
<?=$this->navigation()->menu();?>
<div class="icones">
<?php if ($this->print) {?>
<a target="_blank" title="Impression" href="/editer/ecran/<?=$this->print.'.html'?>">
<img alt="Impression" src="/themes/default/images/interfaces/printer.png">
</a>
<?php }?>
<?php if ($this->pdf) {?>
<a target="_blank" title="Impression PDF" href="/editer/pdf/<?=$this->pdf.'.pdf'?>">
<img alt="Impression" src="/themes/default/images/interfaces/pdf.png">
</a>
<?php }?>
<?php if ($this->xml) {?>
<a target="_blank" title="Export XML" href="/editer/xml/<?=$this->xml.'.xml'?>">
<img alt="Export en XML" src="/themes/default/images/interfaces/xml.png">
</a>
<?php }?>
<?php if ($this->aide) {?>
<a id="aideLigne" title="Aide en ligne" href="#">
<img alt="Export en XML" src="/themes/default/images/interfaces/aideligne.png">
</a>
<?php }?>
</div>
</div>
<script>
$('#menu ul.navigation').accordion({
header: '.header',
autoHeight: false,
collapsible: true,
active: <?=$this->menuId?>
});
</script>
<?php }?>

View File

@ -1,12 +0,0 @@
<div id="center">
<h2 class="titre">LISTE DES &Eacute;TABLISSEMNTS</h2>
<h2>&Eacute;tablissements</h2>
<?php if (empty($this->AutrePage)):?>
<?=$this->render('cgu.phtml', $this->cgu)?>
<?php endif;?>
</div>

View File

@ -1,35 +0,0 @@
<?php if ($this->source == 'google'):?>
<div id="infogeo_photo">
<?=$this->action('streetview', 'identite', null, array(
'lat' => $this->infos->GeoLat,
'lon' => $this->infos->GeoLon,
'siret' => $this->infos->Siret,
));?>
</div>
<?php elseif ($this->source == 'mappy'):?>
<div><img id="streetview" width="300px" /></div>
<script src="<?=$this->lienJs?>"></script>
<script type="text/javascript">
$(document).ready(function() {
var photoService = new Mappy.api.visiocity.PhotoService();
var geo = new Mappy.api.geolocation.Geocoder();
var address = "<?=$this->adresse?>";
geo.geocode(address, function(result) {
photoService.search(result[0], "f", serviceHandler);
}, function(error) {});
var serviceHandler = function(result) {
if (result instanceof Mappy.api.visiocity.Frontage) {
var current = result.getCurrent();
var img = $('<img src="' + current.getURL(320, null) +
'" alt="' + current.getDescription() +
'" width="300px" />');
$('#streetview').replaceWith(img);
}
};
});
</script>
<?php endif;?>

View File

@ -1,18 +0,0 @@
<?php if ( $this->texte ) {?>
<tr>
<td width="50" class="aide">
<?php if ( !empty($this->aide) ) {?>
<img src="/themes/default/images/interfaces/aideligne.png" width="16" height="16" style="display:none;"/>
<div id="<?=$this->id?>" style="display:none;"><?=$this->aide?></div>
<?php } ?></td>
<td width="200" class="StyleInfoLib"><?=$this->label?></td>
<?php
if (!empty($this->titre)) {
$titre = ' title="'.$this->titre.'"';
} else {
$titre = '';
}
?>
<td width="350" class="StyleInfoData"<?=$titre?>><?=$this->texte?></td>
</tr>
<?php } ?>

View File

@ -1,81 +0,0 @@
<div id="center">
<?php if ( empty($this->AutrePage) ) {?>
<h2 class="titre">FICHE D'IDENTIT&Eacute;</h2>
<?php }?>
<div class="paragraph">
<table>
<?php
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Siret']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['SiretSiege']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['TvaNumero']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Isin']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Capitalisation']);
echo $this->partial('identite/fiche-item.phtml', $this->logo);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['NumRC']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['AutreId']);
//echo $this->partial('identite/fiche-item.phtml', $this->dBlock['NumRM']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Actif']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['SituationJuridique']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['AutreSiren']);
?>
</table>
</div>
<div data-role="content">
<div data-role="collapsible-set">
<div data-role="collapsible">
<h3>Raison sociale &amp; Coordonnées</h3>
<table>
<?php
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['RaisonSociale']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['NomCommercial']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['EnseigneSigle']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['FormeJuridique']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['DateImmat']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['DateCreaEn']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['DateCreaEt']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Adresse']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Zones']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Tel']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Fax']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Web']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Mail']);
?>
</table>
</div>
</div>
<div data-role="collapsible">
<h3>Activité(s) &amp; Chiffre d'affaires</h3>
<table>
<?php
//Remplace Siren pour texte
//$this->dBlock['ActiviteEn']['texte'] = $this->RemplaceSiren($this->dBlock['ActiviteEn']['texte']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['ActiviteEn']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['ActiviteEt']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Naf4']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Nace']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['NatureActivite']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['SurfaceMagasin']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['OrigineFond']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['TypeExploitation']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Saisonnalite']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['NbEtabActif']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Capital']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['ChiffreAffaire']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Dirigeants']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['Effectif']);
echo $this->partial('identite/fiche-item.phtml', $this->dBlock['EffectifEtab']);
?>
</table>
</div>
<div data-role="collapsible">
<h3>Localisation géographique</h3>
<?=$this->action('geo', 'identite', null, array('infos' => $this->infos));?>
</div>
<div data-role="collapsible">
<h3>Information presse (Source Google News ©)</h3>
<?=$this->action('news', 'identite');?>
</div>
</div>
</div>

View File

@ -1,37 +0,0 @@
<h2>Localisation géographique</h2>
<div class="paragraph">
<div id="infogeo" class="clearfix">
<div id="infogeo_txt">
<?php if ( $this->infos->GeoLat && $this->infos->GeoLon ):?>
<span id=geolocalisation>
<b>Information géographique :</b><br/>
Latitude : <?=$this->decLat?> (<?=$this->infos->GeoLat?>)<br />
Longitude : <?=$this->decLon?> (<?=$this->infos->GeoLon?>)<br />
</span>
<a id="lien-google" href="<?=$this->mapsHref?>" target="_blank">
Afficher l'adresse sur Google Map &copy;</a><br/>
<br/>
<?endif;?>
<b>Code commune / Rivoli :</b><br/>
<?=$this->infos->Dept.' '.$this->infos->codeCommune.' / '.$this->infos->Rivoli; ?>
<?php
if (count($this->infos->InfosIris)>0){
$InfosIris = $this->infos->InfosIris;
$codComIris = str_replace($InfosIris->codIris, '', $InfosIris->codComIris);
?>
<br/><br/><b>Iris :</b>
<?php if (intval($InfosIris->codIris) == 0){ ?>
<br/>Commune non découpée en Iris
<?php } else {?>
<br/>Code : <?=$codComIris?> <?=$InfosIris->codIris?>
<br/>Libellé : <a title="Consulter le plan d'assemblage de la commune" href="<?=$this->url(array('controller'=>'identite', 'action'=>'iris', 'code'=>$codComIris), null, true)?>" target="_blank"><?=$InfosIris->libIris?></a>
<img title="<?=$InfosIris->typIris?>" style="vertical-align:middle;" src="/themes/default/images/info.gif">
<?php }?>
<?php }?>
</div>
<?php if($this->facade):?>
<?=$this->action('facade', 'identite', null, array('infos' => $this->infos));?>
<?php endif;?>
</div>
</div>

View File

@ -1 +0,0 @@
<img src="/file/image/cache/q/<?php echo $this->name;?>" />

View File

@ -1,16 +0,0 @@
<?php if(!$this->disable):?>
<div id="news">
<h2>Information presse (Source Google News &copy;)</h2>
<div id="paragraph">
<ul>
<?php foreach($this->items as $item):?>
<li style="padding-top:2px;">
<a target="_blank" href="<?=$item->link()?>">
Le <?=$this->NewsDate($item->pubDate())?> - <?=$item->title()?>
</a>
</li>
<?php endforeach;?>
</ul>
</div>
</div>
<?php endif;?>

View File

@ -1,17 +0,0 @@
<?php if ($this->url) {?>
<div id="legende-photo">Cliché à l'approche de l'adresse postale.</div>
<img id="streetview" src="<?=$this->url?>" width="320" height="320" />
<div>
<a class="street-heading" href="<?=$this->url(array(
'controller'=>'identite','action'=>'streetview', 'lat'=>$this->lat, 'lon'=>$this->lon, 'heading'=>$this->pagePrec))?>">&lt;</a>
-
<a class="street-heading" href="<?=$this->url(array(
'controller'=>'identite','action'=>'streetview', 'lat'=>$this->lat, 'lon'=>$this->lon, 'heading'=>$this->pageSuiv))?>">&gt;</a>
</div>
<script>
$('a.street-heading').click(function(e){
e.preventDefault();
$('#infogeo_photo').load($(this).attr('href'));
});
</script>
<?php }?>

View File

@ -1,8 +0,0 @@
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="f">
<li data-role="list-divider">Overview</li>
<li><a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'entreprise'), null, true);?>">Recherche Entreprise</a></li>
<li><a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'dirigeant'), null, true);?>">Recherche Dirigeants</a></li>
<li><a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'actionnaire'), null, true);?>">Recherche Actionnaires</a></li>
<li><a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonce'), null, true);?>">Recherche Annonces</a></li>
<li><a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'entreprise'), null, true);?>">Recherche dans vos surveillances</a></li>
</ul>

View File

@ -1,28 +0,0 @@
<?=$this->doctype()?>
<html>
<head>
<?=$this->headMeta()?>
<?=$this->headTitle()?>
<?=$this->headStyle()?>
<?=$this->headLink()?>
<?=$this->headScript()?>
</head>
<body>
<div data-role="page">
<div data-role="header" role="banner">
<h2 class="ui-title" role="heading" aria-level="1">Extranet</h2>
<a href="#" data-role="button" role="button">Menu</a>
<a href="#" data-role="button" role="button">Search</a>
</div><!-- /header -->
<div role="main" class="ui-content">
<?=$this->layout()->content?>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<h4>Scores & Decisions</h4>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>

View File

@ -1,30 +0,0 @@
<ul class="navigation">
<?php
$html = array();
foreach ($this->container as $page)
{
$html[] = "<li>";
$html[] = "<h3>" . $this->menu()->htmlify($page) . "</h3>" . PHP_EOL;
if (!empty($page->pages))
{
$html[] = "<div>";
$html[] = "<ul>";
foreach ($page->pages as $subpage)
{
$html[] = "<li>";
$href = $subpage->getHref();
$html[] = "<a href=\"{$href}\">";
$html[] = $subpage->getLabel();
$html[] = "</a>";
$html[] = "</li>";
}
$html[] = "</ul>";
$html[] = "</div>";
}
$html[] = "</li>";
}
echo join(PHP_EOL, $html);
?>
</ul>

View File

@ -1,27 +0,0 @@
<?php
$form = $this->form;
?>
<div id="center-recherche">
<div id="recherche">
<h3>RECHERCHE PAR ACTIONNAIRE</h3>
<form class="recherche" name="<?php echo $form->getName()?>"
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
<?php echo $form->type?>
<div class="row"><?php echo $form->siret?></div>
<div class="row"><?php echo $form->actNomRs?></div>
<div class="row"><?php echo $form->cpVille?></div>
<div class="row"><?php echo $form->pays?></div>
<div class="row">
<?php echo $form->pctMin?>
<?php echo $form->pctMax?> %
</div>
<div class="row submit">
<?php echo $form->submit?>
<?php echo $form->reset?>
</div>
</form>
</div>
</div>

View File

@ -1,186 +0,0 @@
<script type="text/javascript">
function formSource(source)
{
var fields = Array( 'bodacc', 'histo', 'date', 'nparution', 'fpage', 'nannonce', 'naffaire', 'txt' );
switch(source)
{
case 'asso':
var field_actif = new Array('date', 'nparution', 'fpage', 'nannonce');
break;
case 'bodacc':
var field_actif = new Array('bodacc', 'histo', 'date', 'nparution', 'fpage', 'nannonce');
break;
case 'balo':
var field_actif = new Array('date', 'nparution', 'fpage', 'naffaire');
break;
}
for (var i=0;i<fields.length;i++) {
$('#'+fields[i]).css('display', 'none');
}
for (var i=0;i<field_actif.length;i++){
$('#'+field_actif[i]).css('display', 'block');
}
}
$(document).ready(function()
{
//Init
formSource($('#sourceSelect').val());
if ($('#histoSelect').prop('checked')) {
$('#txt').css('display','block');
} else {
$('#txt').css('display','none');
}
//Evenement
$('#datepicker').datepicker($.datepicker.regional['fr']);
$('#sourceSelect').change(function(){ formSource($(this).val()); });
$('#histoSelect').click(function(){
if($(this).prop('checked')){ $('#txt').css('display','block');
}else{ $('#txt').css('display','none'); }
});
$('#deselectBodacc').click(function(){
$('input[type=radio][name="formA[bodacc]"]').each(function(){
$(this).prop('checked', false);
});
});
});
</script>
<style type="text/css">
.infoTitle {clear:both; float:left; width:180px; margin-left:30px; padding:0 10px 0 0;}
.infoData {float:left; width:320px; margin:2px 0;}
form {}
form em { color:#FF0000;}
fieldset {border:0; margin:0; padding:0;}
fieldset legend{ padding:0 0 0 10px;}
.fieldgrp{clear:both; width:100%; margin-bottom:.5em; overflow:hidden;}
.fieldgrp:after{content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0; }
.fieldgrp label{ width:150px; font-weight:bold; margin-left:30px; clear:both; padding:0 10px 0 0; line-height:22px; _padding-top:3px; float:left; display:block; font-size:108%;}
.fieldgrp label.inline{ clear:none; margin:0; float:left; display:block; width:auto;}
.fieldgrp label span{font-weight:normal;}
.fieldgrp label abbr{color:#4B911C; font-size:120%; vertical-align:middle;}
.fieldgrp p { clear:both; margin:0 0 0 30px; font-size:12px; }
.field { float:left; padding:0 10px 0 0; line-height:22px; _padding-top:3px;}
.field .longfield{width:215px;}
.field .longfield-select{width:220px;}
.field .smallfield{width:95px;}
.field .medfield{width:110px;}
.field input, .field select{ font-size:110%; margin:2px 0; }
.field input.radio { margin:0 5px; vertical-align:middle; border:none; }
.field input.checkbox { border:none; }
.field span { margin-left:10px; }
.noborder {border:none;}
div.submit{ text-align:center; }
</style>
<div id="center">
<h1>Rechercher une annonce</h1>
<div class="paragraph">
<form name="annonces" method="post" action="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonceliste'))?>">
<input type="hidden" name="formA[type]" value="annonces"/>
<div class="fieldgrp">
<label for="source">Source</label>
<div class="field">
<select id="sourceSelect" name="formA[source]">
<option value="bodacc" <?=(isset($this->recherche['source']) && $this->recherche['source']=='bodacc')? 'selected' : ''?>>BODACC / BORC</option>
<option value="asso" <?=(isset($this->recherche['source']) && $this->recherche['source']=='asso')? 'selected' : ''?>>JO Association</option>
<option value="balo" <?=(isset($this->recherche['source']) && $this->recherche['source']=='balo')? 'selected' : ''?>>BALO</option>
</select>
</div>
</div>
<div id="bodacc" class="fieldgrp">
<label for="bodacc">Bodacc</label>
<div class="field">
<span><input class="radio" type="radio" name="formA[bodacc]" value="a" <?=(isset($this->recherche['bodacc']) && $this->recherche['bodacc']=='a')? 'checked' : ''?>/>A</span>
<span><input class="radio" type="radio" name="formA[bodacc]" value="b" <?=(isset($this->recherche['bodacc']) && $this->recherche['bodacc']=='b')? 'checked' : ''?>/>B</span>
<span><input class="radio" type="radio" name="formA[bodacc]" value="c" <?=(isset($this->recherche['bodacc']) && $this->recherche['bodacc']=='c')? 'checked' : ''?>/>C</span>
<span><a href="#" id="deselectBodacc">Désélection</a></span>
</div>
</div>
<div id="histo" class="fieldgrp">
<label for="histo">Historique jusqu'à 1953</label>
<div class="field">
<input class="checkbox" type="checkbox" id="histoSelect" name="formA[histo]" <?=(isset($this->recherche['histo']) && $this->recherche['histo']=='on')? 'checked' : ''?>/>
</div>
</div>
<div id="date" class="fieldgrp">
<label for="annee">Année</label>
<div class="field">
<input type="text" name="formA[annee]" size="4" maxlength="4" value="<?=$this->recherche['annee']?>"/>
</div>
<label class="inline" for="dateparution">ou Date de parution</label>
<div class="field">
<input id="datepicker" type="text" name="formA[dateparution]" size="10" maxlength="10" value="<?=$this->recherche['dateparution']?>"/>
</div>
</div>
<div id="nparution" class="fieldgrp">
<label for="nparution">Numéro de parution</label>
<div class="field">
<input type="text" name="formA[nparution]" size="10" maxlength="10" value="<?=$this->recherche['nparution']?>"/>
</div>
</div>
<div id="fpage" class="fieldgrp">
<label for="page">Page</label>
<div class="field">
<input type="text" name="formA[bpage]" size="10" maxlength="10" value="<?=$this->recherche['bpage']?>"/>
</div>
</div>
<div id="nannonce" class="fieldgrp">
<label for="nannonce">Numéro d'annonce</label>
<div class="field">
<input type="text" name="formA[nannonce]" size="10" maxlength="10" value="<?=$this->recherche['nannonce']?>"/>
</div>
</div>
<div id="naffaire" class="fieldgrp">
<label for="naffaire">Numéro d'affaire</label>
<div class="field">
<input type="text" name="formA[naffaire]" size="10" maxlength="10" value="<?=$this->recherche['naffaire']?>"/>
</div>
</div>
<div id="txt" class="fieldgrp">
<label for="txt">Recherche</label>
<div class="field">
<input type="text" name="formA[txt]" size="55" maxlength="2048" value="<?
if (isset($this->recherche['txt'])) {
print htmlspecialchars($this->recherche['txt']);
}
?>"/>
</div>
<p>
<b><u>Attention :</u></b>
Ce formulaire de recherche permet de rechercher dans les pages entières du BORC, BODAC et BODACC telles qu'elles ont été numérisées par Scores & Décisions.
Cette recherche permet de rechercher des annonces dans des pages jusqu'à l'année de parution <b>1953</b>.
</p>
<p>&nbsp;</p>
<p><u>Opérateurs et méthodes de recherche :</u></p>
<p>Opérateur OU, <b>|</b> (ex: <b>societe | ville</b>)</p>
<p>Exclure des termes, <b>-</b> ou <b>!</b> (ex: <b>societe -ville</b> ou <b>societe !ville</b>)</p>
<p>Phrase (ex: <b>"boulangerie dupain"</b>)</p>
<p>Recherche de proximité (ex: <b>"boulangerie plantes"$50</b> , recherche d'une boulangerie dans rue des plantes )</p>
<p>Ordre de recherche (ex: <b>boulangerie << dupain</b> , recherche du mot "boulangerie" puis du mot "dupain") </p>
</div>
<div class="submit">
<p><input type="submit" name="submit" value="Ok"/></p>
</div>
</form>
</div>
</div>

View File

@ -1,148 +0,0 @@
<div id="center">
<?php if ($this->histo == 'on'){?>
<h1 class="titre">RECHERCHE ANNONCES L&Eacute;GALES HISTORIQUE</h1>
<div class="paragraph">
<style type="text/css">
ol li { margin-bottom:10px; }
</style>
<?php if($this->p>=200) {?>
<p>Merci d'affiner votre recherche.</p>
<?php } ?>
<?php if ( $this->nbReponses==0) { ?>
<p class="StyleInfoLib">
Pas de r&eacute;sultat affich&eacute; avec le(s) crit&egrave;re(s)
<a title="Retour au formulaire de recherche" href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonce'), null, true)?>">
<?=$this->strCriteres?></a>
</p>
<?php } else { ?>
<p class="StyleInfoLib">
<?=$this->nbReponsesTotal?> r&eacute;ponses. avec les critères <a title="Retour au formulaire de recherche" href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonce'))?>">
<?=$this->strCriteres?>
</a>
<?php
if ( $this->p+$this->userNbReponses<$this->nbReponsesTotal )
{
$totPage = ceil($this->nbReponsesTotal/$this->userNbReponses);
$curPage = ceil($this->p/$this->userNbReponses)+1;
?>
<?=$this->nbReponses?> r&eacute;sultats affich&eacute;s. Page <?=$curPage?>/<?=$totPage?>.
<?php
$prec = $this->p-$this->userNbReponses;
$suiv = $this->p+$this->userNbReponses;
}
elseif( $this->p+$this->userNbReponses>=$this->nbReponsesTotal )
{
$totPage = ceil($this->nbReponsesTotal/$this->userNbReponses);
$curPage = $totPage;
?>
<?=$this->nbReponses?> r&eacute;sultats affich&eacute;s. Page <?=$curPage?>/<?=$totPage?>.
<?php
$prec = $this->p-$this->userNbReponses;
$suiv = $this->p+$this->userNbReponses;
}
else
{
$totPage = $curPage = 1;
}
echo '</p>';
?>
<ol>
<?php
$indice = 0;
foreach( $this->infos as $info )
{
$indice++;
?>
<li type="1" value="<?=$this->p+$indice?>">
<?php
$texte = $info->Texte;
foreach( $this->mots as $mot ){ $texte = preg_replace('/'.$mot.'/i', '<b>'.strtoupper($mot).'</b>', $texte);}
if( substr($info->Code,0,3)=='BOD' )
{
print '<u>BODACC :</u> '.substr($info->Code,3,1);
}
print '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
print '<u>Année :</u> '.$info->Annee;
print '<br/>';
print '...&nbsp;'.$texte.'&nbsp;...';
print '<br/>';
print '<a href="'.$info->Fichier.$this->authinfo.'" target="_blank">Télécharger la page en PDF</a>';
?>
</li>
<?php
}
?>
</ol>
<?php
//Page précédentes
if($curPage>1) {?>
<a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonceliste', 'p'=>$prec, 'token'=>$this->token))?>">Page précédente</a>
<?php } ?>
<< Page : <?=$curPage.'/'.$totPage?> >>
<?php
//Page suivante
if ($curPage<$totPage) { ?>
<a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonceliste', 'p'=>$suiv, 'token'=>$this->token))?>">Page suivante</a>
<?php } ?>
<?php
}
?>
</div>
<?php } else {?>
<h1 class="titre">RECHERCHE ANNONCES L&Eacute;GALES</h1>
<div class="paragraph">
<?php
if ( $this->nbReponses==0)
{
?>
<p class="StyleInfoLib">
Pas de r&eacute;sultat affich&eacute; avec le(s) crit&egrave;re(s)
<a title="Retour au formulaire de recherche" href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonce'), null, true)?>">
<?=$this->strCriteres?></a>
</p>
<?php
}
else
{
//Affichage des critères de recherche
?>
<div class="blockh2">
<p class="StyleInfoLib">Critères de recherche
<a title="Retour au formulaire de recherche" href="<?=$this->url(array('controller'=>'recherche', 'action'=>'annonce', null, true))?>">
<?=$this->strCriteres?></a></p>
<div id="annonce">
<?php
//Affichage des données
foreach( $this->infos as $info )
{
$texte = $this->RemplaceSiren($info->Annonce);
if(substr($this->criteres->source, 0, 3) == 'BOD' ){
$date = new Zend_Date($info->Date_Parution, 'yyyy-MM-dd');
?>
Source BODACC n°<?=$info->Num_Parution?> <?=substr($this->criteres->source, 3, 1)?> du <?=$date->toString('dd/MM/yyyy')?>.
<?php
}
?>
Département n°<?=$info->Departement?>. <?=$info->Tribunal_Code?>
<br/><br/>
<code><?=$texte?></code><br/>
<?php
}
?>
</div>
</div>
<?php }?>
</div>
<?php }?>
</div>

View File

@ -1,26 +0,0 @@
<?php
$form = $this->form;
?>
<div id="center-recherche">
<div id="recherche">
<h3>RECHERCHE DIRIGEANT</h3>
<form class="recherche" name="<?php echo $form->getName()?>"
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
<?php echo $form->type?>
<div class="row"><?php echo $form->dirNom?></div>
<div class="row"><?php echo $form->dirPrenom?></div>
<div class="row">
<?php echo $form->dirDateNaissJJ?>
<?php echo $form->dirDateNaissMM?>
<?php echo $form->dirDateNaissAAAA?>
</div>
<div class="row"><?php echo $form->dirCpVille?></div>
<div class="row submit">
<?php echo $form->submit?>
<?php echo $form->reset?>
</div>
</form>
</div>
</div>

View File

@ -1,51 +0,0 @@
<div id="center">
<h2>DEMANDE D'INVESTIGATION</h2>
<?php
if ($this->form) {
$form = $this->form;
?>
<div class="paragraph">
<p class="StyleInfoLib"><i>Les demandes d'investigations sont liées à la recherche d'un tiers par nos services suite à une recherche infructueuse sur nos outils</i></p>
<p class="StyleInfoLib"><i>La demande d'investigation est destinée uniquement à l'identification rigoureuse d'un tiers. Tout autre demande (commande de pièces officielles, Kbis ou Privilèges) ne sera pas traitée par nos équipes.</i></p>
</div>
<div class="paragraph">
<form class="recherche" name="<?php echo $form->getName()?>"
method="<?php echo $form->getMethod()?>" action="<?php echo $form->getAction()?>">
<div class="row"><?php echo $form->siret?></div>
<div class="row"><?php echo $form->raisonSociale?></div>
<div class="row"><?php echo $form->adresse?></div>
<div class="row"><?php echo $form->cpVille?></div>
<div class="row"><?php echo $form->telFax?></div>
<div class="row"><?php echo $form->categorieJur?></div>
<div class="row"><?php echo $form->remarque?></div>
<hr style="clear:both;"/>
<div class="row"><?php echo $form->email?></div>
<div class="row">
<p><i><font color="red">*</font> : Pour qu'une demande d'investigation soit recevable, il est obligatoire d'indiquer la D&eacute;nomination sociale et la ville de l'entit&eacute; recherch&eacute;e ainsi qu'un commentaire relatif au motif de la demande d'investigation.</i></p>
</div>
<div class="row submit"><?php echo $form->submit?></div>
</form>
<?php
} else {
?>
<div class="paragraph">
<table>
<tr>
<td width="10">&nbsp;</td>
<td valign="top" width="570"><br/><p class="StyleInfoLib">Votre demande a bien &eacute;t&eacute; prise en compte et sera trait&eacute;e par notre &eacute;quipe enqu&ecirc;te dans les meilleurs d&eacute;lais.<br/><br/>
<a href="<?=$this->url(array(
'controller' => 'recherche',
'action' => 'entreprise',
))?>">Cliquez-ici pour revenir &agrave; l'&eacute;cran de recherche.</a></p></td>
</tr>
</table>
</div>
<?php } ?>
</div>

View File

@ -1,44 +0,0 @@
<div id="center-recherche">
<div id="recherche">
<?php if (!empty($this->message)){ ?>
<div style="padding:0.7em;" class="ui-state-error ui-corner-all">
<p><span style="float: left; margin-right: 0.3em;" class="ui-icon ui-icon-alert"></span>
<?=$this->message?></p>
</div>
<?php }?>
<form class="recherche" name="<?=$this->form->getName()?>"
method="<?=$this->form->getMethod()?>" action="<?=$this->form->getAction()?>">
<?=$this->form->type?>
<div data-role="fieldcontain">
<?=$this->form->siret?>
</div>
<div data-role="fieldcontain">
<?=$this->form->raisonSociale?>
</div>
<div data-role="fieldcontain">
<?=$this->form->numero?>
</div>
<div data-role="fieldcontain">
<?=$this->form->voie?>
</div>
<div data-role="fieldcontain">
<?=$this->form->cpVille?>
</div>
<div data-role="fieldcontain">
<?=$this->form->telFax?>
</div>
<div data-role="fieldcontain">
<?=$this->form->naf?>
</div>
<?php if ($this->form->pays) {?>
<div data-role="fieldcontain">
<?=$this->form->pays?>
</div>
<?php }?>
<div data-role="fieldcontain">
<?=$this->form->submit?>
<?=$this->form->reset?>
</div>
</form>
</div>
</div>

View File

@ -1,130 +0,0 @@
<div id="center">
<h1>LISTE DE VOS DERNI&Egrave;RES RECHERCHE</h1>
<?php if (count($this->historique)>0) {?>
<div class="paragraph">
<ul class="derniereRecherche">
<?php foreach($this->historique as $histo) {?>
<li>
<?php
switch($histo['type'])
{
//Affichage recherche entreprise
case 'ent':
?>
<p>RECHERCHE ENTREPRISE :</p>
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
<?php if (!empty($histo['params']['raisonSociale'])) {?>Dénomination Sociale : <?=$histo['params']['raisonSociale']?><br/><?php } ?>
<?php if (!empty($histo['params']['numero'])) {?>Numero : <?=$histo['params']['numero']?><br/><?php } ?>
<?php if (!empty($histo['params']['voie'])) {?>Voie : <?=$histo['params']['voie']?><br/><?php } ?>
<?php if (!empty($histo['params']['cpVille'])) {?>Code Postal / Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
<?php if (!empty($histo['params']['telFax'])) {?>Téléphone / Fax : <?=$histo['params']['telFax']?><br/><?php } ?>
<?php if (!empty($histo['params']['naf'])) {?>Naf : <?=$histo['params']['naf']?><br/><?php } ?>
<?php if (!empty($histo['params']['pays'])) {?>Pays : <?=$histo['params']['pays']?><br/><?php } ?>
<?php if (isset($histo['consult'])) {?>
<a href="<?=$this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $histo['consult']['siret'],
'id' => $histo['consult']['id'],
))?>">Afficher la fiche identite consulter</a>
<?php }?>
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'liste'),
array_merge($histo['params'], array('type'=>$histo['type'])))
)?>">Lancer la recherche</a>
-
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'entreprise'),
$histo['params'])
)?>">Afficher le formulaire</a>
<?php
break;
//Affichage recherche dirigeant
case 'dir':
?>
<p>RECHERCHE DIRIGEANT :</p>
<?php if (!empty($histo['params']['dirNom'])) {?>Nom : <?=$histo['params']['dirNom']?><br/><?php } ?>
<?php if (!empty($histo['params']['dirPrenom'])) {?>Prenom : <?=$histo['params']['dirPrenom']?><br/><?php } ?>
<?php if (!empty($histo['params']['dirDateNaissJJ']) || !empty($histo['params']['dirDateNaissMM']) || !empty($histo['params']['dirDateNaissAAAA']) ){ ?>
Date de naissance : <?=$histo['params']['dirDateNaissJJ']?>/<?=$histo['params']['dirDateNaissMM']?>/<?=$histo['params']['dirDateNaissAAAA']?><br/>
<?php }?>
<?php if (!empty($histo['params']['dirCpVille'])) {?>Code Postal / Ville de naissance : <?=$histo['params']['dirCpVille']?><br/><?php } ?>
<?php if (isset($histo['consult'])) {?>
<a href="<?=$this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $histo['consult']['siret'],
'id' => $histo['consult']['id'],
))?>">Afficher la fiche identite consulter</a>
<?php }?>
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'liste'),
array_merge($histo['params'], array('type'=>$histo['type'])))
)?>">Lancer la recherche</a>
-
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'dirigeant'),
$histo['params'])
)?>">Afficher le formulaire</a>
<?php
break;
//Affichage recherche actionnaire
case 'act':
?>
<p>RECHERCHE ACTIONNAIRE :</p>
<?php if (!empty($histo['params']['siret'])) {?>SIRET : <?=$histo['params']['siret']?><br/><?php } ?>
<?php if (!empty($histo['params']['actNomRs'])) {?>Dénomination Sociale / Nom : <?=$histo['params']['actNomRs']?><br/><?php } ?>
<?php if (!empty($histo['params']['cpVille'])) {?>CP /Ville : <?=$histo['params']['cpVille']?><br/><?php } ?>
<?php if (!empty($histo['params']['pays'])) {?>Pays : <?=$histo['params']['pays']?><br/><?php } ?>
<?php if (empty($histo['params']['pctMin'])) {?>de 0 %<?=$histo['params']['actNomRs']?><?php } ?>
<?php if (!empty($histo['params']['pctMin'])) {?>de <?=$histo['params']['actNomRs']?><?php } ?>
<?php if (empty($histo['params']['pctMax'])) {?>, à 100 %<br/><?php } ?>
<?php if (!empty($histo['params']['pctMax'])) {?>, à <?=$histo['params']['actNomRs']?><br/><?php } ?>
<?php if (isset($histo['consult'])) {?>
<a href="<?=$this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $histo['consult']['siret'],
'id' => $histo['consult']['id'],
))?>">Afficher la fiche identite consulter</a>
<?php }?>
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'liste'),
array_merge($histo['params'], array('type'=>$histo['type'])))
)?>">Lancer la recherche</a>
-
<a href="<?=$this->url(array_merge(
array('controller' => 'recherche', 'action' => 'actionnaire'),
$histo['params'])
)?>">Afficher le formulaire</a>
<?php
break;
case 'annonce':
default: break;
}
?>
</li>
<?php }?>
</ul>
</div>
<?php } else {?>
<div class="paragraph">
Aucune recherche enregistrée.
</div>
<?php }?>
</div>

View File

@ -1,99 +0,0 @@
<div id="center">
<div id="recherche-info">
<p class="StyleInfoLib">
<?=$this->nbReponsesTotal?> r&eacute;ponse<?php if ($this->nbReponsesTotal>1){?>s<?php }?>
avec les crit&egrave;res "<a href="<?php echo $this->criteresLien?>">
<?=$this->criteresTexte?></a>".
<?php if ($this->totPage!=1) {?>
<?=$this->nbReponses?> r&eacute;sultats affich&eacute;s.
Page <?php echo $this->curPage.'/'.$this->totPage.'.';?>
<?php }?>
</p>
</div>
<?php
if (!empty($this->info)) {
?>
<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>
<?php echo $this->info?></p>
</div>
<?php }?>
<ol>
<?php
foreach ( $this->liste as $item ) {
?>
<li style="list-style-type:decimal;" class="StyleInfoData" type="1" value="<?=$item['position']?>">
<b><a title="Voir la fiche d'identité de cet établissement" href="<?=$this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'id' => $item['id'],
'siret' => $item['siret']
), null, true);
?>"><?=$item['InfoNom']?></a></b><br/>
<?=$item['InfoNomDetail']?>
<b>RCS <?=$item['InfoSiret']?></b>
<br/>
<b><?=$item['InfoEtab']?></b><br/>
<?=$item['InfoAdresse']?><br/>
<?=$item['InfoForme']?>
<?=$item['InfoActivite']?>
<?php if (isset($item['InfoDirigeant'])) { ?>
<?=$item['InfoDirigeant']?>
<?php } elseif(isset($item['InfoActionnaire'])) {?>
<?=$item['InfoActionnaire']?>
<?php }?>
<?php if (isset($item['lien']) && count($item['lien'])>0){?>
<br/> Liens : <?php foreach($item['lien'] as $lien){?>
<a href="<?=$lien['href']?>"><?=$lien['title']?></a>
<?php }?>
<?php }?>
</li>
<?php }?>
</ol>
<div id="recherche-page">
<?php if ($this->curPage>1) { ?>
<a href="<?=$this->url(array('action'=>'liste', 'page'=>$this->curPage-1, 'token'=> $this->token))?>" title="Page précédente...">
<img src="/themes/default/images/boutton_precedent_off.gif" />
</a>
<?
}
if ($this->curPage!=$this->totPage) {
?>
<span>Page <?=$this->curPage?>/<?=$this->totPage?></span>
<?php
}
if ($this->curPage<$this->totPage) {
?>
<a href="<?=$this->url(array('action'=>'liste', 'page'=>$this->curPage+1, 'token'=> $this->token))?>" title="Page suivante...">
<img src="/themes/default/images/boutton_suivant_off.gif" />
</a>
<?php }?>
</div>
<br/>
<?php if ($this->rechCsv) { ?>
<p class="StyleInfoLib">
<a href="<?=$this->url(array('controller'=>'recherche', 'action'=>'csv'), null, true)?>" target="_blank">
Exporter les résultas de la recherche en CSV.</a>
</p>
<?php } ?>
<?php if ($this->blockDirToEntreprise){ ?>
<p class="StyleInfoLib">
Effectuer une recherche entreprise avec les paramètres "<a href="<?=$this->searchDirToEntrepriseLien?>">
<?=$this->searchDirToEntrepriseTxt?></a>"
</p>
<?php }?>
<?php if ($this->blockInvestig) { ?>
<p class="StyleInfoLib">
Si aucun r&eacute;sultat ne correspond &agrave; votre recherche.
<a href="<?=$this->url(array('controller'=>'recherche','action'=>'enquete'), null, true)?>">Cliquez-ici.</a>
</p>
<?php }?>
</div>

View File

@ -1,10 +0,0 @@
<h3 style="color:#ffffff;font-size:medium;font-weight:bold;">RECHERCHE SURVEILLANCE</h3>
<form class="recherche" name="refclient" method="post" action="<?=$this->url(array(
'controller'=>'recherche', 'action'=>'refclientliste'), null, true)?>">
<input type="hidden" name="type" value="refclient" />
<div class="row">
<label style="font-size:1.1em;padding: 0.4em 5px 0.4em 0;">Référence client</label>
<input type="text" name="ref" value="" style="font-size:1.1em;padding: 0.4em 1em;" />
<input class="button" type="submit" name="submit" value="Rechercher" />
</div>
</form>

View File

@ -1,90 +0,0 @@
<div id="center">
<div id="recherche-info">
<p class="StyleInfoLib">
<?=$this->nbReponsesTotal?> r&eacute;ponse<?php if ($this->nbReponsesTotal>1){?>s<?php }?> -
<?php if ($this->totPage!=1) {?>
<?=$this->nbReponses?> r&eacute;sultats affich&eacute;s.
Page <?=$this->curPage.'/'.$this->totPage.'.'?>
<?php }?>
</p>
</div>
<?php if (count($this->liste)>0) {?>
<ol>
<?php foreach ( $this->liste as $item ) {?>
<li style="list-style-type:decimal;" class="StyleInfoData" type="1" value="<?=$item['position']?>">
<span>
<b><a title="Voir la fiche d'identité de cet établissement" href="<?=$this->url(array(
'controller' => 'identite',
'action' => 'fiche',
'siret' => $item['siret']
));
?>"><?=$item['InfoNom']?></a></b>
</span>
<?php if ( $this->login == $item['login']) { ?>
<span style="position:relative;float:right;right:50px;top:20px;">
<a class="supprSurveillance" href="<?=$this->url(array(
'controller' => 'surveillance',
'action' => 'supprimer',
'from' => 'recherche',
'siret' => $item['siret'],
'email' => $item['email'],
'login' => $item['login'],
'ref' => $item['ref'],
'source' => $item['source'],
), null, true)?>" alt="Supprimer la surveillance">
<img src="/themes/default/images/interfaces/supprimer.png" width="16px" height="16px"
title="Supprimer la surveillance" style="vertical-align:middle;">
Supprimer la surveillance <?=$item['source']?>
</a>
</span>
<?php }?>
<br/>
<?=$item['InfoNomDetail']?>
<b>RCS <?=$item['InfoSiret']?></b>
<br/>
<b><?=$item['InfoEtab']?></b><br/>
<?=$item['InfoAdresse']?><br/>
<?=$item['InfoForme']?>
<?=$item['InfoActivite']?>
Ajouté le <?=$item['dateAjout']?>
<?php if (!empty($item['dateEnvoi'])){?>, Dernière information envoyée le <?=$item['dateEnvoi']?> <?php }?>
<br/>
Type de la surveillance : <?=$item['source']?>, <u>Référence :</u> <b><?=$item['ref']?></b><br/>
</li>
<?php }?>
</ol>
<?php } else { ?>
<p>Aucunes surveillances n'a pu être trouvé.</p>
<?php }?>
<div id="recherche-page">
<?php
if ($this->curPage>1) {
?>
<a href="<?=$this->url(array('action'=>'liste', 'page'=>$this->curPage-1))?>" title="Page précédente...">
<img class="recherchePrec" src="/themes/default/images/boutton_precedent_off.gif" />
</a>
<?
}
if ($this->curPage!=$this->totPage) {
?>
<span>Page <?=$this->curPage?>/<?=$this->totPage?></span>
<?php
}
if ($this->curPage<$this->totPage) {
?>
<a href="<?=$this->url(array('action'=>'liste', 'page'=>$this->curPage+1, 'token'=>$this->token))?>" title="Page suivante...">
<img class="rechercheSuiv" src="/themes/default/images/boutton_suivant_off.gif" />
</a>
<?php }?>
</div>
<br/>
</div>