瀏覽代碼

合同debug

master
PoffyZhang 11 月之前
父節點
當前提交
502bc69531
共有 1 個文件被更改,包括 3 次插入4 次删除
  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 查看文件

@@ -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…
取消
儲存