|
@@ -5218,7 +5218,7 @@ public class TopOldOrderServiceImpl extends ServiceImpl<TopOldOrderMapper, TopOl
|
|
|
TopOldOrderStudyVo studyVo = studyVos.stream().filter(x -> x.getUnderOrdeEnrollItemId().equals(vo.getSignId())
|
|
|
&& x.getIdNum().equals(vo.getUserCard())).findFirst().orElse(null);
|
|
|
if (ObjectUtils.isNotNull(studyVo) && ObjectUtils.isNotNull(studyVo.getStudyHours())) {
|
|
|
- if (ObjectUtils.isNull(studyVo.getStudyHours()) && studyVo.getStudyHours() == 0) {
|
|
|
+ if (studyVo.getStudyHours() == 0) {
|
|
|
vo.setStudyStatus("未开始");
|
|
|
} else if (studyVo.getStudyHours() < studyVo.getTotalHours()) {
|
|
|
vo.setStudyStatus("学习中");
|