f9eef92c by xiaojie

【数据资产】

1、认证变更跨平台审批
1 parent a6ba6f0f
......@@ -302,7 +302,7 @@ public class EnterpriseChangeApproveServiceImpl implements EnterpriseChangeAppro
vo.setBusinessLicenseStartEnd(ChangeInfoUtil.getStartEnd(vo.getBusinessLicenseTerm(),vo.getBusinessLicenseStartDate(),vo.getBusinessLicenseEndDate()));
//生成变更信息
vo.setChangeList(enterpriseService.getChange(entity.getSourceGuid(), ObjectUtils.isEmpty(entity.getUpdateTime()) ? entity.getCreateTime() : entity.getUpdateTime()));
vo.setChangeList(enterpriseService.getChange(entity.getSourceGuid(), entity.getCreateTime()));
return vo;
}
......
......@@ -205,7 +205,7 @@ public class EnterpriseServiceImpl extends FlowAbstractImpl implements Enterpris
LambdaQueryWrapper<MfEnterpriseChangeApprove> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(MfEnterpriseChangeApprove::getSourceGuid, sourceGuid);
queryWrapper.eq(MfEnterpriseChangeApprove::getBizApproveState, ApprovalStateEnum.PASSED.getValue());
queryWrapper.le(MfEnterpriseChangeApprove::getCreateTime, createTime);
queryWrapper.lt(MfEnterpriseChangeApprove::getCreateTime, createTime);
queryWrapper.orderByDesc(MfEnterpriseChangeApprove::getCreateTime);
List<MfEnterpriseChangeApprove> approveList = mfEnterpriseChangeApproveService.list(queryWrapper);
if(CollectionUtils.isEmpty(approveList)){
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!