Commit 8d51c5bc by 张祺

修正填报的数据导出功能

parent 243a7f7a
...@@ -401,7 +401,6 @@ public class DataEnterCtrl { ...@@ -401,7 +401,6 @@ public class DataEnterCtrl {
data.add(value.getIndName()); data.add(value.getIndName());
data.add(value.getIndUnit()); data.add(value.getIndUnit());
data.add(value.getObjName()); data.add(value.getObjName());
data.add(value.getIndValue());
if (StringUtils.isNotBlank(value.getIndValue())) { if (StringUtils.isNotBlank(value.getIndValue())) {
data.add(value.getIndValue()); data.add(value.getIndValue());
} else { } else {
...@@ -412,6 +411,11 @@ public class DataEnterCtrl { ...@@ -412,6 +411,11 @@ public class DataEnterCtrl {
} else { } else {
data.add(""); data.add("");
} }
if (StringUtils.isNotBlank(value.getDescription())) {
data.add(value.getDescription());
} else {
data.add("");
}
datas.add(data); datas.add(data);
} }
} else { } 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