issue #0001407 : Test filtre forme juridique
This commit is contained in:
parent
936c6defc4
commit
e536e67df4
@ -328,7 +328,7 @@ class RechercheController extends Zend_Controller_Action
|
||||
switch($type){
|
||||
case 'ent':
|
||||
$action = 'entreprise';
|
||||
$listParams = array('siret', 'raisonSociale', 'numero', 'voie', 'cpVille', 'telFax', 'naf');
|
||||
$listParams = array('siret', 'raisonSociale', 'numero', 'voie', 'cpVille', 'telFax', 'naf', 'fj');
|
||||
break;
|
||||
case 'dir':
|
||||
$action = 'dirigeant';
|
||||
|
@ -19,11 +19,11 @@ class RechercheHistorique
|
||||
* @var unknown_type
|
||||
*/
|
||||
protected $listParams = array(
|
||||
'ent' => array('siret', 'raisonSociale', 'numero', 'voie', 'cpVille', 'telFax', 'naf', 'pays'),
|
||||
'ent' => array('siret', 'raisonSociale', 'numero', 'voie', 'cpVille', 'telFax', 'naf', 'pays', 'fj'),
|
||||
'dir' => array('dirNom', 'dirPrenom', 'dirDateNaissJJ', 'dirDateNaissMM', 'dirDateNaissAAAA', 'dirCpVille'),
|
||||
'act' => array('actNomRs', 'cpVille', 'siret', 'pays', 'pctMin', 'pctMax'),
|
||||
'annonce' => array('formA'),
|
||||
'refclient' => array('ref'),
|
||||
'refclient' => array('ref'),
|
||||
);
|
||||
|
||||
public function __construct()
|
||||
@ -51,9 +51,9 @@ class RechercheHistorique
|
||||
if (count($this->listeRecherche)>=$this->rechercheMax){
|
||||
array_shift($this->listeRecherche);
|
||||
}
|
||||
|
||||
|
||||
$token = uniqid();
|
||||
|
||||
|
||||
$this->listeRecherche[] = array(
|
||||
'type' => $type,
|
||||
'token' => $token,
|
||||
@ -61,7 +61,7 @@ class RechercheHistorique
|
||||
);
|
||||
$session = new Zend_Session_Namespace($this->index);
|
||||
$session->liste = $this->listeRecherche;
|
||||
|
||||
|
||||
return $token;
|
||||
}
|
||||
|
||||
@ -111,11 +111,11 @@ class RechercheHistorique
|
||||
foreach($this->listeRecherche as $item) {
|
||||
if($token == $item['token']){
|
||||
return $item;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user