Compare commits
2 Commits
18590dafb9
...
cb0be1cbbf
Author | SHA1 | Date | |
---|---|---|---|
cb0be1cbbf | |||
9a7170d9e9 |
@ -151,6 +151,8 @@ public class CurrTaskServiceImpl extends BaseService implements CurrTaskService
|
||||
currTaskInfoVo.setStatus(currTask.getStatus());
|
||||
}else if (currTask.getIsCache()==1){
|
||||
currTaskInfoVo.setStatus(2);
|
||||
}else {
|
||||
currTaskInfoVo.setStatus(0);
|
||||
}
|
||||
//生产单号
|
||||
if (currTask.getSheetNo()!=null){
|
||||
@ -171,12 +173,6 @@ public class CurrTaskServiceImpl extends BaseService implements CurrTaskService
|
||||
String nowStep="未开始";
|
||||
for (CurrTask currTask1:currTasks
|
||||
) {
|
||||
if (currTask1.getStatus()==1){
|
||||
nowStep=currTask1.getTargetPosition();
|
||||
}else if (currTask1.getIsCache()==1){
|
||||
nowStep=currTask.getLocationName();
|
||||
}
|
||||
allStep=allStep.concat("->").concat(currTask1.getTargetPosition());
|
||||
InStockInfo inStockInfo = inStockInfoServiceBiz.getOne(new QueryWrapper<InStockInfo>().eq(InStockInfo.TASK_ID, currTask1.getId()));
|
||||
if (inStockInfo!=null){
|
||||
List<InStockInfoVo> inStockInfoVoList=new ArrayList<>();
|
||||
@ -185,6 +181,15 @@ public class CurrTaskServiceImpl extends BaseService implements CurrTaskService
|
||||
inStockInfoVoList.add(inStockInfoVo);
|
||||
currTaskInfoVo.setInStockInfoVoList(inStockInfoVoList);
|
||||
}
|
||||
if (currTask1.getStatus()==1){
|
||||
nowStep=currTask1.getTargetPosition();
|
||||
}else if (currTask1.getIsCache()==1){
|
||||
nowStep=currTask.getLocationName();
|
||||
}
|
||||
if (currTaskInfoVo.getInStockInfoVoList().size()>0){
|
||||
nowStep=currTaskInfoVo.getInStockInfoVoList().get(0).getLocationName();
|
||||
}
|
||||
allStep=allStep.concat("->").concat(currTask1.getTargetPosition());
|
||||
}
|
||||
//
|
||||
currTaskInfoVo.setAllStep(allStep);
|
||||
|
Loading…
Reference in New Issue
Block a user