Add rule to order a file
This commit is contained in:
parent
43d776b866
commit
528f544e33
@ -215,7 +215,8 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
$prix = round($item['resultat'] * $priceLine + $prixInsee, 2);
|
||||
|
||||
//Forfait - Liste des commandes et calcul
|
||||
if ($user->forfait>0) {
|
||||
if ($user->forfait>0)
|
||||
{
|
||||
$dateBegin = $user->dateContrat;
|
||||
$dateEnd = date('YmdHis', mktime(0,0,0,substr($user->dateContrat,5,2)+$user->periodContrat, substr($user->dateContrat,8,2), substr($user->dateContrat,0,4)));
|
||||
|
||||
@ -235,6 +236,14 @@ class EnrichissementController extends Zend_Controller_Action
|
||||
|
||||
$this->view->forfaitRemain = $user->forfait - $conso - $prix;
|
||||
}
|
||||
//Limite lignes totales
|
||||
elseif ($user->forfait==0 && $user->limitFiles>0) {
|
||||
//@todo : create the rule
|
||||
}
|
||||
//Illimité
|
||||
elseif ($user->forfait==0 && $user->limitFiles==0) {
|
||||
|
||||
}
|
||||
|
||||
$this->view->prix = $prix;
|
||||
$this->view->id = $item['id'];
|
||||
|
@ -6,33 +6,17 @@ Erreur
|
||||
<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 } elseif ($this->forfaitRemain<=0) { ?>
|
||||
<?php } elseif ($this->forfaitRemain && $this->forfaitRemain<=0) { ?>
|
||||
<p>Le montant de votre forfait est insuffisant
|
||||
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;
|
||||
}
|
||||
#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>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user