|
@@ -617,7 +617,7 @@ public class ExtractConfigServiceImpl implements ExtractConfigService {
|
|
ExtractConfig extractConfig = this.findConfig(condition);
|
|
ExtractConfig extractConfig = this.findConfig(condition);
|
|
if(extractConfig==null){
|
|
if(extractConfig==null){
|
|
extractConfig = new ExtractConfig(examCourseDto);
|
|
extractConfig = new ExtractConfig(examCourseDto);
|
|
- Course course = courseRepo.findFirstByCodeAndOrgId(condition.getCourseCode(),condition.getOrgId());
|
|
|
|
|
|
+ Course course = courseRepo.findFirstByCodeAndOrgId(examCourseDto.getCourseCode(),examCourseDto.getOrgId().toString());
|
|
extractConfig.setCourse(course);
|
|
extractConfig.setCourse(course);
|
|
}
|
|
}
|
|
Course course = extractConfig.getCourse();
|
|
Course course = extractConfig.getCourse();
|