fix bug orgId not send
parent
566fbe4965
commit
8a493c941e
|
|
@ -313,7 +313,8 @@ 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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue