wuxw
2020-01-14 69e2baf5518079bfc16cfadc2fb29842fb3de85d
WebService/src/main/java/com/java110/web/smo/complaint/impl/AddComplaintSMOImpl.java
@@ -3,6 +3,7 @@
import com.alibaba.fastjson.JSONObject;
import com.java110.core.component.AbstractComponentSMO;
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;
@@ -12,7 +13,6 @@
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
/**
@@ -31,12 +31,12 @@
        //super.validatePageInfo(pd);
        //Assert.hasKeyAndValue(paramIn, "xxx", "xxx");
        Assert.hasKeyAndValue(paramIn, "storeId", "必填,请填写商户ID");
        // Assert.hasKeyAndValue(paramIn, "storeId", "必填,请填写商户ID");
        Assert.hasKeyAndValue(paramIn, "typeCd", "必填,请选择投诉类型");
        Assert.hasKeyAndValue(paramIn, "roomId", "必填,请选择房屋编号");
        Assert.hasKeyAndValue(paramIn, "complaintName", "必填,请填写投诉人");
        Assert.hasKeyAndValue(paramIn, "tel", "必填,请填写投诉电话");
        Assert.hasKeyAndValue(paramIn, "state", "必填,请填写投诉状态");
        //Assert.hasKeyAndValue(paramIn, "state", "必填,请填写投诉状态");
        Assert.hasKeyAndValue(paramIn, "context", "必填,请填写投诉内容");
@@ -47,8 +47,9 @@
    @Override
    protected ResponseEntity<String> doBusinessProcess(IPageData pd, JSONObject paramIn) {
        ResponseEntity<String> responseEntity = null;
        super.validateStoreStaffCommunityRelationship(pd, restTemplate);
        ComponentValidateResult result = super.validateStoreStaffCommunityRelationship(pd, restTemplate);
        paramIn.put("storeId", result.getStoreId());
        paramIn.put("userId", result.getUserId());
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                ServiceConstant.SERVICE_API_URL + "/api/complaint.saveComplaint",
                HttpMethod.POST);