|
|
|
@ -67,7 +67,7 @@ class CompanyStatementOfflineController extends ThinkController
|
|
|
|
|
->alias("c")
|
|
|
|
|
->field("c.*,p.statement_num,p.verify_status")
|
|
|
|
|
->where($map)
|
|
|
|
|
->where(['p.verify_status'=>['neq',6]])
|
|
|
|
|
->where('p.verify_status <> 6')
|
|
|
|
|
->join("tab_company_statement_pool as p ON c.pool_id = p.id")
|
|
|
|
|
->order("id desc")
|
|
|
|
|
->select();
|
|
|
|
@ -81,10 +81,8 @@ class CompanyStatementOfflineController extends ThinkController
|
|
|
|
|
->alias("c")
|
|
|
|
|
->field("c.*,p.statement_num,p.verify_status")
|
|
|
|
|
->where($map)
|
|
|
|
|
->where(['p.verify_status'=>['neq',6]])
|
|
|
|
|
|
|
|
|
|
->where('p.verify_status <> 6')
|
|
|
|
|
->join("tab_company_statement_pool as p ON c.pool_id = p.id")
|
|
|
|
|
|
|
|
|
|
->page($page,$row)
|
|
|
|
|
->order("id desc")
|
|
|
|
|
->select();
|
|
|
|
|