Ejemplo n.º 1
0
 public function executeAutoCompleteLastNon()
 {
     $this->keyword = $this->getRequestParameter('lastname');
     $this->persons = PersonPeer::getLastNames($this->keyword, "NoPassenger");
     //$this->setTemplate('AutoCompleteFirst');
 }
Ejemplo n.º 2
0
 public function executeAutoCompleteLast()
 {
     $this->keyword = $this->getRequestParameter('lastname');
     $this->persons = PersonPeer::getLastNames($this->keyword, "contact");
 }
Ejemplo n.º 3
0
 public function executeAutoCompleteRequesterLast()
 {
     $this->keyword = $this->getRequestParameter('req_lname');
     $this->persons = PersonPeer::getLastNames($this->keyword, 'itiReq');
     $this->setLayout(false);
 }
Ejemplo n.º 4
0
 public function executeAutoCompleteLastPi()
 {
     $this->keyword = $this->getRequestParameter('pilot_lname');
     $this->persons = PersonPeer::getLastNames($this->keyword, 'missionLegPi');
 }