|
|
@@ -234,7 +234,7 @@ public class OrgCognizanceServiceImpl extends BaseMybatisDao<OrgCognizanceMapper
|
|
|
cog.setAcceptDate(recordTime);
|
|
|
} else if (OrgCognizanceStatus.getStatus(cog.getState()) == OrgCognizanceStatus.ISSUING) {
|
|
|
cog.setIssuingDate(recordTime);
|
|
|
- o.setCertificateNumber(null == cog.getCertificateNumber() ? "" : cog.getCertificateNumber());
|
|
|
+ o.setCertificateNumber(StringUtils.isBlank(cog.getCertificateNumber()) ? "" : cog.getCertificateNumber());
|
|
|
o.setIssuingDate(recordTime);
|
|
|
o.setCogContacts(null == cog.getContacts() ? null : cog.getContacts());
|
|
|
organizationIdentityMapper.updateByPrimaryKeySelective(o);
|