‘linchangsheng’ 3 months ago
parent
commit
c256aba3cb

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