修改了离线申请的sql语句。

This commit is contained in:
Li Jianxuan 2011-09-16 04:55:33 +00:00
parent 3aaffc12d5
commit 6e5ea71f28
1 changed files with 6 additions and 1 deletions

View File

@ -161,7 +161,12 @@ class Admin_DownController extends Zend_Controller_Action
//if
}//reset
$select=$this->db->select();
$select->from('offlineapp')->where('ts_approved is null')->where('pdflink is not null and status>=0')->order('ts_created desc');
$select ->from('offlineapp as o')
->join('dataorder as d','o.id = d.offlineappid')
->where('o.ts_approved is null')
->where('o.pdflink is not null')
->where('d.status=3')
->order('o.ts_created desc');
$paginator = Zend_Paginator::factory($select);
$paginator->setCurrentPageNumber($page);
$paginator->setItemCountPerPage($this->view->config->page->max);