From 8056fce1dae09b0c4121d4d13c4e32d65ec306f6 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Sat, 27 Jul 2024 16:41:36 +0800 Subject: [PATCH] =?UTF-8?q?feat(CommissionLogic):=20=E6=A0=B9=E6=8D=AE?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=B1=BB=E5=9E=8B=E5=92=8CID=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E8=B4=B9=E7=94=A8=E5=B9=B6=E8=AE=B0=E5=BD=95=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E4=BD=99=E9=A2=9D=E6=94=B6=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/logic/CommissionLogic.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/common/logic/CommissionLogic.php b/app/common/logic/CommissionLogic.php index fc4936ec..ea880882 100644 --- a/app/common/logic/CommissionLogic.php +++ b/app/common/logic/CommissionLogic.php @@ -161,11 +161,11 @@ class CommissionLogic extends BaseLogic public static function user($order, $type, $transaction_id, $uid = 0, $enum = 0) { $financeLogic = new StoreFinanceFlowLogic(); - $fees=StoreFinanceFlowProduct::where('oid',$order['id'])->where('type',$type)->sum('number'); - if ($fees > 0) { + $fees=StoreFinanceFlowProduct::where('oid',$order['id'])->where('type',$type)->field('sum(number) as fees,other_uid')->find(); + if ($fees && $fees['fees'] > 0) { //记录用户余额收入 $financeLogic->user['uid'] = $order['uid']; - $financeLogic->other_arr['vip_uid'] = $uid; + $financeLogic->other_arr['vip_uid'] = $fees['other_uid']; $financeLogic->order = $order; $financeLogic->in($transaction_id, $fees, $enum, $order['store_id'], $order['staff_id'], 0, $order['pay_type']); $financeLogic->out($transaction_id, $fees, $enum, $order['store_id'], $order['staff_id'], 0, $order['pay_type']);