| | |
| | | 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.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; |
| | | |
| | | /** |
| | | * 添加物品管理服务实现类 |
| | |
| | | |
| | | Assert.hasKeyAndValue(paramIn, "resId", "物品ID不能为空"); |
| | | Assert.hasKeyAndValue(paramIn, "resName", "必填,请填写物品名称"); |
| | | Assert.hasKeyAndValue(paramIn, "resCode", "必填,请填写物品编码"); |
| | | //Assert.hasKeyAndValue(paramIn, "resCode", "必填,请填写物品编码"); |
| | | Assert.hasKeyAndValue(paramIn, "price", "必填,请填写物品价格"); |
| | | Assert.hasKeyAndValue(paramIn, "stock", "必填,请填写物品库存"); |
| | | Assert.hasKeyAndValue(paramIn, "description", "必填,请填写描述"); |
| | | //Assert.hasKeyAndValue(paramIn, "stock", "必填,请填写物品库存"); |
| | | //Assert.hasKeyAndValue(paramIn, "description", "必填,请填写描述"); |
| | | |
| | | |
| | | |
| | | super.checkUserHasPrivilege(pd, restTemplate, PrivilegeCodeConstant.AGENT_HAS_LIST_RESOURCESTORE); |
| | |
| | | @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.updateResourceStore", |