修改条款字段长度
This commit is contained in:
+14
-13
@@ -176,6 +176,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
|
||||
private final int TEXT_LENGTH = 50;
|
||||
private final int TEXT_LENGTH_2 = 200;
|
||||
private final int TEXT_DICT_LENGTH = 500;
|
||||
private final int TEXT_LENGTH_1000 = 1000;
|
||||
private final int TEXT_AREA_LENGTH = 2000;
|
||||
|
||||
@Override
|
||||
@@ -1149,37 +1150,37 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
|
||||
}
|
||||
|
||||
String technicalSpecificationDesignGuide = data.getTechnicalSpecificationDesignGuide();
|
||||
textLenghtCheck(technicalSpecificationDesignGuide, TEXT_LENGTH, errorList, "技术规范/设计指南");
|
||||
textLenghtCheck(technicalSpecificationDesignGuide, TEXT_DICT_LENGTH, errorList, "技术规范/设计指南");
|
||||
|
||||
String drawingTemplate = data.getDrawingTemplate();
|
||||
textLenghtCheck(drawingTemplate, TEXT_LENGTH, errorList, "图纸模板");
|
||||
textLenghtCheck(drawingTemplate, TEXT_DICT_LENGTH, errorList, "图纸模板");
|
||||
|
||||
String technicalAgreementTemplate = data.getTechnicalAgreementTemplate();
|
||||
textLenghtCheck(technicalAgreementTemplate, TEXT_LENGTH, errorList, "技术协议模板");
|
||||
textLenghtCheck(technicalAgreementTemplate, TEXT_AREA_LENGTH, errorList, "技术协议模板");
|
||||
|
||||
String verificationReportTemplateChecklist = data.getVerificationReportTemplateChecklist();
|
||||
textLenghtCheck(verificationReportTemplateChecklist, TEXT_LENGTH, errorList, "校验报告模块/checklist");
|
||||
textLenghtCheck(verificationReportTemplateChecklist, TEXT_AREA_LENGTH, errorList, "校验报告模块/checklist");
|
||||
|
||||
String dvpTemplate = data.getDvpTemplate();
|
||||
textLenghtCheck(dvpTemplate, TEXT_LENGTH, errorList, "DVP模板");
|
||||
textLenghtCheck(dvpTemplate, TEXT_AREA_LENGTH, errorList, "DVP模板");
|
||||
|
||||
String dfema = data.getDfema();
|
||||
textLenghtCheck(dfema, TEXT_LENGTH, errorList, "DFEMA");
|
||||
textLenghtCheck(dfema, TEXT_DICT_LENGTH, errorList, "DFEMA");
|
||||
|
||||
String keyTechnologyDecompositionTable = data.getKeyTechnologyDecompositionTable();
|
||||
textLenghtCheck(keyTechnologyDecompositionTable, TEXT_LENGTH, errorList, "关键技术分解表");
|
||||
textLenghtCheck(keyTechnologyDecompositionTable, TEXT_DICT_LENGTH, errorList, "关键技术分解表");
|
||||
|
||||
String otherDocumentsTemplates = data.getOtherDocumentsTemplates();
|
||||
textLenghtCheck(otherDocumentsTemplates, TEXT_LENGTH, errorList, "其他文件或模板");
|
||||
textLenghtCheck(otherDocumentsTemplates, TEXT_DICT_LENGTH, errorList, "其他文件或模板");
|
||||
|
||||
String p3 = data.getP3();
|
||||
textLenghtCheck(p3, TEXT_LENGTH_2, errorList, "P3证明符合性的交付物名称");
|
||||
textLenghtCheck(p3, TEXT_DICT_LENGTH, errorList, "P3证明符合性的交付物名称");
|
||||
|
||||
String p5 = data.getP5();
|
||||
textLenghtCheck(p5, TEXT_LENGTH_2, errorList, "P5证明符合性的交付物名称");
|
||||
textLenghtCheck(p5, TEXT_DICT_LENGTH, errorList, "P5证明符合性的交付物名称");
|
||||
|
||||
String remarks = data.getRemarks();
|
||||
textLenghtCheck(remarks, TEXT_AREA_LENGTH, errorList, "备注");
|
||||
textLenghtCheck(remarks, TEXT_DICT_LENGTH, errorList, "备注");
|
||||
|
||||
String investigationStage = data.getInvestigationStage();
|
||||
if (StringUtils.isNotBlank(investigationStage)){
|
||||
@@ -1444,10 +1445,10 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
|
||||
}
|
||||
|
||||
String changeDescription = data.getChangeDescription();
|
||||
textLenghtCheck(changeDescription, TEXT_LENGTH, errorList, "相对上一版变化点说明");
|
||||
textLenghtCheck(changeDescription, TEXT_AREA_LENGTH, errorList, "相对上一版变化点说明");
|
||||
|
||||
String regulatoryNotes = data.getRegulatoryNotes();
|
||||
textLenghtCheck(regulatoryNotes, TEXT_LENGTH_2, errorList, "法规注释");
|
||||
textLenghtCheck(regulatoryNotes, TEXT_LENGTH_1000, errorList, "法规注释");
|
||||
|
||||
String domainArea = data.getDomainArea();
|
||||
if (StringUtils.isNotBlank(domainArea)){
|
||||
|
||||
Reference in New Issue
Block a user