|
@@ -824,6 +824,27 @@ public class RuralProjectRecordsService extends CrudService<RuralProjectRecordsD
|
|
projectRecords.setProjectId(serialNumTplService.genSerialNum(createBy.getCompany(), RuralProjectRecords.SERIAL_COST_BIZCODE));
|
|
projectRecords.setProjectId(serialNumTplService.genSerialNum(createBy.getCompany(), RuralProjectRecords.SERIAL_COST_BIZCODE));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ } else{
|
|
|
|
+
|
|
|
|
+ if ("1".equals(projectRecords.getProjectType())) { //工程咨询
|
|
|
|
+ if ("6".equals(projectRecords.getAttachmentProjectSort())) {
|
|
|
|
+ //工程造价鉴定 需要纸质归档
|
|
|
|
+ projectRecords.setPaperFilingStatus(null);
|
|
|
|
+ } else if ("7".equals(projectRecords.getAttachmentProjectSort())) {
|
|
|
|
+ projectRecords.setPaperFilingStatus("10");
|
|
|
|
+ } else if ("10".equals(projectRecords.getAttachmentProjectSort())) { //工程咨询 配合类
|
|
|
|
+ projectRecords.setPaperFilingStatus("10");
|
|
|
|
+ } else {
|
|
|
|
+ projectRecords.setPaperFilingStatus("10");
|
|
|
|
+ }
|
|
|
|
+ } else if ("2".equals(projectRecords.getProjectType())) { //造价审核
|
|
|
|
+ //预算审核、结算审核、分包审核 需要纸质归档
|
|
|
|
+ if ("2".equals(projectRecords.getAttachmentProjectSort()) || "4".equals(projectRecords.getAttachmentProjectSort()) || "7".equals(projectRecords.getAttachmentProjectSort()) || "20".equals(projectRecords.getAttachmentProjectSort()) || "10".equals(projectRecords.getAttachmentProjectSort())) {
|
|
|
|
+ projectRecords.setPaperFilingStatus(null);
|
|
|
|
+ }else{
|
|
|
|
+ projectRecords.setPaperFilingStatus("10");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//判断项目类型并判断项目类别
|
|
//判断项目类型并判断项目类别
|