|
@@ -1047,6 +1047,14 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i
|
|
|
musicGroup.setMemo(memo);
|
|
|
musicGroup.setStatus(MusicGroupStatusEnum.AUDIT_FAILED);
|
|
|
musicGroupDao.update(musicGroup);
|
|
|
+ //修改缴费项目状态
|
|
|
+ List<MusicGroupPaymentCalender> musicGroupPaymentCalenders = musicGroupPaymentCalenderDao.findByMusicGroupId(musicGroupId);
|
|
|
+ if(musicGroupPaymentCalenders != null && musicGroupPaymentCalenders.size() > 0){
|
|
|
+ musicGroupPaymentCalenders.forEach(e->{
|
|
|
+ e.setStatus(MusicGroupPaymentCalender.PaymentCalenderStatusEnum.REJECT);
|
|
|
+ });
|
|
|
+ musicGroupPaymentCalenderDao.batchUpdate(musicGroupPaymentCalenders);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|