guarantee-lsq 2 年之前
父節點
當前提交
d48209fcc3

+ 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);