diff --git a/app/api/controller/CompanyAccountLogController.php b/app/api/controller/CompanyAccountLogController.php index cb3b11a8b..2a571dc62 100644 --- a/app/api/controller/CompanyAccountLogController.php +++ b/app/api/controller/CompanyAccountLogController.php @@ -11,7 +11,7 @@ class CompanyAccountLogController extends BaseApiController{ $where=[]; $where['company_id']=$this->userInfo['company_id']; $where['change_object']=CompanyAccountLog::SHAREHOLDER; - $where['change_type']=CompanyAccountLog::TASK_INC_SHAREHOLDER_MONEY; +// $where['change_type']=CompanyAccountLog::TASK_INC_SHAREHOLDER_MONEY; $count=CompanyAccountLog::where($where)->count(); $lists=CompanyAccountLog::where($where)->page($page,$limit)->order('id','desc')->select(); return $this->success('ok',['count'=>$count,'list'=>$lists]);