From 5c0f842e318250eb1ad6d1a6905c7377cbf0e24a Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 09 一月 2024 16:45:41 +0800
Subject: [PATCH] 优化1.6 拆分费用bug
---
service-acct/src/main/java/com/java110/acct/payment/business/payFee/PayFeePaymentBusiness.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/service-acct/src/main/java/com/java110/acct/payment/business/payFee/PayFeePaymentBusiness.java b/service-acct/src/main/java/com/java110/acct/payment/business/payFee/PayFeePaymentBusiness.java
index 7470ba0..6b160da 100644
--- a/service-acct/src/main/java/com/java110/acct/payment/business/payFee/PayFeePaymentBusiness.java
+++ b/service-acct/src/main/java/com/java110/acct/payment/business/payFee/PayFeePaymentBusiness.java
@@ -5,6 +5,7 @@
import com.java110.core.context.ICmdDataFlowContext;
import com.java110.core.factory.CallApiServiceFactory;
import com.java110.core.log.LoggerFactory;
+import com.java110.dto.app.AppDto;
import com.java110.dto.fee.FeeDto;
import com.java110.dto.payment.PaymentOrderDto;
import com.java110.utils.cache.CommonCache;
@@ -30,7 +31,7 @@
String appId = context.getReqHeaders().get("app-id");
String userId = context.getReqHeaders().get("user-id");
- JSONObject orderInfo = CallApiServiceFactory.postForApi(appId, reqJson, "fee.payFeePre", JSONObject.class, userId);
+ JSONObject orderInfo = CallApiServiceFactory.postForApi(AppDto.WEB_APP_ID, reqJson, "fee.payFeePre", JSONObject.class, userId);
String orderId = orderInfo.getString("oId");
String feeName = orderInfo.getString("feeName");
double money = Double.parseDouble(orderInfo.getString("receivedAmount"));
--
Gitblit v1.8.0