From 4145c533ebfcd4e5da503526170e7eeeb4c9dace Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 13 七月 2022 17:17:02 +0800
Subject: [PATCH] 8.费用--欠费信息中,导出功能中,多导出了一条金额为零的数据,但是列表中是不存在的
---
service-api/src/main/java/com/java110/api/smo/impl/RoomServiceSMOImpl.java | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/service-api/src/main/java/com/java110/api/smo/impl/RoomServiceSMOImpl.java b/service-api/src/main/java/com/java110/api/smo/impl/RoomServiceSMOImpl.java
index 63cb8d8..e5bd866 100644
--- a/service-api/src/main/java/com/java110/api/smo/impl/RoomServiceSMOImpl.java
+++ b/service-api/src/main/java/com/java110/api/smo/impl/RoomServiceSMOImpl.java
@@ -13,7 +13,7 @@
import com.java110.utils.exception.SMOException;
import com.java110.utils.util.Assert;
import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import com.java110.core.log.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
@@ -58,7 +58,7 @@
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
paramIn.put("userId", pd.getUserId());
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
- ServiceConstant.SERVICE_API_URL + "/api/room.saveRoom",
+ "room.saveRoom",
HttpMethod.POST);
return responseEntity;
@@ -87,7 +87,7 @@
//鏁版嵁鏍¢獙鏄惁 鍟嗘埛鏄惁鍏ラ┗璇ュ皬鍖�
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
- String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/room.queryRooms" + mapToUrlParam(paramIn);
+ String apiUrl = "room.queryRooms" + mapToUrlParam(paramIn);
responseEntity = this.callCenterService(restTemplate, pd, "",
apiUrl,
@@ -118,7 +118,7 @@
//鏁版嵁鏍¢獙鏄惁 鍟嗘埛鏄惁鍏ラ┗璇ュ皬鍖�
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
- String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/room.queryRoomsByOwner" + mapToUrlParam(paramIn);
+ String apiUrl = "room.queryRoomsByOwner" + mapToUrlParam(paramIn);
responseEntity = this.callCenterService(restTemplate, pd, "",
apiUrl,
@@ -142,7 +142,7 @@
feeMap.put("communityId", communityId);
feeMap.put("feeTypeCd", FeeTypeConstant.FEE_TYPE_PROPERTY);
feeMap.put("roomId", roomObj.getString("roomId"));
- apiUrl = ServiceConstant.SERVICE_API_URL + "/api/fee.listFee" + mapToUrlParam(feeMap);
+ apiUrl = "fee.listFee" + mapToUrlParam(feeMap);
responseEntity = this.callCenterService(restTemplate, pd, "",
apiUrl,
HttpMethod.GET);
@@ -187,7 +187,7 @@
//鏁版嵁鏍¢獙鏄惁 鍟嗘埛鏄惁鍏ラ┗璇ュ皬鍖�
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
- String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/room.queryRoomsWithOutSell" + mapToUrlParam(paramIn);
+ String apiUrl = "room.queryRoomsWithOutSell" + mapToUrlParam(paramIn);
responseEntity = this.callCenterService(restTemplate, pd, "",
apiUrl,
@@ -218,7 +218,7 @@
//鏁版嵁鏍¢獙鏄惁 鍟嗘埛鏄惁鍏ラ┗璇ュ皬鍖�
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
- String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/room.queryRoomsWithSell" + mapToUrlParam(paramIn);
+ String apiUrl = "room.queryRoomsWithSell" + mapToUrlParam(paramIn);
responseEntity = this.callCenterService(restTemplate, pd, "",
apiUrl,
@@ -248,7 +248,7 @@
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
paramIn.put("userId", pd.getUserId());
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
- ServiceConstant.SERVICE_API_URL + "/api/room.updateRoom",
+ "room.updateRoom",
HttpMethod.POST);
return responseEntity;
@@ -276,7 +276,7 @@
super.checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
paramIn.put("userId", pd.getUserId());
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
- ServiceConstant.SERVICE_API_URL + "/api/room.deleteRoom",
+ "room.deleteRoom",
HttpMethod.POST);
return responseEntity;
@@ -306,7 +306,7 @@
paramIn.put("userId", pd.getUserId());
paramIn.put("storeId", storeId);
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
- ServiceConstant.SERVICE_API_URL + "/api/room.sellRoom",
+ "room.sellRoom",
HttpMethod.POST);
return responseEntity;
@@ -335,7 +335,7 @@
paramIn.put("userId", pd.getUserId());
paramIn.put("storeId", storeId);
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
- ServiceConstant.SERVICE_API_URL + "/api/room.exitRoom",
+ "room.exitRoom",
HttpMethod.POST);
return responseEntity;
--
Gitblit v1.8.0