|
@@ -1805,6 +1805,13 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i
|
|
|
join = StringUtils.join(months,",");
|
|
|
}
|
|
|
musicGroupStudentFeeDao.batchUpdateCalender(join,musicGroupId);
|
|
|
+ List<MusicGroupStudentFee> fees = musicGroupStudentFeeDao.queryByMusicGroupId(musicGroupId);
|
|
|
+ Date date = new Date();
|
|
|
+ fees.forEach(e->{
|
|
|
+ e.setNextPaymentDate(musicGroupPaymentCalenderService.getNextPaymentDate(musicGroupId, null,e));
|
|
|
+ e.setUpdateTime(date);
|
|
|
+ });
|
|
|
+ musicGroupStudentFeeDao.batchUpdate(fees);
|
|
|
}
|
|
|
musicGroupDao.update(musicGroup);
|
|
|
//修改课程里面的教学点
|