From 5589528feb385d7881f8dbf9314b3abf5d4f4e9e Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 27 一月 2023 19:21:11 +0800
Subject: [PATCH] 优化 房屋页面查询功能

---
 service-community/src/main/java/com/java110/community/cmd/index/QueryIndexStatisticCmd.java |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/service-community/src/main/java/com/java110/community/cmd/index/QueryIndexStatisticCmd.java b/service-community/src/main/java/com/java110/community/cmd/index/QueryIndexStatisticCmd.java
index 5584b87..c2429a3 100644
--- a/service-community/src/main/java/com/java110/community/cmd/index/QueryIndexStatisticCmd.java
+++ b/service-community/src/main/java/com/java110/community/cmd/index/QueryIndexStatisticCmd.java
@@ -8,8 +8,10 @@
 import com.java110.dto.RoomDto;
 import com.java110.dto.owner.OwnerDto;
 import com.java110.dto.parking.ParkingSpaceDto;
+import com.java110.dto.store.StoreDto;
 import com.java110.intf.community.IParkingSpaceInnerServiceSMO;
 import com.java110.intf.community.IRoomInnerServiceSMO;
+import com.java110.intf.store.IStoreV1InnerServiceSMO;
 import com.java110.intf.user.IOwnerInnerServiceSMO;
 import com.java110.utils.exception.CmdException;
 import com.java110.utils.util.Assert;
@@ -19,6 +21,8 @@
 import org.springframework.http.HttpStatus;
 import org.springframework.http.ResponseEntity;
 
+import java.util.List;
+
 @Java110Cmd(serviceCode = "index.queryIndexStatistic")
 public class QueryIndexStatisticCmd extends Cmd {
 
@@ -27,7 +31,8 @@
 
     @Autowired
     private IRoomInnerServiceSMO roomInnerServiceSMOImpl;
-
+    @Autowired
+    private IStoreV1InnerServiceSMO storeV1InnerServiceSMOImpl;
 
     @Autowired
     private IParkingSpaceInnerServiceSMO parkingSpaceInnerServiceSMOImpl;
@@ -39,6 +44,15 @@
 
     @Override
     public void doCmd(CmdEvent event, ICmdDataFlowContext context, JSONObject reqJson) throws CmdException {
+
+        String storeId = context.getReqHeaders().get("store-id");
+        StoreDto storeDto = new StoreDto();
+        storeDto.setStoreId(storeId);
+        storeDto.setPage(1);
+        storeDto.setRow(1);
+        List<StoreDto> storeDtos = storeV1InnerServiceSMOImpl.queryStores(storeDto);
+
+        Assert.listOnlyOne(storeDtos, "鍟嗘埛涓嶅瓨鍦�");
 // 鏌ヨ涓氫富 鎬绘暟閲�
         ApiIndexStatisticVo apiIndexStatisticVo = new ApiIndexStatisticVo();
         OwnerDto ownerDto = BeanConvertUtil.covertBean(reqJson, OwnerDto.class);
@@ -70,6 +84,7 @@
         apiIndexStatisticVo.setFreeParkingSpaceCount(freeParkingSpaceCount + "");
         apiIndexStatisticVo.setShopCount(shopCount + "");
         apiIndexStatisticVo.setFreeShopCount(freeShopCount + "");
+        apiIndexStatisticVo.setStoreTypeCd(storeDtos.get(0).getStoreTypeCd());
         ResponseEntity<String> responseEntity = new ResponseEntity<String>(JSONObject.toJSONString(apiIndexStatisticVo), HttpStatus.OK);
         context.setResponseEntity(responseEntity);
     }

--
Gitblit v1.8.0