From 8e27d4bd39d502c360a8c38de34e409772dbf48d Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Fri, 26 May 2023 16:20:24 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95=E5=B9=B3=E5=8F=B0=E6=89=8B?= =?UTF-8?q?=E7=BB=AD=E8=B4=B9=E5=88=86=E6=B6=A6=E9=80=80=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/event.php | 1 + app/listener/AfterRefund.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/event.php b/app/event.php index 5d49b7c4..f9f7d132 100644 --- a/app/event.php +++ b/app/event.php @@ -66,6 +66,7 @@ return [ 'order.paySuccessOrder'=>[\app\listener\paySuccessOrder::class], 'product.create'=>[\app\listener\ProductCreate::class], 'product.sell'=>[\app\listener\CloudProduct::class], //商品上下架 + 'refund.after'=>[\app\listener\AfterRefund::class], ], 'subscribe' => [], diff --git a/app/listener/AfterRefund.php b/app/listener/AfterRefund.php index fcc6123f..b434e303 100644 --- a/app/listener/AfterRefund.php +++ b/app/listener/AfterRefund.php @@ -30,7 +30,7 @@ class AfterRefund } if ($financialRecord['financial_type'] == 'auto_margin') { //佣金类型的扣除保证金 - ServeOrder::getInstance()->where('id', $financialRecord['order_id'])->update(['is_del' => 1]); + ServeOrder::getInstance()->where('store_order_id', $financialRecord['order_id'])->update(['is_del' => 1]); $merchant = app()->make(MerchantDao::class)->get($financialRecord['mer_id']); $merchant->paid_margin = max(bcsub($merchant['paid_margin'], $financialRecord['number'], 2), 0); $merchant->ot_margin = $merchant->paid_margin;