From 2816df76f5e122198f101732d909735a85b531ec Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期日, 29 十二月 2019 22:23:07 +0800
Subject: [PATCH] 调整查询审核绑定业主查询和查询绑定业主信息

---
 WebService/src/main/java/com/java110/web/smo/resourceStore/impl/EditResourceStoreSMOImpl.java |   32 +++-----------------------------
 1 files changed, 3 insertions(+), 29 deletions(-)

diff --git a/WebService/src/main/java/com/java110/web/smo/resourceStore/impl/EditResourceStoreSMOImpl.java b/WebService/src/main/java/com/java110/web/smo/resourceStore/impl/EditResourceStoreSMOImpl.java
index a8aed3e..27a816f 100644
--- a/WebService/src/main/java/com/java110/web/smo/resourceStore/impl/EditResourceStoreSMOImpl.java
+++ b/WebService/src/main/java/com/java110/web/smo/resourceStore/impl/EditResourceStoreSMOImpl.java
@@ -1,23 +1,18 @@
 package com.java110.web.smo.resourceStore.impl;
 
-import com.alibaba.fastjson.JSONArray;
 import com.alibaba.fastjson.JSONObject;
 import com.java110.core.context.IPageData;
 import com.java110.entity.component.ComponentValidateResult;
 import com.java110.utils.constant.PrivilegeCodeConstant;
 import com.java110.utils.constant.ServiceConstant;
 import com.java110.utils.util.Assert;
-import com.java110.web.core.AbstractComponentSMO;
+import com.java110.core.component.AbstractComponentSMO;
 import com.java110.web.smo.resourceStore.IEditResourceStoreSMO;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.HttpMethod;
-import org.springframework.http.HttpStatus;
 import org.springframework.http.ResponseEntity;
 import org.springframework.stereotype.Service;
 import org.springframework.web.client.RestTemplate;
-
-import java.util.HashMap;
-import java.util.Map;
 
 /**
  * 娣诲姞鐗╁搧绠$悊鏈嶅姟瀹炵幇绫�
@@ -38,8 +33,8 @@
         Assert.hasKeyAndValue(paramIn, "resName", "蹇呭~锛岃濉啓鐗╁搧鍚嶇О");
         //Assert.hasKeyAndValue(paramIn, "resCode", "蹇呭~锛岃濉啓鐗╁搧缂栫爜");
         Assert.hasKeyAndValue(paramIn, "price", "蹇呭~锛岃濉啓鐗╁搧浠锋牸");
-        Assert.hasKeyAndValue(paramIn, "stock", "蹇呭~锛岃濉啓鐗╁搧搴撳瓨");
-        Assert.hasKeyAndValue(paramIn, "description", "蹇呭~锛岃濉啓鎻忚堪");
+        //Assert.hasKeyAndValue(paramIn, "stock", "蹇呭~锛岃濉啓鐗╁搧搴撳瓨");
+        //Assert.hasKeyAndValue(paramIn, "description", "蹇呭~锛岃濉啓鎻忚堪");
 
 
 
@@ -52,27 +47,6 @@
         ResponseEntity<String> responseEntity = null;
         ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
         paramIn.put("storeId",result.getStoreId());
-
-        Map newParamIn = new HashMap();
-        newParamIn.put("storeId",result.getStoreId());
-        newParamIn.put("resId",paramIn.getString("resId"));
-
-        String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/resourceStore.listResourceStores" + mapToUrlParam(paramIn);
-
-
-        responseEntity = this.callCenterService(restTemplate, pd, "",
-                apiUrl,
-                HttpMethod.GET);
-
-        if(responseEntity.getStatusCode() != HttpStatus.OK){
-            return responseEntity;
-        }
-
-        JSONArray resourceStores = JSONObject.parseObject(responseEntity.getBody()).getJSONArray("resourceStores");
-
-        Assert.isOne(resourceStores,"鏌ヨ鐗╁搧鏁版嵁瀛樺湪澶氭潯鎴�0鏉�");
-
-        paramIn.put("stock", resourceStores.getJSONObject(0).getString("stock"));
 
         responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                 ServiceConstant.SERVICE_API_URL + "/api/resourceStore.updateResourceStore",

--
Gitblit v1.8.0