modification de l'enrichissement + recomptage (actualisation du comptage) et rapelle des criteres
This commit is contained in:
parent
27438be586
commit
3993257e59
@ -8,31 +8,83 @@ 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">
|
||||
<p>Votre ciblage a été actualisé</p>
|
||||
<p>
|
||||
Nombre d'unités : <?=$this->resultat?><br/>
|
||||
Nombre d'unités Insee : <?=$this->uniteInsee?><br/>
|
||||
<strong>Prix du fichier : <?=$this->prix?></strong> € (dont <?=$this->prixInsee?> € de redevance Insee)
|
||||
</p>
|
||||
<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><br />
|
||||
<table id="enrichissement">
|
||||
<tr>
|
||||
<th>Libellé</th>
|
||||
<th><?php echo $this->oldDate;?></th>
|
||||
<th><?php echo date('Y-m-d');?></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nombre d'unités</td>
|
||||
<td><?php echo $this->oldResult;?></td>
|
||||
<td><?php echo $this->resultat;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Nombre d'unités Insee</td>
|
||||
<td><?php echo $this->oldResultInsee;?></td>
|
||||
<td><?php echo $this->uniteInsee;?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Prix du fichier</td>
|
||||
<td><?php echo $this->oldPrice?> €</td>
|
||||
<td><?php echo $this->prix;?> €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Redevance Insee</td>
|
||||
<td><?php echo $this->oldPriceInsee?> €</td>
|
||||
<td><?php echo $this->prixInsee;?> €</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Tapez votre référence</b></td>
|
||||
<td colspan="2">
|
||||
<form name="commande" method="post" action="<?=$this->url(array('controller'=>'enrichissement', 'action'=>'commande'))?>">
|
||||
<input type="hidden" name="id" value="<?=$this->id?>" /><input type="text" name="ref">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<?php if (!empty($this->infoInsee)) {?>
|
||||
<br/>
|
||||
<p><?=$this->infoInsee?></p>
|
||||
<?php }?>
|
||||
<br/>
|
||||
<p>Les tarifs sont données à titre indicatif et peuvent variées suivant les spécificités de votre compte.</p>
|
||||
<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/>
|
||||
<p>
|
||||
Les informations permettant l'enrichissement seront enregistrées, après la saisie de votre référence.
|
||||
</p>
|
||||
<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>
|
||||
<br/>
|
||||
<form name="commande" method="post" action="<?=$this->url(array('controller'=>'enrichissement', 'action'=>'commande'))?>">
|
||||
<input type="hidden" name="id" value="<?=$this->id?>" />
|
||||
<label>Référence : </label><input type="text" name="ref">
|
||||
</form>
|
||||
<div id="progress" ></div>
|
||||
<script>
|
||||
$('#dialog').dialog({ buttons: [ {
|
||||
text: "Valider",
|
||||
click: function() {
|
||||
$('div#progress').html('<br /><center><img src="/themes/default/images/ajax-loader.gif" /></center>');
|
||||
$.post(
|
||||
$('form[name=commande]').attr('action'),
|
||||
$('form[name=commande]').serialize(),
|
||||
|
Loading…
Reference in New Issue
Block a user