Ver código fonte

合同debug

master
PoffyZhang 9 meses atrás
pai
commit
502bc69531
1 arquivos alterados com 3 adições e 4 exclusões
  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 Ver arquivo

@@ -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)){


Carregando…
Cancelar
Salvar