Browse Source

合同debug

master
PoffyZhang 9 months ago
parent
commit
502bc69531
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      pmapi/src/main/java/com/ningdatech/pmapi/gov/utils/ProjectConvertUtil.java

+ 3
- 4
pmapi/src/main/java/com/ningdatech/pmapi/gov/utils/ProjectConvertUtil.java View File

@@ -226,16 +226,15 @@ public class ProjectConvertUtil {
max = Math.max(app.getSecrecyGrade(),max);
}
if(max > 0){
approve.setEqualProtectionLevel(String.format(max.toString(),
StrPool.FORMAT_DATE_SINGLE_DIGITS));
approve.setEqualProtectionLevel(String.format(StrPool.FORMAT_DATE_SINGLE_DIGITS,max));
}
}
approve.setPreliminaryDesignScheme(project.getPreliminaryPlanFile());
approve.setPreliminaryDesignFile(project.getPreliminaryInspectionMaterials());
approve.setBaseReviewOpinion(project.getProposeAttach());
if(Objects.nonNull(project.getBaseReviewResults())){
approve.setBaseReviewResults(String.format(project.getBaseReviewResults().toString(),
StrPool.FORMAT_DATE_SINGLE_DIGITS));
approve.setBaseReviewResults(String.format(StrPool.FORMAT_DATE_SINGLE_DIGITS,
project.getBaseReviewResults()));
}
List<PurchaseVO> purchases = project.getPurchases();
if(CollUtil.isNotEmpty(purchases)){


Loading…
Cancel
Save