HTML et Javacript
This commit is contained in:
parent
54c828c7ff
commit
537340d274
@ -24,9 +24,9 @@ Liste de vos ciblages
|
||||
<?php foreach($this->ciblages as $item):?>
|
||||
<tr>
|
||||
<td class="reference"><?=$item['reference']?></td>
|
||||
<td class="resultat"><?=number_format($item['resultat'], 0, ',', ' ')?></td>
|
||||
<td class="insee"><?=number_format($item['uniteInsee'], 0, ',', ' ')?></td>
|
||||
<td class="date"><?=$item['dateComptage']?></td>
|
||||
<td class="update resultat"><?=number_format($item['resultat'], 0, ',', ' ')?></td>
|
||||
<td class="update insee"><?=number_format($item['uniteInsee'], 0, ',', ' ')?></td>
|
||||
<td class="update date"><?=$item['dateComptage']?></td>
|
||||
<td><a class="update" href="<?=$this->url(array('controller'=> 'comptage','action'=>'update', 'id'=>$item['id']))?>">Actualiser</a></td>
|
||||
<td><a href="<?=$this->url(array('controller'=> 'index','action'=>'index', 'id'=>$item['id']))?>">Recharger les critères de ciblage</a></td>
|
||||
<td><a href="<?=$this->url(array('controller'=> 'dashboard','action'=>'ciblagedetail', 'id'=>$item['id']))?>">Detail</a></td>
|
||||
|
@ -34,9 +34,9 @@
|
||||
<?php foreach($this->comptages as $name => $item):?>
|
||||
<tr>
|
||||
<td class="reference"><?=$item['reference']?></td>
|
||||
<td class="resultat"><?=number_format($item['resultat'], 0, ',', ' ')?></td>
|
||||
<td class="insee"><?=number_format($item['uniteInsee'], 0, ',', ' ')?></td>
|
||||
<td class="date"><?=$item['dateComptage']?></td>
|
||||
<td class="update resultat"><?=number_format($item['resultat'], 0, ',', ' ')?></td>
|
||||
<td class="update insee"><?=number_format($item['uniteInsee'], 0, ',', ' ')?></td>
|
||||
<td class="update date"><?=$item['dateComptage']?></td>
|
||||
<td><a class="update" href="<?=$this->url(array('controller'=> 'comptage','action'=>'update', 'id'=>$item['id']))?>">Actualiser</a></td>
|
||||
<td><a href="<?=$this->url(array('controller'=> 'index','action'=>'index', 'id'=>$item['id']))?>">Recharger les critères de ciblage</a></td>
|
||||
<td><a href="<?=$this->url(array('controller'=> 'dashboard','action'=>'ciblagedetail', 'id'=>$item['id']))?>">Detail</a></td>
|
||||
|
@ -1,8 +1,27 @@
|
||||
<?php if ( 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 {?>
|
||||
<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)
|
||||
ou forfait.
|
||||
</p>
|
||||
<br/>
|
||||
<p>
|
||||
Les informations permettant l'enrichissement seront enregistrées, après la saisie de votre référence.
|
||||
</p>
|
||||
<br/>
|
||||
<form>
|
||||
<input type="hidden" name="id" value="" />
|
||||
<input type="hidden" name="id" value="<?=$this->id?>" />
|
||||
<label>Référence : </label><input type="text" name="ref">
|
||||
</form>
|
||||
<script>
|
||||
|
||||
</script>
|
||||
<?php }?>
|
@ -13,23 +13,17 @@ $(document).ready(function(){
|
||||
}
|
||||
});
|
||||
|
||||
$(".tooltip").click(function(){
|
||||
var id = $(this).attr('id');
|
||||
var date = $('#ch_'+id).html();
|
||||
$('#ch_'+id).html('<img src="/themes/default/images/ajax.gif" />');
|
||||
$.ajax({
|
||||
type : "GET",
|
||||
cache : false,
|
||||
url : 'dashboard/ciblagedetail/id/'+id,
|
||||
data : $(this).serializeArray(),
|
||||
success: function(data) {
|
||||
$('#ch_'+id).html(date);
|
||||
$('.previsualisation').html(data);
|
||||
}
|
||||
});
|
||||
$("a.update").click(function(){
|
||||
var href = $(this).attr('href');
|
||||
$(this).parent().parent().find('td.update').html('<img src="/themes/default/images/ajax.gif" />');
|
||||
$.getJSON(href, function(data){
|
||||
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$('#enrichissementref').on('click', function(){
|
||||
$('a.enrichissementref').on('click', function(){
|
||||
var title = "Commande d'un enrichissment";
|
||||
var href = $(this).attr('href');
|
||||
var dialogOpts = {
|
||||
|
Loading…
Reference in New Issue
Block a user