设备bug修复

dev2.0
郑明梁 2 years ago
parent b853ee66a5
commit e5d967895b

@ -12,7 +12,7 @@ import java.util.List;
@Data @Data
public class FilterDeviceInspectTakeRequest extends ListPageRequest { public class FilterDeviceInspectTakeRequest extends ListPageRequest {
private Integer id; private Long id;
/** /**
* *

@ -10,7 +10,7 @@ import java.util.Date;
@Data @Data
public class DeviceInspectTakeResponse { public class DeviceInspectTakeResponse {
private Integer id; private Long id;
/** /**
* *

@ -1,12 +1,15 @@
package com.glxp.api.service.inv.impl; package com.glxp.api.service.inv.impl;
import cn.hutool.core.bean.BeanUtil; import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.util.IdUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
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.Constant; import com.glxp.api.constant.Constant;
import com.glxp.api.constant.DeviceStatus;
import com.glxp.api.constant.DeviceType;
import com.glxp.api.dao.inv.DeviceInspectPlanDao; import com.glxp.api.dao.inv.DeviceInspectPlanDao;
import com.glxp.api.dao.inv.DeviceInspectPlanDelectMapper; import com.glxp.api.dao.inv.DeviceInspectPlanDelectMapper;
import com.glxp.api.dao.inv.DeviceInspectTaskDetailMapper; import com.glxp.api.dao.inv.DeviceInspectTaskDetailMapper;
@ -118,10 +121,10 @@ public class DeviceInspectPlanServiceImpl implements DeviceInspectPlanService {
deviceInspectPlanEntity.setAuditUser(customerService.getUserIdStr()); deviceInspectPlanEntity.setAuditUser(customerService.getUserIdStr());
// //审核通过,生成任务单 // //审核通过,生成任务单
// deviceInspectOrderService.addByPlanOrderId(orderId); // deviceInspectOrderService.addByPlanOrderId(orderId);
// //生成计划主表 //生成计划主表
// DeviceInspectTaskEntity deviceInspectTaskEntity = getDeviceInspectTaskEntity(orderId,expectedTime); DeviceInspectTaskEntity deviceInspectTaskEntity = getDeviceInspectTaskEntity(orderId,expectedTime);
// //生成计划详情主表 //生成计划详情主表
// getDeviceInspectTaskDetailEntity(orderId, deviceInspectTaskEntity.getOrderId()); getDeviceInspectTaskDetailEntity(orderId, deviceInspectTaskEntity.getOrderId());
} }
deviceInspectPlanDao.updateById(deviceInspectPlanEntity); deviceInspectPlanDao.updateById(deviceInspectPlanEntity);
return ResultVOUtils.success(); return ResultVOUtils.success();
@ -151,7 +154,8 @@ public class DeviceInspectPlanServiceImpl implements DeviceInspectPlanService {
deviceInspectTaskEntity.setDeptCode(deviceInspectPlanEntity.getDeptCode()); deviceInspectTaskEntity.setDeptCode(deviceInspectPlanEntity.getDeptCode());
deviceInspectTaskEntity.setInvCode(deviceInspectPlanEntity.getInvCode()); deviceInspectTaskEntity.setInvCode(deviceInspectPlanEntity.getInvCode());
deviceInspectTaskEntity.setCode(deviceInspectPlanEntity.getCode()); deviceInspectTaskEntity.setCode(deviceInspectPlanEntity.getCode());
deviceInspectTaskEntity.setStatus(0); deviceInspectTaskEntity.setType(DeviceType.TYPE_INSPECTTION);
deviceInspectTaskEntity.setStatus(DeviceStatus.DEVICE_STATUS_TEMP_UNDISTRIBUTTED);
deviceInspectTaskEntity.setInspectUser(deviceInspectPlanEntity.getInspectUser()); deviceInspectTaskEntity.setInspectUser(deviceInspectPlanEntity.getInspectUser());
deviceInspectTaskEntity.setRemark(deviceInspectPlanEntity.getRemark()); deviceInspectTaskEntity.setRemark(deviceInspectPlanEntity.getRemark());
deviceInspectTaskEntity.setCreateTime(new Date()); deviceInspectTaskEntity.setCreateTime(new Date());
@ -173,6 +177,7 @@ public class DeviceInspectPlanServiceImpl implements DeviceInspectPlanService {
} }
for (DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity : deviceInspectPlanDelectEntityList) { for (DeviceInspectPlanDelectEntity deviceInspectPlanDelectEntity : deviceInspectPlanDelectEntityList) {
DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntity = new DeviceInspectTaskDetailEntity(); DeviceInspectTaskDetailEntity deviceInspectTaskDetailEntity = new DeviceInspectTaskDetailEntity();
deviceInspectTaskDetailEntity.setId(IdUtil.getSnowflakeNextId());
deviceInspectTaskDetailEntity.setProjectCode(deviceInspectPlanEntity.getCode()); deviceInspectTaskDetailEntity.setProjectCode(deviceInspectPlanEntity.getCode());
deviceInspectTaskDetailEntity.setProjectContent(deviceInspectPlanDelectEntity.getContent()); deviceInspectTaskDetailEntity.setProjectContent(deviceInspectPlanDelectEntity.getContent());
deviceInspectTaskDetailEntity.setStatus(1); deviceInspectTaskDetailEntity.setStatus(1);

Loading…
Cancel
Save