From ce5a0a7c67559d4f4a33f1269e7901aefe620e62 Mon Sep 17 00:00:00 2001 From: hellcat <> Date: Sun, 12 Oct 2025 15:28:49 +0800 Subject: [PATCH] no message --- src/Services/Cron.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/Cron.php b/src/Services/Cron.php index 167c2c6db..daed193b0 100755 --- a/src/Services/Cron.php +++ b/src/Services/Cron.php @@ -836,7 +836,7 @@ final class Cron try { $invoice = (new Invoice())->where('order_id', $oOrder->id)->first(); - var_dump($invoice); + if ($invoice === null) { continue; } @@ -851,7 +851,7 @@ final class Cron $iPayAmount = $invoice->price - $invoice->money_use; if ($oOrder->product_code == "code") { // 钱包充值 - + var_dump(11111); $iUserMoneyOld = $oUser->money; $iUserMoneyNew = $oUser->money + $invoice->price; $iAmount = $invoice->price;