|
@@ -487,6 +487,12 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
taskResultState(projectRunResultRatioNumVos, size);
|
|
|
|
|
|
resultScoreList = simulationProjectTaskMapper.selectScoreCount(poParam.getId());
|
|
|
+
|
|
|
+ //未完成得分为”“的改为0
|
|
|
+ if(!isEmpty(resultScoreList) && resultScoreList.size() == 1 && isEmpty(resultScoreList.get(0).getResultName())){
|
|
|
+ ProjectRunResultRatioNumVo projectRunResultRatioNumVo = resultScoreList.get(0);
|
|
|
+ projectRunResultRatioNumVo.setResultName("0");
|
|
|
+ }
|
|
|
taskScore(resultScoreList,size);
|
|
|
|
|
|
}
|