‘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));
 
     }