90 lines
2.5 KiB
PHTML
90 lines
2.5 KiB
PHTML
<?php if ( !$this->profil ) {?>
|
|
Aucun profil d'enrichissement, Merci de prendre contact avec le service commercial.
|
|
<?php }elseif ( empty($this->id) ) {?>
|
|
Erreur
|
|
<?php } elseif ($this->resultat>50000) {?>
|
|
<p>Le nombre de lignes à enrichir est trop important.
|
|
Vous pouvez prendre contact avec le service commercial en cliquant ici.
|
|
Vos critères seront enregistrées et une référence vous sera fourni.</p>
|
|
<?php } else {?>
|
|
<div id="update">
|
|
<style>
|
|
#enrichissement
|
|
{
|
|
width:100%;
|
|
}
|
|
|
|
#enrichissement th
|
|
{
|
|
font-weight:800;
|
|
}
|
|
|
|
#enrichissement td, th
|
|
{
|
|
padding:5px;
|
|
border-left:1px solid black;
|
|
}
|
|
#enrichissement tr
|
|
{
|
|
font-size:10px;
|
|
border:1px solid silver;
|
|
}
|
|
</style>
|
|
<p style="text-align:center;color:green">Votre ciblage a été actualisé</p>
|
|
<table id="enrichissement">
|
|
<tr>
|
|
<th>Référence de commande</th><th><?=$this->ref?></th>
|
|
</tr>
|
|
<tr><td>Nombre d'unités</td><td><?=number_format($this->resultat, 0, ',', ' ')?></td></tr>
|
|
<tr><td>Nombre d'unités Insee</td><td><?=number_format($this->uniteInsee, 0, ',', ' ')?></td></tr>
|
|
<tr><td>Prix du fichier</td><td><?=number_format($this->prix, 2, ',', ' ')?> €</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Redevance Insee</td>
|
|
<td><?=number_format($this->prixInsee, 2, ',', ' ')?> €</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><div id="progress"></div></td>
|
|
</tr>
|
|
</table>
|
|
<?php if (!empty($this->infoInsee)) {?>
|
|
<br/>
|
|
<p><?=$this->infoInsee?></p>
|
|
<?php }?>
|
|
<br/>
|
|
<div style="font-size:10px;padding:5px; border:1px dashed green">
|
|
Les tarifs sont données à titre indicatif et peuvent variées suivant les spécificités de votre compte.
|
|
</div>
|
|
<br/>
|
|
<div style="font-size:10px;padding:5px; border:1px dashed green">
|
|
Les informations permettant l'enrichissement seront enregistrées, après la saisie de votre référence.
|
|
</div>
|
|
|
|
<form name="commande" method="post" action="<?=$this->url(array('controller'=>'enrichissement', 'action'=>'commande'))?>">
|
|
<input type="hidden" name="id" value="<?=$this->id?>" />
|
|
<input type="hidden" type="text" value="<?=$this->ref?>" name="ref">
|
|
</form>
|
|
|
|
<script>
|
|
$('#dialog').dialog({ buttons: [ {
|
|
text: "Commander",
|
|
click: function() {
|
|
$('div#progress').html('<br /><center><img src="/themes/default/images/ajax_loader.gif" /></center>');
|
|
$('#cache').css('display', 'none');
|
|
$.post(
|
|
$('form[name=commande]').attr('action'),
|
|
$('form[name=commande]').serialize(),
|
|
function(data){
|
|
$('div#update').html(data);
|
|
});
|
|
}
|
|
},
|
|
{
|
|
text: "Quitter",
|
|
click: function() { $(this).dialog("close"); }
|
|
}
|
|
] });
|
|
</script>
|
|
</div>
|
|
<?php }?>
|