|
|
|
@ -104,12 +104,13 @@ public class DeviceInspectPlanServiceImpl implements DeviceInspectPlanService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public BaseResponse updateStatus(String orderId, Integer status, String inspectUser,Date expectedTime) {
|
|
|
|
|
public BaseResponse updateStatus(String orderId, Integer status, String inspectUser,Date expectedTime,Integer planStatus) {
|
|
|
|
|
if (StrUtil.isBlank(orderId) || null == status) {
|
|
|
|
|
return ResultVOUtils.paramVerifyFail();
|
|
|
|
|
}
|
|
|
|
|
DeviceInspectPlanEntity deviceInspectPlanEntity = deviceInspectPlanDao.selectByOrderId(orderId);
|
|
|
|
|
deviceInspectPlanEntity.setStatus(status);
|
|
|
|
|
deviceInspectPlanEntity.setPlanStatus(planStatus);
|
|
|
|
|
deviceInspectPlanEntity.setUpdateTime(new Date());
|
|
|
|
|
deviceInspectPlanEntity.setInspectUser(inspectUser);
|
|
|
|
|
if (status == 2) {
|
|
|
|
|