Browse Source

重大项目联审

master
PoffyZhang 1 year ago
parent
commit
6dfcceebab
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java

+ 5
- 5
pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/converter/ApplicationConverter.java View File

@@ -31,7 +31,7 @@ public class ApplicationConverter {
FileService fileService) { FileService fileService) {
return ProvincialProjectDTO.builder() return ProvincialProjectDTO.builder()
//暂时先写死 //暂时先写死
.operationManageUnit("GO_6c383c049d95461f9a0df780140ceb32")
.operationManageUnit("GO_a1479720291640b4982158fe3035a2d0")
.digitalReform(String.valueOf(projectInfo.getBizDomain())) .digitalReform(String.valueOf(projectInfo.getBizDomain()))
.regionCode(projectInfo.getAreaCode()) .regionCode(projectInfo.getAreaCode())
.regionName(projectInfo.getArea()) .regionName(projectInfo.getArea())
@@ -58,9 +58,11 @@ public class ApplicationConverter {
.contactName(projectInfo.getContactName()) .contactName(projectInfo.getContactName())
.contactPhone(projectInfo.getContactPhone()) .contactPhone(projectInfo.getContactPhone())
.buildUnit(projectInfo.getBuildOrgName()) .buildUnit(projectInfo.getBuildOrgName())
.buildUnitCode(projectInfo.getBuildOrgCode())
// .buildUnitCode(projectInfo.getBuildOrgCode())
.buildUnitCode("GO_a1479720291640b4982158fe3035a2d0")
.superUnit(projectInfo.getSuperOrg()) .superUnit(projectInfo.getSuperOrg())
.superUnitCode(projectInfo.getSuperOrgCode())
// .superUnitCode(projectInfo.getSuperOrgCode())
.superUnitCode("GO_a1479720291640b4982158fe3035a2d0")
.projectEstimateFile(convertFile(projectInfo.getCalculationTotalInvestmentFile(),fileService)) .projectEstimateFile(convertFile(projectInfo.getCalculationTotalInvestmentFile(),fileService))
.unitThreePlan(convertFile(projectInfo.getMainResponsibilitiesApplicantFile(),fileService)) .unitThreePlan(convertFile(projectInfo.getMainResponsibilitiesApplicantFile(),fileService))
.otherFile(convertFile(projectInfo.getPreliminaryPlanFile(),fileService)) .otherFile(convertFile(projectInfo.getPreliminaryPlanFile(),fileService))
@@ -70,8 +72,6 @@ public class ApplicationConverter {
.projectApplyFile(convertFile(projectInfo.getProjectApplicationForm(),fileService)) .projectApplyFile(convertFile(projectInfo.getProjectApplicationForm(),fileService))
.researchReport(convertFile(projectInfo.getPreliminaryPlanFile(),fileService)) .researchReport(convertFile(projectInfo.getPreliminaryPlanFile(),fileService))
.applicationInfo(convertApplications(applications,fileService)) .applicationInfo(convertApplications(applications,fileService))
//条线单位 先写死
.lineManageUnit("GO_3a8d76d825a849488916e618ff2f7474")
.build(); .build();
} }




Loading…
Cancel
Save