|
@@ -1829,7 +1829,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
if (StringUtils.isNotEmpty(maxRecordNo)) {
|
|
|
HashMap<String, String> stringStringHashMap = new HashMap<>();
|
|
|
stringStringHashMap.put("type", "记录表");
|
|
|
- if (trialSelfInspectionRecord != null) {
|
|
|
+ if (trialSelfInspectionRecord != null && StringUtils.isNotEmpty(trialSelfInspectionRecord.getRecordNo())) {
|
|
|
stringStringHashMap.put("valueStr", trialSelfInspectionRecord.getRecordNo());
|
|
|
return stringStringHashMap;
|
|
|
}
|
|
@@ -1846,7 +1846,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
if (StringUtils.isNotEmpty(maxReportNo)) {
|
|
|
HashMap<String, String> stringStringHashMap = new HashMap<>();
|
|
|
stringStringHashMap.put("type", "报告单");
|
|
|
- if (trialSelfInspectionRecord != null) {
|
|
|
+ if (trialSelfInspectionRecord != null && StringUtils.isNotEmpty(trialSelfInspectionRecord.getReportNo())) {
|
|
|
stringStringHashMap.put("valueStr", trialSelfInspectionRecord.getReportNo());
|
|
|
return stringStringHashMap;
|
|
|
}
|
|
@@ -1893,7 +1893,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
//记录表
|
|
|
HashMap<String, String> stringStringHashMap = new HashMap<>();
|
|
|
stringStringHashMap.put("type", "记录表");
|
|
|
- if (trialSelfInspectionRecord != null) {
|
|
|
+ if (trialSelfInspectionRecord != null && StringUtils.isNotEmpty(trialSelfInspectionRecord.getRecordNo())) {
|
|
|
stringStringHashMap.put("valueStr", trialSelfInspectionRecord.getRecordNo());
|
|
|
return stringStringHashMap;
|
|
|
}
|
|
@@ -1940,7 +1940,7 @@ public class TrialSelfInspectionRecordServiceImpl extends BaseServiceImpl<TrialS
|
|
|
//报告单
|
|
|
HashMap<String, String> stringStringHashMap = new HashMap<>();
|
|
|
stringStringHashMap.put("type", "报告单");
|
|
|
- if (trialSelfInspectionRecord != null) {
|
|
|
+ if (trialSelfInspectionRecord != null && StringUtils.isNotEmpty(trialSelfInspectionRecord.getReportNo())) {
|
|
|
stringStringHashMap.put("valueStr", trialSelfInspectionRecord.getReportNo());
|
|
|
return stringStringHashMap;
|
|
|
}
|