Commit bafa5486 by zhangkb

修改获取指标基础项返回值逻辑

parent ed320d24
......@@ -23,7 +23,7 @@ public class GetBaseIndValueActor extends AbstractActor{
if(indValueMap!=null) {
//返回指标值结果
getSender().tell(new BaseIndValueMsg(getBaseIndValueMsg.getIndId()
,indValueMap.get("value").toString(),
,indValueMap.get("value")==null? null: indValueMap.get("value").toString(),
indValueMap.get("compareObjDesc").toString(),1,""),getSelf());
}else {
//返回指标值结果
......
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