Compare commits

..

No commits in common. "c48c6c6e9cab552fdea6e13153106dd2afbba7fc" and "274c48ba4ab0ef426e0741568d70d72eaf2ea17f" have entirely different histories.

1 changed files with 1 additions and 2 deletions

View File

@ -313,8 +313,7 @@ public class QualFilingChangeExecutor implements QualFilingChangeApi {
if (changeEntity == null) { if (changeEntity == null) {
throw new BizException(ErrorCode.QUAL_FILING_CHANGE_NOT_FOUND); throw new BizException(ErrorCode.QUAL_FILING_CHANGE_NOT_FOUND);
} }
if (QualFilingStatusEnum.REVIEWING.getCode() != changeEntity.getFilingStatusCode() if (QualFilingStatusEnum.REVIEWING.getCode() != changeEntity.getFilingStatusCode()) {
&& QualFilingStatusEnum.CHANGE_REVIEWING.getCode() != changeEntity.getFilingStatusCode()) {
throw new BizException(ErrorCode.STATUS_NOT_APPROVED); throw new BizException(ErrorCode.STATUS_NOT_APPROVED);
} }