package com.java110.front.smo.community.impl;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.utils.constant.PrivilegeCodeConstant;
|
import com.java110.utils.constant.ResponseConstant;
|
import com.java110.utils.constant.ServiceConstant;
|
import com.java110.utils.constant.StoreTypeConstant;
|
import com.java110.utils.exception.SMOException;
|
import com.java110.utils.util.Assert;
|
import com.java110.core.context.IPageData;
|
import com.java110.core.component.AbstractComponentSMO;
|
import com.java110.front.smo.community.IEditCommunitySMO;
|
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;
|
|
/**
|
* 添加小区服务实现类
|
* add by wuxw 2019-06-30
|
*/
|
@Service("eidtCommunitySMOImpl")
|
public class EditCommunitySMOImpl extends AbstractComponentSMO implements IEditCommunitySMO {
|
|
@Autowired
|
private RestTemplate restTemplate;
|
|
@Override
|
protected void validate(IPageData pd, JSONObject paramIn) {
|
|
//super.validatePageInfo(pd);
|
|
Assert.hasKeyAndValue(paramIn, "communityId", "小区ID不能为空");
|
Assert.hasKeyAndValue(paramIn, "name", "必填,请填写小区名称");
|
Assert.hasKeyAndValue(paramIn, "address", "必填,请填写小区地址");
|
Assert.hasKeyAndValue(paramIn, "nearbyLandmarks", "必填,请填写小区附近地标");
|
|
|
super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.AGENT_HAS_LIST_COMMUNITY);
|
|
}
|
|
@Override
|
protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
|
ResponseEntity<String> responseEntity = null;
|
//super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
// 校验 员工和商户是否有关系
|
responseEntity = getStoreInfo(pd, restTemplate);
|
if (responseEntity.getStatusCode() != HttpStatus.OK) {
|
throw new SMOException(ResponseConstant.RESULT_CODE_ERROR, responseEntity.getBody() + "");
|
}
|
|
Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "storeId", "根据用户ID查询商户ID失败,未包含storeId节点");
|
Assert.jsonObjectHaveKey(responseEntity.getBody().toString(), "storeTypeCd", "根据用户ID查询商户类型失败,未包含storeTypeCd节点");
|
|
String storeId = JSONObject.parseObject(responseEntity.getBody().toString()).getString("storeId");
|
String storeTypeCd = JSONObject.parseObject(responseEntity.getBody().toString()).getString("storeTypeCd");
|
|
if(!StoreTypeConstant.STORE_TYPE_SYSTEM_MANAGER.equals(storeTypeCd)){
|
super.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
}
|
responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
|
ServiceConstant.SERVICE_API_URL + "/api/community.updateCommunity",
|
HttpMethod.POST);
|
return responseEntity;
|
}
|
|
@Override
|
public ResponseEntity<String> updateCommunity(IPageData pd) {
|
return super.businessProcess(pd);
|
}
|
|
public RestTemplate getRestTemplate() {
|
return restTemplate;
|
}
|
|
public void setRestTemplate(RestTemplate restTemplate) {
|
this.restTemplate = restTemplate;
|
}
|
}
|