需求修改 初始化招标项目增加ipass解密默认值是 其它为否
This commit is contained in:
@ -608,6 +608,14 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
|
|||||||
//是否使用IPass制作应答文件
|
//是否使用IPass制作应答文件
|
||||||
record.setIsIPassFile(ProjectCommonUtil.IS_IPASS_YES);
|
record.setIsIPassFile(ProjectCommonUtil.IS_IPASS_YES);
|
||||||
|
|
||||||
|
//是否开标使用IPass进行解密
|
||||||
|
if(StringUtils.equals(projectEntrust.getProcurementMode(),ProjectCommonUtil.PROCUREMENT_MODE_1)
|
||||||
|
||StringUtils.equals(projectEntrust.getProcurementMode(),ProjectCommonUtil.PROCUREMENT_MODE_2)){
|
||||||
|
record.setIsIPassDecode(ProjectCommonUtil.IS_IPASS_YES);
|
||||||
|
}else{
|
||||||
|
record.setIsIPassDecode(ProjectCommonUtil.IS_IPASS_NO);
|
||||||
|
}
|
||||||
|
|
||||||
List<ProjectSection> sectionList = new ArrayList<>();
|
List<ProjectSection> sectionList = new ArrayList<>();
|
||||||
List<SectionMaterial> materialList = new ArrayList<>();
|
List<SectionMaterial> materialList = new ArrayList<>();
|
||||||
List<SectionSupplier> supplierList = new ArrayList<>();
|
List<SectionSupplier> supplierList = new ArrayList<>();
|
||||||
|
Reference in New Issue
Block a user