线上: bug
parent
b5f0c0992f
commit
61b0c76aa2
|
|
@ -295,7 +295,13 @@ public class QualFilingOrchestrator {
|
||||||
PageResult<QualFilingEntity> pageResult = qualFilingGateway.page(domainQuery);
|
PageResult<QualFilingEntity> pageResult = qualFilingGateway.page(domainQuery);
|
||||||
Map<Long, QualFilingReviewEntity> reviewMap = loadReviewMap(pageResult.getRecords());
|
Map<Long, QualFilingReviewEntity> reviewMap = loadReviewMap(pageResult.getRecords());
|
||||||
List<QualFilingCO> records = pageResult.getRecords().stream()
|
List<QualFilingCO> records = pageResult.getRecords().stream()
|
||||||
.map(entity -> toListCO(entity, reviewMap))
|
.map(entity -> {
|
||||||
|
QualFilingCO listCO = toListCO(entity, reviewMap);
|
||||||
|
if (listCO != null) {
|
||||||
|
listCO.setFilingNo(String.valueOf(entity.getId()));
|
||||||
|
}
|
||||||
|
return listCO;
|
||||||
|
})
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
return PageResult.of(records, pageResult.getTotal(), pageResult.getPageNum(), pageResult.getPageSize());
|
return PageResult.of(records, pageResult.getTotal(), pageResult.getPageNum(), pageResult.getPageSize());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -327,6 +327,12 @@ public class ComplianceCheckUtil {
|
||||||
if (currentValue.length() > 0) {
|
if (currentValue.length() > 0) {
|
||||||
currentValue.append(";");
|
currentValue.append(";");
|
||||||
}
|
}
|
||||||
|
IndustryEnum industryEnum = IndustryEnum.ofCode(scope);
|
||||||
|
if (industryEnum != null) {
|
||||||
|
scope = industryEnum.getValue();
|
||||||
|
} else {
|
||||||
|
scope = "未知行业范围";
|
||||||
|
}
|
||||||
currentValue.append("业务[").append(scope).append("] 技术负责人 ")
|
currentValue.append("业务[").append(scope).append("] 技术负责人 ")
|
||||||
.append(technicalDirectorCount).append("/1,过程控制负责人 ")
|
.append(technicalDirectorCount).append("/1,过程控制负责人 ")
|
||||||
.append(processControlLeaderCount).append("/1");
|
.append(processControlLeaderCount).append("/1");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue