fix 无法编辑会员年会会议

This commit is contained in:
lijiarao
2022-06-22 17:45:23 +08:00
parent 9feb360325
commit a227f945b6
@@ -398,10 +398,10 @@ public class PayMeetingServiceImpl extends ServiceImpl<PayMeetingMapper, PayMeet
}
if (oldMeeting != null){
//信息交流会是一类, 标准宣贯和学习培训 是一类, 这两类不能护改
if (MeetingCommon.TB_MEETING_3.equals(standardMeetingType)&& !MeetingCommon.TB_MEETING_3.equals(oldMeeting.getTbMeetingType().toString())) {
if (MeetingCommon.TB_MEETING_3.equals(tbMeetingType)&& !MeetingCommon.TB_MEETING_3.equals(oldMeeting.getTbMeetingType().toString())) {
throw new JeroBootException("标协会议类型不可修改");
}
if (!MeetingCommon.TB_MEETING_3.equals(standardMeetingType)&& MeetingCommon.TB_MEETING_3.equals(oldMeeting.getTbMeetingType().toString())){
if (!MeetingCommon.TB_MEETING_3.equals(tbMeetingType)&& MeetingCommon.TB_MEETING_3.equals(oldMeeting.getTbMeetingType().toString())){
throw new JeroBootException("标协会议类型不可修改");
}
}