|
|
|
@ -707,12 +707,28 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
}*/ |
|
|
|
|
BladeUser user = AuthUtil.getUser(); |
|
|
|
|
QuestDetailEntity questDetailer = new QuestDetailEntity(); |
|
|
|
|
List<QuestDetailEntity> questDetailList = baseMapper.selectTaskInfo(questNum, questDetailer); |
|
|
|
|
|
|
|
|
|
List<Long> ids = null; |
|
|
|
|
if(ObjectUtils.isNotNull(taskSearchDTO.getQuestDetailIds())){ |
|
|
|
|
|
|
|
|
|
for (String questDetailId : taskSearchDTO.getQuestDetailIds()) { |
|
|
|
|
if(ObjectUtils.isNull(ids)){ |
|
|
|
|
ids = new ArrayList<>(); |
|
|
|
|
} |
|
|
|
|
ids.add(Long.parseLong(questDetailId)); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
List<QuestDetailEntity> questDetailList = baseMapper.selectTaskInfoForIds(questNum, questDetailer,ids); |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> questDetailList {}",questDetailList); |
|
|
|
|
|
|
|
|
|
// 在库包件状态修改
|
|
|
|
|
if(ObjectUtils.isNotNull(taskSearchDTO.getQuestDetailIds()) && ObjectUtils.isNotNull(taskSearchDTO.getQuestDetailIds().get(0)) ){ |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",1); |
|
|
|
|
List<QuestDetailEntity> list = new ArrayList<>(); |
|
|
|
|
AtomicBoolean s = new AtomicBoolean(false); |
|
|
|
|
taskSearchDTO.getQuestDetailIds().stream().forEach( i ->{ |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",i); |
|
|
|
|
|
|
|
|
|
//查询当前包件盘点状态
|
|
|
|
|
boolean b = questDetailList.stream().anyMatch(q -> q.getId().equals(i) && q.getQuestStatus().equals(1)); |
|
|
|
|
if(b){ |
|
|
|
@ -727,16 +743,24 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
// questDetail.setQuestStatus(1);
|
|
|
|
|
list.add(questDetail); |
|
|
|
|
}); |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",1); |
|
|
|
|
|
|
|
|
|
if(s.get()){ |
|
|
|
|
return Resp.scanFail("包含已盘点的数据!请勿重复提交!","包含已盘点的数据!请勿重复提交!"); |
|
|
|
|
} |
|
|
|
|
baseMapper.updatePositionCodeList(questNum,list); |
|
|
|
|
} |
|
|
|
|
//处理盘点的包件
|
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",2); |
|
|
|
|
|
|
|
|
|
if(ObjectUtils.isNotNull(taskSearchDTO.getQuestDetailList())){ |
|
|
|
|
List<QuestDetailEntity> detailEntityList = new ArrayList<>(); |
|
|
|
|
//处理的包件
|
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",4); |
|
|
|
|
|
|
|
|
|
taskSearchDTO.getQuestDetailList().forEach(i ->{ |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",45); |
|
|
|
|
|
|
|
|
|
Long taskID; |
|
|
|
|
if(ObjectUtils.isNotNull(i.getId())){ |
|
|
|
|
taskID = i.getId(); |
|
|
|
@ -825,10 +849,14 @@ public class TaskQuestServiceImpl extends BaseServiceImpl<TaskQuestMapper, TaskQ
|
|
|
|
|
detailEntityList.add(questDetail); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",5); |
|
|
|
|
|
|
|
|
|
//修改货位
|
|
|
|
|
if(!detailEntityList.isEmpty()){ |
|
|
|
|
baseMapper.updatePositionCodeList(questNum,detailEntityList); |
|
|
|
|
} |
|
|
|
|
log.info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> tag {}",6); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return R.success("成功"); |
|
|
|
|
} |
|
|
|
|