guarantee-lsq 2 년 전
부모
커밋
d48209fcc3
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      platform-service/src/main/java/com/platform/service/fill/impl/FillGatherTaskServiceImpl.java

+ 2 - 1
platform-service/src/main/java/com/platform/service/fill/impl/FillGatherTaskServiceImpl.java

@@ -239,7 +239,7 @@ public class FillGatherTaskServiceImpl extends BaseServiceImpl<FillGatherTaskMap
     public FillGatherTaskVO getVOById(String id) {
         FillGatherTask task = mapper.selectByPrimaryKey(id);
         FillGatherTaskVO vo = BeanConverterUtil.copyObjectProperties(task,FillGatherTaskVO.class);
-        vo.setDetails(fillGatherTaskDetailMapper.selectVOByTaskId(id));
+        //vo.setDetails(fillGatherTaskDetailMapper.selectVOByTaskId(id));
         return vo;
     }
 
@@ -325,6 +325,7 @@ public class FillGatherTaskServiceImpl extends BaseServiceImpl<FillGatherTaskMap
             detail.setSbId(sbId);
             detail.setTaskId(taskId);
             detail.setId(IdGeneratorUtils.getObjectId());
+            detail.setStatus(0);
             details.add(detail);
         }
         fillGatherTaskDetailMapper.insertListforComplex(details);