| | |
| | | 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", "必填,请填写描述"); |
| | | |
| | | |
| | | |
| | |
| | | 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", |