On définit le marqueur profil
This commit is contained in:
parent
efa137c644
commit
d6532f955a
@ -144,10 +144,12 @@ class EnrichissementController extends Zend_Controller_Action
|
|||||||
->where('idClient=?', $user->idClient)
|
->where('idClient=?', $user->idClient)
|
||||||
->where('login=?', $user->username)
|
->where('login=?', $user->username)
|
||||||
->where('actif=?', 1);
|
->where('actif=?', 1);
|
||||||
$profil = $profilsM->fetchRow($sql);
|
$profil = $profilsM->fetchRow($sql);
|
||||||
|
|
||||||
if ($profil)
|
if ($profil!==null)
|
||||||
{
|
{
|
||||||
|
$this->view->assign('profil', true);
|
||||||
|
|
||||||
$idCritere = $request->getParam('id', null);
|
$idCritere = $request->getParam('id', null);
|
||||||
|
|
||||||
$comptagesM = new Table_Comptages();
|
$comptagesM = new Table_Comptages();
|
||||||
@ -158,7 +160,7 @@ class EnrichissementController extends Zend_Controller_Action
|
|||||||
$comptages = $comptagesM->fetchAll($sql);
|
$comptages = $comptagesM->fetchAll($sql);
|
||||||
if ( $comptages->count()>0 ) {
|
if ( $comptages->count()>0 ) {
|
||||||
$item = $comptages[0];
|
$item = $comptages[0];
|
||||||
//Si le ciblage n'est pas du jour, refaire le comptage par rapport aux critères de ciblage
|
//@todo : Si le ciblage n'est pas du jour, refaire le comptage par rapport aux critères de ciblage
|
||||||
|
|
||||||
$this->view->assign('resultat', $item['resultat']);
|
$this->view->assign('resultat', $item['resultat']);
|
||||||
$this->view->assign('uniteInsee', $item['uniteInsee']);
|
$this->view->assign('uniteInsee', $item['uniteInsee']);
|
||||||
|
Loading…
Reference in New Issue
Block a user