|
|
|
@ -185,15 +185,15 @@ public class SeCourseController extends JeecgController<SeCourse, ISeCourseServi |
|
|
|
|
String courseid = request.getParameter("id"); |
|
|
|
|
SeCourse seCourse = seCourseService.getById(courseid); |
|
|
|
|
|
|
|
|
|
if (seCourse.getNature() != null) { |
|
|
|
|
if (StringUtils.isNotBlank(seCourse.getNature())) { |
|
|
|
|
SeNature seNature = seNatureService.getById(seCourse.getNature()); |
|
|
|
|
seCourse.setNature(seNature.getContent()); |
|
|
|
|
} |
|
|
|
|
if (seCourse.getMajorid() != null) { |
|
|
|
|
if (StringUtils.isNotBlank(seCourse.getMajorid())) { |
|
|
|
|
SeMajor seMajor = seMajorService.getById(seCourse.getMajorid()); |
|
|
|
|
seCourse.setMajorid(seMajor.getName()); |
|
|
|
|
} |
|
|
|
|
if (seCourse.getAdvancedplacement() != null) { |
|
|
|
|
if (StringUtils.isNotBlank(seCourse.getAdvancedplacement())) { |
|
|
|
|
String[] courseids = seCourse.getAdvancedplacement().split(","); |
|
|
|
|
String advancedplacement = ""; |
|
|
|
|
for (String id : courseids) { |
|
|
|
|