状态导出
This commit is contained in:
+10
@@ -3526,6 +3526,11 @@ public class ProjectLibraryBaseServiceImpl extends ServiceImpl<ProjectLibraryBas
|
|||||||
QueryWrapper<ProjectLawsInventoryEO> pliQueryWrap = new QueryWrapper<>();
|
QueryWrapper<ProjectLawsInventoryEO> pliQueryWrap = new QueryWrapper<>();
|
||||||
pliQueryWrap.lambda().eq(ProjectLawsInventoryEO::getProjectLibraryId,projectLibraryId);
|
pliQueryWrap.lambda().eq(ProjectLawsInventoryEO::getProjectLibraryId,projectLibraryId);
|
||||||
List<ProjectLawsInventoryEO> pliEOList = this.projectLawsInventoryEOMapper.selectList(pliQueryWrap);
|
List<ProjectLawsInventoryEO> pliEOList = this.projectLawsInventoryEOMapper.selectList(pliQueryWrap);
|
||||||
|
|
||||||
|
//法规清单绑定平台件,需要特殊处理
|
||||||
|
pliEOList = getProjectLawsInventoryEOS(pliEOList);
|
||||||
|
|
||||||
|
|
||||||
List<SysDictItem> sysDictItems = new ArrayList<>();
|
List<SysDictItem> sysDictItems = new ArrayList<>();
|
||||||
String pliDutyTerritoryStr = pliEOList.stream().map(ProjectLawsInventoryEO::getDutyTerritory).collect(Collectors.joining(","));
|
String pliDutyTerritoryStr = pliEOList.stream().map(ProjectLawsInventoryEO::getDutyTerritory).collect(Collectors.joining(","));
|
||||||
if (StringUtils.isNotEmpty(pliDutyTerritoryStr)) {
|
if (StringUtils.isNotEmpty(pliDutyTerritoryStr)) {
|
||||||
@@ -3772,6 +3777,11 @@ public class ProjectLibraryBaseServiceImpl extends ServiceImpl<ProjectLibraryBas
|
|||||||
}
|
}
|
||||||
return flag;
|
return flag;
|
||||||
}).distinct().collect(Collectors.toList());
|
}).distinct().collect(Collectors.toList());
|
||||||
|
|
||||||
|
//认证清单绑定平台件,需要特殊处理
|
||||||
|
projectCertificationInventoryEOList = getProjectCertificationInventoryEOS(projectCertificationInventoryEOList);
|
||||||
|
|
||||||
|
|
||||||
String pciDutyTerritoryStr = projectCertificationInventoryEOList.stream().map(ProjectCertificationInventoryEO::getDutyTerritory).collect(Collectors.joining(","));
|
String pciDutyTerritoryStr = projectCertificationInventoryEOList.stream().map(ProjectCertificationInventoryEO::getDutyTerritory).collect(Collectors.joining(","));
|
||||||
List<SysDictItem> sysDictItems = new ArrayList<>();
|
List<SysDictItem> sysDictItems = new ArrayList<>();
|
||||||
if (StringUtils.isNotEmpty(pciDutyTerritoryStr)) {
|
if (StringUtils.isNotEmpty(pciDutyTerritoryStr)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user