Commit 64f5eaa3 authored by chenzhao's avatar chenzhao

修改bug

parent 66a2d3fb
......@@ -291,6 +291,13 @@ public class FormInstanceServiceImpl extends ServiceImpl<FormInstanceMapper, For
if (("使用性质").equals(k)) {
v = buildUseTypeMap.get(v);
}
/*bug 4890 详细地址多余保存了经纬度,增加此处判断对历史数据做切割展示 如有影响,可以删除*/
if (("详细地址").equals(k)) {
if ( v.toString().contains("@")){
String[] address = v.toString().split("@");
v = address[0];
}
}
linkedHashMap.put("key", k);
linkedHashMap.put("value", v);
list.add(linkedHashMap);
......
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