From e2309b5a0ff2bd3610d0c5567301d63abb0d91aa Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Sat, 23 Sep 2023 16:04:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=82=A1=E9=87=91=E5=8F=98=E5=8A=A8=E8=AE=B0?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/CompanyAccountLogController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]);