‘linchangsheng’ 4 ماه پیش
والد
کامیت
c256aba3cb
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      mall-server-api/src/main/java/com/gree/mall/manager/logic/common/WechatLogic.java

+ 6 - 0
mall-server-api/src/main/java/com/gree/mall/manager/logic/common/WechatLogic.java

@@ -763,6 +763,12 @@ public class WechatLogic {
         //请求单次分账
         log.info("【开始分账】request:{}", JSONObject.toJSONString(profitSharingRequest));
         profitSharingService.profitSharing(profitSharingRequest);
+
+        ProfitSharingQueryRequest profitSharingQueryRequest = new ProfitSharingQueryRequest();
+        profitSharingQueryRequest.setOutOrderNo(orderSharingId);
+        profitSharingQueryRequest.setTransactionId(transactionId);
+        ProfitSharingQueryResult profitSharingQueryResult = profitSharingService.profitSharingQuery(profitSharingQueryRequest);
+        log.info("【开始分账】request:{}", JSONObject.toJSONString(profitSharingQueryResult));
         //log.info("【开始分账】result:{}", JSONObject.toJSONString(profitSharingResult));
 
     }