设备任务同步到自助

dev2.0
郑明梁 2 years ago
parent d5bcc60287
commit 025d2d4b67

@ -1,5 +1,6 @@
package com.glxp.api.controller.inv; package com.glxp.api.controller.inv;
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;
@ -7,11 +8,14 @@ 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.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.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.util.GennerOrderUtils; import com.glxp.api.util.GennerOrderUtils;
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.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
@ -37,6 +41,8 @@ public class DeviceInspectTakeController {
DeviceInspectTaskDetailService deviceInspectTaskDetailService; DeviceInspectTaskDetailService deviceInspectTaskDetailService;
@Resource @Resource
private GennerOrderUtils gennerOrderUtils; private GennerOrderUtils gennerOrderUtils;
@Resource
SpGetHttpClient spGetHttpClient;
/** /**
* *
@ -59,6 +65,7 @@ public class DeviceInspectTakeController {
deviceInspectTaskEntity.setEndTime(new Date()); deviceInspectTaskEntity.setEndTime(new Date());
} }
boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity); boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity);
UploadDeviceTake(deviceInspectTaskEntity.getId(),2);
if(!falg){ if(!falg){
return ResultVOUtils.error(999,"更新失败"); return ResultVOUtils.error(999,"更新失败");
} }
@ -69,6 +76,9 @@ public class DeviceInspectTakeController {
public BaseResponse uploadDeviceTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) { public BaseResponse uploadDeviceTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
deviceInspectTaskEntity.setUpdateTime(new Date()); deviceInspectTaskEntity.setUpdateTime(new Date());
boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity); boolean falg=deviceInspectTaskService.updateById(deviceInspectTaskEntity);
if(deviceInspectTaskEntity.getStatus() == 2){
UploadDeviceTake(deviceInspectTaskEntity.getId(),1);
}
if(!falg){ if(!falg){
return ResultVOUtils.error(999,"更新失败"); return ResultVOUtils.error(999,"更新失败");
} }
@ -90,9 +100,23 @@ public class DeviceInspectTakeController {
public BaseResponse delectDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) { public BaseResponse delectDeviceInspecTake(@RequestBody DeviceInspectTaskEntity deviceInspectTaskEntity) {
deviceInspectTaskService.delectDeviceInspectTask(deviceInspectTaskEntity); deviceInspectTaskService.delectDeviceInspectTask(deviceInspectTaskEntity);
deviceInspectTaskDetailService.remove(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk",deviceInspectTaskEntity.getOrderId()));
UploadDeviceTake(deviceInspectTaskEntity.getId(),3);
return ResultVOUtils.success(deviceInspectTaskEntity); 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);
}

@ -597,4 +597,15 @@ public class SpGetHttpClient {
} }
//上传设备任务
public BaseResponse<String> postAllDeviceTake(SpsSyncDeviceTakeResponse spsSyncDeviceTakeResponse) {
String json = JSONUtil.toJsonStr(spsSyncDeviceTakeResponse);
String result = okHttpCli.doPostJson(getIpUrl() + "/directToSpms" + "/deviceTakeApi/sps/sync/deviceTake/upload", json, buildHeader());
BaseResponse<String> response =
JSONObject.parseObject(result, new TypeReference<BaseResponse<String>>() {
});
return response;
}
} }

@ -0,0 +1,19 @@
package com.glxp.api.res.sync;
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
import com.glxp.api.entity.purchase.PurOrderDetailEntity;
import com.glxp.api.entity.purchase.PurOrderEntity;
import lombok.Data;
import java.util.List;
//同步设备任务
@Data
public class SpsSyncDeviceTakeResponse {
private DeviceInspectTaskEntity deviceInspectTaskEntity;
private List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntityList;
private Integer type; //1 新增 2 编辑 3删除
}
Loading…
Cancel
Save