|
@@ -736,7 +736,9 @@ public class CourseServiceImpl extends ServiceImpl<CourseMapper, Course> impleme
|
|
|
goodsUserVo.setErJianErZao(false);
|
|
|
goodsUserVo.setUserProfile(0);
|
|
|
if(Validator.isNotEmpty(fullName)){
|
|
|
+ Boolean flag = false;
|
|
|
if(fullName.equals("继续教育二级建造师")||fullName.equals("继续教育二级造价师")){
|
|
|
+ flag = true;
|
|
|
goodsUserVo.setErJianErZao(true);
|
|
|
}else if (goodsUserVo.getEducationName().equals("考前培训") && goodsUserVo.getProjectName().equals("施工现场专业人员")){
|
|
|
int count = iUserProfileService.count(new LambdaQueryWrapper<UserProfile>()
|
|
@@ -750,8 +752,12 @@ public class CourseServiceImpl extends ServiceImpl<CourseMapper, Course> impleme
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ if(goodsUserVo.getEducationName().equals("继续教育") && goodsUserVo.getProjectName().equals("施工现场专业人员")){
|
|
|
+ flag = true;
|
|
|
+ }
|
|
|
+
|
|
|
//继续课程显示班级名称
|
|
|
- if (fullName.contains("继续教育")){
|
|
|
+ if (flag){
|
|
|
goodsUserVo.setGoodsName(classGradeVo.getClassName());
|
|
|
}
|
|
|
}
|