|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.glxp.api.controller.inv;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
@ -7,11 +8,14 @@ import com.glxp.api.constant.Constant;
|
|
|
|
|
import com.glxp.api.constant.DeviceStatus;
|
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
|
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
|
|
|
|
|
import com.glxp.api.http.sync.SpGetHttpClient;
|
|
|
|
|
import com.glxp.api.req.inv.FilterDeviceInspectTakeRequest;
|
|
|
|
|
import com.glxp.api.res.inv.DeviceInspectTakeResponse;
|
|
|
|
|
import com.glxp.api.res.sync.SpsSyncDeviceTakeResponse;
|
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskDetailService;
|
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskService;
|
|
|
|
|
import com.glxp.api.util.GennerOrderUtils;
|
|
|
|
|
import com.glxp.api.util.OkHttpCli;
|
|
|
|
|
import com.glxp.api.util.OrderNoTypeBean;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@ -37,6 +41,8 @@ public class DeviceInspectTakeController {
|
|
|
|
|
DeviceInspectTaskDetailService deviceInspectTaskDetailService;
|
|
|
|
|
@Resource
|
|
|
|
|
private GennerOrderUtils gennerOrderUtils;
|
|
|
|
|
@Resource
|
|
|
|
|
SpGetHttpClient spGetHttpClient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询设设备巡检任务接口
|
|
|
|
@ -59,6 +65,7 @@ public class DeviceInspectTakeController {
|
|
|
|
|
deviceInspectTaskEntity.setEndTime(new Date());
|
|
|
|
|
}
|
|
|
|
|
boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity);
|
|
|
|
|
UploadDeviceTake(deviceInspectTaskEntity.getId(),2);
|
|
|
|
|
if(!falg){
|
|
|
|
|
return ResultVOUtils.error(999,"更新失败");
|
|
|
|
|
}
|
|
|
|
@ -69,6 +76,9 @@ public class DeviceInspectTakeController {
|
|
|
|
|
public BaseResponse uploadDeviceTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
|
deviceInspectTaskEntity.setUpdateTime(new Date());
|
|
|
|
|
boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity);
|
|
|
|
|
if(deviceInspectTaskEntity.getStatus() == 2){
|
|
|
|
|
UploadDeviceTake(deviceInspectTaskEntity.getId(),1);
|
|
|
|
|
}
|
|
|
|
|
if(!falg){
|
|
|
|
|
return ResultVOUtils.error(999,"更新失败");
|
|
|
|
|
}
|
|
|
|
@ -90,9 +100,23 @@ public class DeviceInspectTakeController {
|
|
|
|
|
public BaseResponse delectDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
|
|
|
|
|
|
|
|
|
|
deviceInspectTaskService.delectDeviceInspectTask(deviceInspectTaskEntity);
|
|
|
|
|
deviceInspectTaskDetailService.remove(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk",deviceInspectTaskEntity.getOrderId()));
|
|
|
|
|
UploadDeviceTake(deviceInspectTaskEntity.getId(),3);
|
|
|
|
|
return ResultVOUtils.success(deviceInspectTaskEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UploadDeviceTake(Integer id,Integer type){
|
|
|
|
|
//提交上传到自助
|
|
|
|
|
//查询任务表
|
|
|
|
|
DeviceInspectTaskEntity deviceInspectTaskEntity=deviceInspectTaskService.getById(id);
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList = deviceInspectTaskDetailService
|
|
|
|
|
.list(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk",deviceInspectTaskEntity.getOrderId()));
|
|
|
|
|
SpsSyncDeviceTakeResponse spsSyncDeviceTakeResponse=new SpsSyncDeviceTakeResponse();
|
|
|
|
|
spsSyncDeviceTakeResponse.setDeviceInspectTaskEntity(deviceInspectTaskEntity);
|
|
|
|
|
spsSyncDeviceTakeResponse.setDeviceInspectTaskDetailEntityList(deviceInspectTaskDetailEntityList);
|
|
|
|
|
spsSyncDeviceTakeResponse.setType(type);
|
|
|
|
|
spGetHttpClient.postAllDeviceTake(spsSyncDeviceTakeResponse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|