Compare commits

...

2 Commits

Author SHA1 Message Date
luotaiqian c48c6c6e9c Merge remote-tracking branch 'origin/dev' into dev 2026-07-07 18:10:13 +08:00
luotaiqian 8a493c941e fix bug orgId not send 2026-07-07 18:09:38 +08:00
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);
}