wesmiler 1 month ago
parent
commit
a7d6f7691f
2 changed files with 1 additions and 3 deletions
  1. 1 0
      app/Services/Api/OrderService.php
  2. 0 3
      app/Services/PaymentService.php

+ 1 - 0
app/Services/Api/OrderService.php

@@ -1024,5 +1024,6 @@ class OrderService extends BaseService
 
         $result = PaymentService::make()->profitsharing($revenueOpenid, $order);
 
+        dump($result);
     }
 }

+ 0 - 3
app/Services/PaymentService.php

@@ -708,7 +708,6 @@ class PaymentService extends BaseService
             'unfreeze_unsplit' => $unsplit,
         ];
 
-        var_dump($postData);
         // 创建分账数据
         $createPlugin = $pay->mergeCommonPlugins([
             CreatePlugin::class
@@ -716,8 +715,6 @@ class PaymentService extends BaseService
 
         // 发起分账
         $result = $pay->pay($createPlugin, $postData);
-        var_dump($result);
-
         return $result;
     }
 }