|
|
@@ -102,7 +102,9 @@ public class EHSQGR009_202400RecordOFData implements IDynamicOFData {
|
|
|
String creator = securityCheckDO.getCreator();
|
|
|
if (StringUtils.isNotBlank(creator)){
|
|
|
AdminUserRespDTO adminUserRespDTO = adminUserApi.getUser(creator).getCheckedData();
|
|
|
- result.put("value14", adminUserRespDTO.getSignUrl());
|
|
|
+ if (adminUserRespDTO != null){
|
|
|
+ result.put("value14", adminUserRespDTO.getSignUrl());
|
|
|
+ }
|
|
|
}else{
|
|
|
result.put("value14", creator);
|
|
|
}
|
|
|
@@ -193,7 +195,9 @@ public class EHSQGR009_202400RecordOFData implements IDynamicOFData {
|
|
|
String creator = securityCheckDO.getCreator();
|
|
|
if (StringUtils.isNotBlank(creator)){
|
|
|
AdminUserRespDTO adminUserRespDTO = adminUserApi.getUser(creator).getCheckedData();
|
|
|
- result.put("value14", adminUserRespDTO.getSignUrl());
|
|
|
+ if (adminUserRespDTO != null){
|
|
|
+ result.put("value14", adminUserRespDTO.getSignUrl());
|
|
|
+ }
|
|
|
}else{
|
|
|
result.put("value14", creator);
|
|
|
}
|