From ccf431caae4db93665d5d3bc5e31582a628cebe4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 17 Mar 2021 16:42:56 +0800 Subject: [PATCH] Update UserRebateService.php --- app/data/service/UserRebateService.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/data/service/UserRebateService.php b/app/data/service/UserRebateService.php index d7461a1c4..54e6d05c1 100644 --- a/app/data/service/UserRebateService.php +++ b/app/data/service/UserRebateService.php @@ -23,9 +23,7 @@ class UserRebateService extends Service $count = abs($this->app->db->name('DataUserTransfer')->whereRaw("uid='{$uuid}' and status>0")->sum('amount')); $total = abs($this->app->db->name('DataUserRebate')->whereRaw("uid='{$uuid}' and status=1 and deleted=0")->sum('amount')); $locks = abs($this->app->db->name('DataUserRebate')->whereRaw("uid='{$uuid}' and status=0 and deleted=0")->sum('amount')); - $this->app->db->name('DataUser')->where(['id' => $uuid])->update([ - 'rebate_total' => $total, 'rebate_used' => $count, 'rebate_lock' => $locks, - ]); + $this->app->db->name('DataUser')->where(['id' => $uuid])->update(['rebate_total' => $total, 'rebate_used' => $count, 'rebate_lock' => $locks]); } else { $count = abs($this->app->db->name('DataUserTransfer')->whereRaw("status>0")->sum('amount')); $total = abs($this->app->db->name('DataUserRebate')->whereRaw("status=1 and deleted=0")->sum('amount'));