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