Commit 92b7e2e8 authored by suhuiguang's avatar suhuiguang

refact(检验开通):需求变更

1.增加资质状态字段,为后期预留报检 2.相关作废调整,手动作废,逻辑删除 3.2.相关作废调整,超期作废,修改资质、证状态为超期
parent 184733a9
......@@ -418,7 +418,8 @@ public class JyjcOpeningApplicationServiceImpl extends BaseService<JyjcOpeningAp
.eq(BaseEnterpriseCert::getUnitCode, jyjcOpeningApplication.getUnitCode())
.eq(BaseEnterpriseCert::getUnitType, Optional.ofNullable(OpenBizTypeEnumV2.getOneByCode(jyjcOpeningApplication.getOpenBizType())).map(OpenBizTypeEnumV2::getUnitType).orElse(null))
.eq(BaseEnterpriseCert::getCertTypeCode, certDto.getCertTypeCode())
.eq(BaseEnterpriseCert::getAgencyType, certDto.getAgencyType()))
.eq(BaseEnterpriseCert::getAgencyType, certDto.getAgencyType())
.eq(BaseEntity::getIsDelete, false))
.stream().map(BaseEnterpriseCert::getSequenceNbr).collect(Collectors.toList());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment