Mise à jour pour le passage d'une commande

This commit is contained in:
Michael RICOIS 2015-04-14 09:39:55 +00:00
parent 0e976bdb08
commit 3eabd646fc
6 changed files with 79 additions and 108 deletions

View File

@ -97,8 +97,7 @@ class EnrichissementController extends Zend_Controller_Action
$user = $auth->getIdentity();
//Récupération des SIRET
require_once 'Scores/Ciblage.php';
$ciblage = new Ciblage($structure, $user->globalRNCS);
$ciblage = new Scores_Ciblage_Engine($structure, $user->globalRNCS);
$infosExtraction = $ciblage->execute(true);
@ -198,8 +197,7 @@ class EnrichissementController extends Zend_Controller_Action
$date = $date[0];
if($date != '0000-00-00' && $date != date('Y-m-d')) {
require_once 'Scores/Ciblage.php';
$count = new Ciblage($criteresValue);
$count = new Scores_Ciblage_Engine($criteresValue, $user->globalRNCS);
$item['resultat'] = $count->execute();
$item['uniteInsee'] = $count->calculRedevanceInsee();
}
@ -264,10 +262,10 @@ class EnrichissementController extends Zend_Controller_Action
try {
$commandesM = new Application_Model_CiblageEnrichissementIdentifiants();
$sql = $commandesM->select()->setIntegrityCheck(false)
->from( array('commande' => 'enrichissement_identifiants'), array('id'))
->join( array('critere' => 'ciblage_criteres'), 'critere.id = commande.idCriteres', array())
->where("dateAdded BETWEEN '".$dateBegin."' AND '".$dateEnd."'")
->where('idClient = ?', $user->idClient);
->from( array('commande' => 'enrichissement_identifiants'), array('id'))
->join( array('critere' => 'ciblage_criteres'), 'critere.id = commande.idCriteres', array())
->where("dateAdded BETWEEN '".$dateBegin."' AND '".$dateEnd."'")
->where('idClient = ?', $user->idClient);
$result = $commandesM->fetchAll($sql);
} catch (Zend_Db_Exception $e) {
echo "Erreur."; /*echo $sql->__toString();*/ exit;

View File

@ -1,12 +1,12 @@
<div class="container-fluid">
<div class="btn-group" style="margin-bottom:10px;">
<a type="button" class="btn btn-default" href="<?=$this->url(array('controller'=> 'index','action'=>'index',
'id'=>$this->comptageId))?>">Charger les critères de ciblage dans l'interface</a>
<a type="button" class="btn btn-default update" href="<?=$this->url(array('controller'=> 'comptage',
'action'=>'update', 'id'=>$this->comptageId))?>">Actualiser le comptage</a>
'action'=>'update', 'id'=>$this->comptageId))?>">Actualiser le ciblage</a>
<a type="button" class="btn btn-default enrichissementref" href="<?=$this->url(array('controller'=> 'enrichissement',
'action'=>'reference', 'id'=>$this->comptageId))?>">Commander un enrichissement</a>
<a type="button" class="btn btn-default" href="<?=$this->url(array('controller'=> 'index','action'=>'index',
'id'=>$this->comptageId))?>">Charger les critères de ciblage dans l'interface</a>
</div>
<div id="dashboard">
@ -61,10 +61,10 @@
<tbody>
<?php foreach($this->comptages as $comptage) {?>
<tr>
<th><?=substr($comptage['dateAjout'],8,2).'/'.substr($comptage['dateAjout'],5,2).'/'.substr($comptage['dateAjout'],0,4)
.' '.substr($comptage['dateAjout'],11,2).':'.substr($comptage['dateAjout'],14,2).':'.substr($comptage['dateAjout'],17,2)?></th>
<th><?=number_format($comptage['resultat'], 0, '', ' ')?></th>
<th><?=number_format($comptage['uniteInsee'], 0, '', ' ')?></th>
<td><?=substr($comptage['dateAjout'],8,2).'/'.substr($comptage['dateAjout'],5,2).'/'.substr($comptage['dateAjout'],0,4)
.' '.substr($comptage['dateAjout'],11,2).':'.substr($comptage['dateAjout'],14,2).':'.substr($comptage['dateAjout'],17,2)?></td>
<td><?=number_format($comptage['resultat'], 0, '', ' ')?></td>
<td><?=number_format($comptage['uniteInsee'], 0, '', ' ')?></td>
</tr>
<?php }?>
</tbody>
@ -86,9 +86,9 @@
<tbody>
<?php foreach($this->enrichissements as $item) {?>
<tr>
<th><?=$item['dateAdded']?></th>
<th><?=$item['reference']?></th>
<th><?=number_format($item['nbLigneTotales'], 0, '', ' ')?></th>
<td><?=$item['dateAdded']?></td>
<td><?=$item['reference']?></td>
<td><?=number_format($item['nbLigneTotales'], 0, '', ' ')?></td>
<td>
<?php if($item['dateStart']>0) { ?>
<a href="/enrichissement/download/id/<?=$item['id']?>"><?=$item['fichier']?></a>
@ -102,31 +102,9 @@
</table>
<?php } else {?>
<div class="panel-body">
<a href="#myModal" role="button" class="btn btn-primary" data-toggle="modal" data-load-remote="<?=$this->url(array('controller'=> 'enrichissement','action'=>'reference', 'id'=>$this->comptageId))?>" data-remote-target="#myModal .modal-body">Commander un enrichissement</a>
<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel">Commande d'un enrichissment</h4>
</div>
<div class="modal-body">
Chargement...
<div class="progress progress-striped active">
<div class="progress-bar" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 100%">
<span class="sr-only">100% Complete</span>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary submit">Save changes</button>
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
</div>
<a type="button" class="btn btn-primary enrichissementref" href="<?=$this->url(array('controller'=> 'enrichissement',
'action'=>'reference', 'id'=>$this->comptageId))?>">Commander un enrichissement</a>
</div>
<?php }?>
</div>

View File

@ -1,7 +1,7 @@
Votre commande a bien été prise en compte sous la référence <?=$this->ref?>
<script>
$('[data-dismiss]').on('click', function(){
window.location.href= window.location.href;
});
$('#dialog').dialog({ buttons: {
'Annuler': function() { $(this).dialog('close'); }
}, });
</script>

View File

@ -8,8 +8,7 @@ Erreur
<?php } elseif ( $this->resultat === true) {?>
<p>Le nombre de lignes à enrichir est trop important.
Vous pouvez prendre contact avec le service commercial.</p>
<p>Le nombre de lignes à enrichir est trop important. Vous pouvez prendre contact avec le service commercial.</p>
<?php } elseif ( $this->resultat == 'lines') {?>
@ -18,65 +17,28 @@ Vous pouvez prendre contact avec le service commercial.</p>
<?php } elseif ( $this->resultat == 'files') {?>
<p>Le nombre maximum de fichier enrichit a été atteint.
Vous pouvez prendre contact avec le service commercial.</p>
<p>Le nombre maximum de fichier enrichit a été atteint. Vous pouvez prendre contact avec le service commercial.</p>
<?php } elseif ( $this->forfaitRemain && $this->forfaitRemain<=0 ) { ?>
<p>Le montant de votre forfait est insuffisant
Vous pouvez prendre contact avec le service commercial.
</p>
<p>Le montant de votre forfait est insuffisant. Vous pouvez prendre contact avec le service commercial.</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>
<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/>
<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>Redevance Insee</td>
<td><?=number_format($this->prixInsee, 2, ',', ' ')?></td>
</tr>
<tr>
<td>Prix du fichier</td><td><?=number_format($this->prix, 2, ',', ' ')?></td>
</tr>
<?php if ($this->forfaitRemain) {?>
<tr><td colspan="2"></td></tr>
<tr><td>Forfait Restant</td><td><?=number_format($this->forfaitRemain, 2, ',', ' ')?></td></tr>
<?php }?>
</table>
<?php if (!empty($this->infoInsee)) {?>
<br/>
<p><?=$this->infoInsee?></p>
<?php }?>
<br/>
<div class="row">
<p class="bg-classes bg-success">Votre ciblage a été actualisé</p>
<p><a href="#" title="Afficher les paramètres du fichier" id="display-fileparams">Paramètres du fichier</a></p>
<form name="commande" method="post" action="<?=$this->url(array('controller'=>'enrichissement', 'action'=>'commande'), 'default', true)?>">
<div id="fileparams" class="row" style="display:none;">
<div class="col-xs-6">
<div class="panel panel-info">
<div class="panel-heading">Possible output encoding</div>
<div class="panel-body">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active">
<label class="btn btn-sm btn-primary active">
<input type="radio" name="options" id="option1"> UTF-8
</label>
<label class="btn btn-primary">
<label class="btn btn-sm btn-primary">
<input type="radio" name="options" id="option2"> ISO-8859-15
</label>
</div>
@ -88,13 +50,13 @@ Vous pouvez prendre contact avec le service commercial.
<div class="panel-heading">Possible separator</div>
<div class="panel-body">
<div class="btn-group" style='' data-toggle="buttons">
<label class="btn btn-primary active">
<label class="btn btn-sm btn-primary active">
<input type="radio" name="options" id="option1"> ,
</label>
<label class="btn btn-primary">
<label class="btn btn-sm btn-primary">
<input type="radio" name="options" id="option2"> ;
</label>
<label class="btn btn-primary">
<label class="btn btn-sm btn-primary">
<input type="radio" name="options" id="option3"> Tab
</label>
</div>
@ -102,25 +64,55 @@ Vous pouvez prendre contact avec le service commercial.
</div>
</div>
</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">
<input type="hidden" type="text" value="<?=$this->profil?>" name="profil">
</form>
<table class="table table-bordered table-condensed" 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>
</table>
<?php if (!empty($this->infoInsee)) {?>
<p><?=$this->infoInsee?></p>
<?php }?>
<p><small>Le prix du fichier est de <u><?=number_format($this->prix, 2, ',', ' ')?></u>
(avec <?=number_format($this->prixInsee, 2, ',', ' ')?> € de redevance Insee)</small></p>
<?php if ($this->forfaitRemain) {?>
<p>Forfait Restant : <?=number_format($this->forfaitRemain, 2, ',', ' ')?></p>
<?php }?>
<p class="text-warning"><small>Les tarifs sont données à titre indicatif et peuvent variées suivant les spécificités de votre compte.</small></p>
</div>
<script>
$('button.submit').prop('disabled', false);
$('button.submit').on('click', function(){
$('button.submit').remove();
$('a#display-fileparams').click(function(){
var state = $('div#fileparams').css('display');
if (state == 'none') {
$('div#fileparams').css('display', 'block');
} else {
$('div#fileparams').css('display', 'none');
}
});
$('#dialog').dialog({ buttons: {
'Valider': function() {
var action = $('form[name=commande]').attr('action');
var values = $('form[name=commande]').serialize();
$('div#update').html('Enregistrement...');
$('#dialog').dialog({ buttons: [{}] });
$('#dialog div#update').html('Enregistrement...');
$.post(action, values, function(data){
$('div#update').html(data);
}).error(function(){
$('div#update').html('Erreur');
});
});
},
'Annuler': function() { $(this).dialog('close'); }
}, });
</script>
<?php }?>

View File

@ -19,11 +19,7 @@ $(document).ready(function(){
var $firstHTML = '<tr id="ligne-update"><td colspan="3" align="center">Calcul en cours ...</td></tr>';
$('table.comptage').prepend($firstHTML);
$.getJSON(href, function(data) {
$('tr#ligne-update').html(
'<td>'+data.dateAjout+'</td>' +
'<td>'+data.resultat+'</td>' +
'<td>'+data.uniteInsee+'</td>'
);
$('tr#ligne-update').html('<td>'+data.dateAjout+'</td><td>'+data.resultat+'</td><td>'+data.uniteInsee+'</td>');
}).fail(function(){
$('tr#ligne-update').html('<td colspan="3" align="center">Une erreur est survenue.</td>');
});

View File

@ -54,6 +54,9 @@ div#tabs li.list-group-item {
cursor:pointer;
}
div#dialog p.bg-classes {
padding:15px;
}
.slider-valmin:before {
content: "Min: ";
@ -122,4 +125,8 @@ div#tabs li.list-group-item {
.noUi-target {
margin: 0 10px;
}
.ui-widget {
font-size: 14px;
}