|
|
@ -1,23 +1,30 @@
|
|
|
|
package com.glxp.api.controller.inv;
|
|
|
|
package com.glxp.api.controller.inv;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.exceptions.ExceptionUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.thread.ThreadUtil;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
|
|
|
|
import com.glxp.api.constant.BasicExportTypeEnum;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.constant.Constant;
|
|
|
|
import com.glxp.api.constant.DeviceStatus;
|
|
|
|
import com.glxp.api.constant.DeviceStatus;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
|
|
|
|
|
|
|
|
import com.glxp.api.entity.system.SyncDataSetEntity;
|
|
|
|
import com.glxp.api.http.sync.SpGetHttpClient;
|
|
|
|
import com.glxp.api.http.sync.SpGetHttpClient;
|
|
|
|
import com.glxp.api.req.inv.FilterDeviceInspectTakeRequest;
|
|
|
|
import com.glxp.api.req.inv.FilterDeviceInspectTakeRequest;
|
|
|
|
import com.glxp.api.res.inv.DeviceInspectTakeResponse;
|
|
|
|
import com.glxp.api.res.inv.DeviceInspectTakeResponse;
|
|
|
|
import com.glxp.api.res.sync.SpsSyncDeviceTakeResponse;
|
|
|
|
import com.glxp.api.res.sync.SpsSyncDeviceTakeResponse;
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskDetailService;
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskDetailService;
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskService;
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskService;
|
|
|
|
|
|
|
|
import com.glxp.api.service.sync.HeartService;
|
|
|
|
|
|
|
|
import com.glxp.api.service.sync.SyncDataSetService;
|
|
|
|
import com.glxp.api.util.GennerOrderUtils;
|
|
|
|
import com.glxp.api.util.GennerOrderUtils;
|
|
|
|
import com.glxp.api.util.OkHttpCli;
|
|
|
|
import com.glxp.api.util.OkHttpCli;
|
|
|
|
import com.glxp.api.util.OrderNoTypeBean;
|
|
|
|
import com.glxp.api.util.OrderNoTypeBean;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.exception.ExceptionUtils;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
@ -56,6 +63,7 @@ public class DeviceInspectTakeController {
|
|
|
|
PageInfo<DeviceInspectTakeResponse> pageInfo = new PageInfo<>(list);
|
|
|
|
PageInfo<DeviceInspectTakeResponse> pageInfo = new PageInfo<>(list);
|
|
|
|
return ResultVOUtils.page(pageInfo);
|
|
|
|
return ResultVOUtils.page(pageInfo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udiwms/inv/device/inspect/take/uploadDeviceInspecTake")
|
|
|
|
@PostMapping("/udiwms/inv/device/inspect/take/uploadDeviceInspecTake")
|
|
|
|
public BaseResponse uploadDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
public BaseResponse uploadDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
deviceInspectTaskEntity.setUpdateTime(new Date());
|
|
|
|
deviceInspectTaskEntity.setUpdateTime(new Date());
|
|
|
@ -86,7 +94,6 @@ public class DeviceInspectTakeController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/udiwms/inv/device/inspect/take/addDeviceInspecTake")
|
|
|
|
@PostMapping("/udiwms/inv/device/inspect/take/addDeviceInspecTake")
|
|
|
|
public BaseResponse addDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
public BaseResponse addDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
String orderId = gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.DEVICE_INSPECT_PLAN_ORDER, "yyyyMMdd"));
|
|
|
|
String orderId = gennerOrderUtils.createStOrderNo(new OrderNoTypeBean(Constant.DEVICE_INSPECT_PLAN_ORDER, "yyyyMMdd"));
|
|
|
@ -105,23 +112,36 @@ public class DeviceInspectTakeController {
|
|
|
|
return ResultVOUtils.success(deviceInspectTaskEntity);
|
|
|
|
return ResultVOUtils.success(deviceInspectTaskEntity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
HeartService heartService;
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
SyncDataSetService syncDataSetService;
|
|
|
|
|
|
|
|
|
|
|
|
void UploadDeviceTake(Integer id, Integer type) {
|
|
|
|
void UploadDeviceTake(Integer id, Integer type) {
|
|
|
|
//提交上传到自助
|
|
|
|
//提交上传到自助
|
|
|
|
//查询任务表
|
|
|
|
//查询任务表
|
|
|
|
DeviceInspectTaskEntity deviceInspectTaskEntity=deviceInspectTaskService.getById(id);
|
|
|
|
// DeviceInspectTaskEntity deviceInspectTaskEntity = deviceInspectTaskService.getById(id);
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList = deviceInspectTaskDetailService
|
|
|
|
// List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList = deviceInspectTaskDetailService
|
|
|
|
.list(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk",deviceInspectTaskEntity.getOrderId()));
|
|
|
|
// .list(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk", deviceInspectTaskEntity.getOrderId()));
|
|
|
|
SpsSyncDeviceTakeResponse spsSyncDeviceTakeResponse=new SpsSyncDeviceTakeResponse();
|
|
|
|
// SpsSyncDeviceTakeResponse spsSyncDeviceTakeResponse = new SpsSyncDeviceTakeResponse();
|
|
|
|
spsSyncDeviceTakeResponse.setDeviceInspectTaskEntity(deviceInspectTaskEntity);
|
|
|
|
// spsSyncDeviceTakeResponse.setDeviceInspectTaskEntity(deviceInspectTaskEntity);
|
|
|
|
spsSyncDeviceTakeResponse.setDeviceInspectTaskDetailEntityList(deviceInspectTaskDetailEntityList);
|
|
|
|
// spsSyncDeviceTakeResponse.setDeviceInspectTaskDetailEntityList(deviceInspectTaskDetailEntityList);
|
|
|
|
spsSyncDeviceTakeResponse.setType(type);
|
|
|
|
// spsSyncDeviceTakeResponse.setType(type);
|
|
|
|
spGetHttpClient.postAllDeviceTake(spsSyncDeviceTakeResponse);
|
|
|
|
// spGetHttpClient.postAllDeviceTake(spsSyncDeviceTakeResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SyncDataSetEntity syncDataSetEntity = syncDataSetService.findSet();
|
|
|
|
|
|
|
|
ThreadUtil.execAsync(() -> {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
heartService.pushData(syncDataSetEntity, null, BasicExportTypeEnum.DEVICE_TASK);
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
|
|
|
log.error(ExceptionUtils.getStackTrace(e));
|
|
|
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------ 详情方法--------------------------------------------------------------//
|
|
|
|
//------------------------------------------ 详情方法--------------------------------------------------------------//
|
|
|
@ -162,5 +182,4 @@ public class DeviceInspectTakeController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|