Parcourir la source

新运维项目备案接口部署

tags/24080901
PoffyZhang il y a 1 an
Parent
révision
2ce5e3aa7e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/projectlib/manage/ProjectLibManage.java

+ 1
- 1
pmapi/src/main/java/com/ningdatech/pmapi/projectlib/manage/ProjectLibManage.java Voir le fichier

@@ -441,7 +441,7 @@ public class ProjectLibManage {
}

private BigDecimal computeAmount(BigDecimal cuurentAmount,List<ProjectRenewalFundDeclaration> prfs) {
BigDecimal res = cuurentAmount;
BigDecimal res = Objects.isNull(cuurentAmount) ? BigDecimal.ZERO : cuurentAmount;
for(ProjectRenewalFundDeclaration prf : prfs){
res = res.add(prf.getAnnualPaymentAmount());
}


Chargement…
Annuler
Enregistrer