Tree 1 ヶ月 前
コミット
8419b31b83

+ 1 - 1
app/Http/Controllers/Game/PayRechargeController.php

@@ -240,7 +240,7 @@ class PayRechargeController extends Controller
             ->where('UserID', $user->UserID)
             ->first();
         
-        $currentTotalBet = $userStats->AllBet ?? 0;
+        $currentTotalBet = $userStats->TotalBet ?? 0;
         
         // 更新下注进度到礼包记录
         DB::table('agent.dbo.first_pay_gift_records')

+ 1 - 1
app/Http/logic/api/WDPayCashierLogic.php

@@ -253,7 +253,7 @@ class WDPayCashierLogic implements CashierInterFace
 
             // 添加用户提现操作记录
             DB::connection('write')->table('QPAccountsDB.dbo.AccountsRecord')->updateOrInsert(['RecordID' => $query->RecordID, 'type' => 1], $RecordData);
-            DB::connection('write')->table('QPAccountsDB.dbo.withdraw_notify')->updateOrInsert(['order_sn' => $OrderId], $notify_data);
+//            DB::connection('write')->table('QPAccountsDB.dbo.withdraw_notify')->updateOrInsert(['order_sn' => $OrderId], $notify_data);
             DB::connection('write')->table('QPAccountsDB.dbo.OrderWithDraw')->where('OrderId', $query->OrderId)->update($withdraw_data);
 
             if (isset($withdraw_data['State']) && $withdraw_data['State'] == 2) {

+ 1 - 1
app/Http/logic/api/WiwiPayCashierLogic.php

@@ -234,7 +234,7 @@ class WiwiPayCashierLogic implements CashierInterFace
 
             // 添加用户提现操作记录
             DB::connection('write')->table('QPAccountsDB.dbo.AccountsRecord')->updateOrInsert(['RecordID' => $query->RecordID, 'type' => 1], $RecordData);
-            DB::connection('write')->table('QPAccountsDB.dbo.withdraw_notify')->updateOrInsert(['order_sn' => $OrderId], $notify_data);
+//            DB::connection('write')->table('QPAccountsDB.dbo.withdraw_notify')->updateOrInsert(['order_sn' => $OrderId], $notify_data);
             DB::connection('write')->table('QPAccountsDB.dbo.OrderWithDraw')->where('OrderId', $query->OrderId)->update($withdraw_data);
 
             if (isset($withdraw_data['State']) && $withdraw_data['State'] == 2) {