Commit 02aa2aad by zhangkb

修改指标评分卡计算逻辑判断

parent a9180529
......@@ -226,7 +226,7 @@ public class IndScorecardService {
double improveScore = this.calImproveValue(acsType, unit,
importScoreDefList, currentCompareObjResult,
sameCompareObjResult,compareObjs,driveIndDef.getGrowCalType());
if(scoreCard.getLimitScore()!=0) {
if(scoreCard.getLimitScore()!=null) {
if(improveScore>scoreCard.getLimitScore()) {
improveScore = scoreCard.getLimitScore();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment