车型库-法规清单绑定平台件后,列表展示平台件数据
This commit is contained in:
+27
@@ -11747,6 +11747,7 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl<ProjectLawsIn
|
||||
List<ProjectLawsInventoryEO> collect = lawsInventoryEOS.stream()
|
||||
.filter(e -> value.equals(e.getDesignFlowStatus())).collect(Collectors.toList());
|
||||
if(ObjectUtils.isNotEmpty(collect)){
|
||||
//流程状态
|
||||
lawsInventoryEO.setDesignFlowStatus(value);
|
||||
break;
|
||||
}
|
||||
@@ -11755,6 +11756,7 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl<ProjectLawsIn
|
||||
List<ProjectLawsInventoryEO> collect = lawsInventoryEOS.stream()
|
||||
.filter(e -> value.equals(e.getVerifyFlowStatus())).collect(Collectors.toList());
|
||||
if(ObjectUtils.isNotEmpty(collect)){
|
||||
//流程状态
|
||||
lawsInventoryEO.setVerifyFlowStatus(value);
|
||||
break;
|
||||
}
|
||||
@@ -11838,17 +11840,42 @@ public class ProjectLawsInventoryEOServiceImpl extends ServiceImpl<ProjectLawsIn
|
||||
lawsInventoryEO.setVerifyDeliverableTemplate(lawsInventoryEOS.get(0).getVerifyDeliverableTemplate());
|
||||
lawsInventoryEO.setVerifyDeliverableTemplateName(lawsInventoryEOS.get(0).getVerifyDeliverableTemplateName());
|
||||
|
||||
//责任人
|
||||
lawsInventoryEO.setVerifyDutyId(lawsInventoryEOS.get(0).getDesignDutyId());
|
||||
lawsInventoryEO.setDesignDutyIdName(lawsInventoryEOS.get(0).getDesignDutyIdName());
|
||||
|
||||
lawsInventoryEO.setVerifyDutyId(lawsInventoryEOS.get(0).getVerifyDutyId());
|
||||
lawsInventoryEO.setVerifyDutyIdName(lawsInventoryEOS.get(0).getVerifyDutyIdName());
|
||||
|
||||
//截止时间
|
||||
lawsInventoryEO.setDesignDueDate(lawsInventoryEOS.get(0).getDesignDueDate());
|
||||
lawsInventoryEO.setVerifyDueDate(lawsInventoryEOS.get(0).getVerifyDueDate());
|
||||
|
||||
//交付物说明
|
||||
lawsInventoryEO.setDesignRemark(lawsInventoryEOS.get(0).getDesignRemark());
|
||||
lawsInventoryEO.setVerifyRemark(lawsInventoryEOS.get(0).getVerifyRemark());
|
||||
//编号 serialNumber
|
||||
lawsInventoryEO.setSerialNumber(lawsInventoryEOS.get(0).getSerialNumber());
|
||||
//标题 title
|
||||
lawsInventoryEO.setTitle(lawsInventoryEOS.get(0).getTitle());
|
||||
//子标题 subtitle
|
||||
lawsInventoryEO.setSubtitle(lawsInventoryEOS.get(0).getSubtitle());
|
||||
//使用增补件 applicableSupplement
|
||||
lawsInventoryEO.setApplicableSupplement(lawsInventoryEOS.get(0).getApplicableSupplement());
|
||||
//认证类型 attestationType
|
||||
lawsInventoryEO.setAttestationType(lawsInventoryEOS.get(0).getAttestationType());
|
||||
//认证级别 attestationRank
|
||||
lawsInventoryEO.setAttestationRank(lawsInventoryEOS.get(0).getAttestationRank());
|
||||
//责任部门 dutyDepart
|
||||
lawsInventoryEO.setDutyDepart(lawsInventoryEOS.get(0).getDutyDepart());
|
||||
//责任领域 dutyTerritory
|
||||
lawsInventoryEO.setDutyTerritory(lawsInventoryEOS.get(0).getDutyTerritory());
|
||||
//法规工程师 regulationOwnerId
|
||||
lawsInventoryEO.setRegulationOwnerId(lawsInventoryEOS.get(0).getRegulationOwnerId());
|
||||
//工程接口人 engineeringInterfacePerson
|
||||
lawsInventoryEO.setEngineeringInterfacePerson(lawsInventoryEOS.get(0).getEngineeringInterfacePerson());
|
||||
//备注 remark
|
||||
lawsInventoryEO.setRemark(lawsInventoryEOS.get(0).getRemark());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user