|
|
|
@ -1410,7 +1410,7 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
|
|
|
|
|
}
|
|
|
|
|
return scrapDtoBySfc;
|
|
|
|
|
}
|
|
|
|
|
void creatInspectionTask(String site,String inspectionTaskBo,String sfc,String stepId){
|
|
|
|
|
void creatInspectionTask(String site,String inspectionTaskBo,String sfc,String stepId,String comments){
|
|
|
|
|
InspectionTask byId = inspectionTaskService.getById(inspectionTaskBo);
|
|
|
|
|
InspectionTask newInspectionTask = new InspectionTask();
|
|
|
|
|
if (StringUtil.notBlank(inspectionTaskBo)){
|
|
|
|
@ -1424,7 +1424,7 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
|
|
|
|
|
newInspectionTask.setTaskNo(newTaskNo);
|
|
|
|
|
newInspectionTask.setStatus(Constants.INSPECTION_TASK_STATUS_NEW);
|
|
|
|
|
newInspectionTask.setResult(null);
|
|
|
|
|
newInspectionTask.setComments(null);
|
|
|
|
|
newInspectionTask.setComments(comments);
|
|
|
|
|
newInspectionTask.setCreatedDateTime(LocalDateTime.now());
|
|
|
|
|
newInspectionTask.setModifiedDateTime(LocalDateTime.now());
|
|
|
|
|
}else {
|
|
|
|
@ -1457,6 +1457,7 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
|
|
|
|
|
task.setModifyUser(CommonMethods.getUser());
|
|
|
|
|
task.setModifiedDateTime(LocalDateTime.now());
|
|
|
|
|
task.setSfcDispatchBo(sfcDispatchBySfc.getHandle());
|
|
|
|
|
task.setComments(comments);
|
|
|
|
|
task.setSfc(sfc);
|
|
|
|
|
}
|
|
|
|
|
inspectionTaskService.save(newInspectionTask);
|
|
|
|
|