wuxw
2019-10-21 740ec8c9a0b2c05603ef7a301808032dac8f6d09
WebService/src/main/java/com/java110/web/smo/resourceStore/impl/AddResourceStoreSMOImpl.java
@@ -2,6 +2,7 @@
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;
@@ -31,7 +32,7 @@
        //Assert.hasKeyAndValue(paramIn, "xxx", "xxx");
        Assert.hasKeyAndValue(paramIn, "resName", "必填,请填写物品名称");
        Assert.hasKeyAndValue(paramIn, "resCode", "必填,请填写物品编码");
        //Assert.hasKeyAndValue(paramIn, "resCode", "必填,请填写物品编码");
        Assert.hasKeyAndValue(paramIn, "price", "必填,请填写物品价格");
        Assert.hasKeyAndValue(paramIn, "stock", "必填,请填写物品库存");
        Assert.hasKeyAndValue(paramIn, "description", "必填,请填写描述");
@@ -44,7 +45,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());
        responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
                ServiceConstant.SERVICE_API_URL + "/api/resourceStore.saveResourceStore",