Example #1
0
 public function clientlist_Action()
 {
     $baseId = intval($this->getInput['baseId']);
     $baseInfo = control_baseMoney::getBaseInfo($baseId);
     list(, $clientList) = control_userBase::getPlanUserHaveList($baseId);
     foreach ($clientList as $client) {
         $uids[] = $client[control_userBase::TABLE_USERID];
     }
     $clientMoreInfoList = control_user::getUserListByIds($uids);
     $this->modelDisplay(array('baseId' => $baseId, 'baseInfo' => $baseInfo, 'clientList' => $clientList, 'clientInfo' => $clientMoreInfoList));
 }