Commit 8d51c5bc by 张祺

修正填报的数据导出功能

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