From 2c461bf4e67d16c9f0a39f6c58ec4ddbefdde645 Mon Sep 17 00:00:00 2001
From: liu <1873441552@qq.com>
Date: Wed, 26 Jun 2024 19:58:06 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=A1=E9=AA=8C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 app/api/logic/order/OrderLogic.php  | 2 +-
 app/common/logic/PayNotifyLogic.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/api/logic/order/OrderLogic.php b/app/api/logic/order/OrderLogic.php
index c875b5ab0..0e3b281d6 100644
--- a/app/api/logic/order/OrderLogic.php
+++ b/app/api/logic/order/OrderLogic.php
@@ -438,7 +438,7 @@ class OrderLogic extends BaseLogic
             PayNotifyLogic::afterPay($order);
             PayNotifyLogic::descStock($order['id']);
 
-            if($order['uid'] && $order['total_price'] > 500){
+            if($order['uid'] && $order['total_price'] >= 500){
                 $user_number = bcmul($order['pay_price'], '0.10', 2);
                 User::where('id', $order['uid'])->inc('integral', $user_number)->update();
                 UserSign::where(['uid' => $order['uid'],'order_id' => $order['order_id']])->update(['status'=>1]);
diff --git a/app/common/logic/PayNotifyLogic.php b/app/common/logic/PayNotifyLogic.php
index 6e7576689..0a6b889a7 100644
--- a/app/common/logic/PayNotifyLogic.php
+++ b/app/common/logic/PayNotifyLogic.php
@@ -393,7 +393,7 @@ class PayNotifyLogic extends BaseLogic
     public static function addUserSing($order)
     {
         $user_sing = new UserSign();
-        if ($order['uid'] > 0  && $order['total_price'] > 500) {
+        if ($order['uid'] > 0  && $order['total_price'] >= 500) {
             $user_number = bcmul($order['pay_price'], '0.10', 2);
             $sing = [
                 'uid' => $order['uid'],