fix 嘉宾修改报名信息

This commit is contained in:
lijiarao
2022-05-17 15:17:37 +08:00
parent 8d20f8569d
commit 9aa0109a37
@@ -1622,7 +1622,7 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
//只有待签到并且国际研讨会嘉宾可以修改
if (!Objects.equals(old.getCheckIn(), PayProjectCommon.NO)
|| old.getGuestType() == null
|| meetingType.equals(Integer.parseInt(MeetingCommon.INTERNATIONAL_MEETING)) ) {
|| !meetingType.equals(Integer.parseInt(MeetingCommon.INTERNATIONAL_MEETING)) ) {
throw new JeroBootException("只有待签到的国际研讨会嘉宾可以修改");
}
LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();