fix 报名信息审核通过之后才能审核付款凭证
This commit is contained in:
+2
-2
@@ -420,8 +420,8 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
|
||||
extracted(payMeetingSituation, payMeeting);
|
||||
|
||||
Integer registerCheckResult = payMeetingSituation.getRegisterCheckResult();
|
||||
if (registerCheckResult.equals(MeetingSubitemCommon.SIGNUP_STATUS_0)) {
|
||||
throw new JeroBootException("报名信息未审核");
|
||||
if (!registerCheckResult.equals(MeetingSubitemCommon.SIGNUP_STATUS_1)) {
|
||||
throw new JeroBootException("报名信息未审核通过");
|
||||
}
|
||||
String paymentRecord = payMeetingSituation.getPaymentRecord();
|
||||
if (StrUtil.isBlank(paymentRecord)) {
|
||||
|
||||
Reference in New Issue
Block a user