Commit 3680e51f by zhangkb

添加rank判空处理

parent 4cf24f88
...@@ -530,7 +530,7 @@ public class IndicatorsReportService { ...@@ -530,7 +530,7 @@ public class IndicatorsReportService {
indReportData.setCompareObjDesc(calData.getCompareObjDesc());//对标对象描述 indReportData.setCompareObjDesc(calData.getCompareObjDesc());//对标对象描述
indReportData.setCompareDate(calData.getDate()); indReportData.setCompareDate(calData.getDate());
indReportData.setCurrentValue(calData.getValue()); indReportData.setCurrentValue(calData.getValue());
indReportData.setCurrentRank(calData.getRank().toString()); indReportData.setCurrentRank(calData.getRank()==null ? null : calData.getRank().toString());
indReportData.setCurrentScore(calData.getScore()); indReportData.setCurrentScore(calData.getScore());
indReportData.setCurrentImprove(calData.getImproveScore()); indReportData.setCurrentImprove(calData.getImproveScore());
//查找同期结果 //查找同期结果
......
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