From 8e0221d93c8710b4cd844f26efb365ae7577d1c4 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期五, 15 七月 2022 13:05:07 +0800
Subject: [PATCH] spring boot 启动方式查询小区方式异常问题处理

---
 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