|
@@ -784,7 +784,7 @@ public class StudentRegistrationServiceImpl extends BaseServiceImpl<Long, Studen
|
|
|
if (masterTotalPrice.doubleValue() > studentRegistration.getSurplusCourseFee().doubleValue()) {
|
|
|
throw new BizException("用户信息发生变动,请重新提交");
|
|
|
}
|
|
|
- if (oldMusicGroupId == newMusicGroupId) {
|
|
|
+ if (oldMusicGroupId.equals(newMusicGroupId)) {
|
|
|
continue;
|
|
|
}
|
|
|
courseScheduleStudentPaymentService.updateCourseActualPrice(Arrays.asList(oldMusicGroupId), null, GroupType.MUSIC);
|