fix bug orgId not send

dev
luotaiqian 2026-07-07 18:09:38 +08:00
parent 566fbe4965
commit 8a493c941e
1 changed files with 2 additions and 1 deletions

View File

@ -313,7 +313,8 @@ public class QualFilingChangeExecutor implements QualFilingChangeApi {
if (changeEntity == null) {
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);
}