完成移位容器逻辑注释

This commit is contained in:
zhou-hongcheng
2026-01-26 16:45:54 +08:00
parent bc4e60a408
commit 93a4afbacc
@@ -371,14 +371,14 @@ public class ShiftManageApplicationService {
shiftMaterialDetailDO.setNewStorageLocationName(storageLocationFeignPO.getStorageLocationName()); shiftMaterialDetailDO.setNewStorageLocationName(storageLocationFeignPO.getStorageLocationName());
//获取容器详情 //获取容器详情
AjaxResult ajaxResult = systemServiceFeign.getContainerInfoByContainerId(shiftMaterialDetailDO.getContainerId()); // AjaxResult ajaxResult = systemServiceFeign.getContainerInfoByContainerId(shiftMaterialDetailDO.getContainerId());
if(!"200".equals(String.valueOf(ajaxResult.get("code")))){ // if(!"200".equals(String.valueOf(ajaxResult.get("code")))){
throw new ServiceException("获取容器信息失败"); // throw new ServiceException("获取容器信息失败");
} // }
ContainerFeignPO containerFeignPO = JSON.parseObject(JSONObject.toJSONString(ajaxResult.get("data")), ContainerFeignPO.class); // ContainerFeignPO containerFeignPO = JSON.parseObject(JSONObject.toJSONString(ajaxResult.get("data")), ContainerFeignPO.class);
shiftMaterialDetailDO.setContainerCode(containerFeignPO.getContainerCode()); // shiftMaterialDetailDO.setContainerCode(containerFeignPO.getContainerCode());
shiftMaterialDetailDO.setContainerType(containerFeignPO.getContainerType()); // shiftMaterialDetailDO.setContainerType(containerFeignPO.getContainerType());
shiftMaterialDetailDO.setContainerTypeName(containerFeignPO.getContainerTypeName()); // shiftMaterialDetailDO.setContainerTypeName(containerFeignPO.getContainerTypeName());
} }
/** /**